From 8f7a2c421dd417659f9a0283dad1a3aef9880d0d Mon Sep 17 00:00:00 2001 From: Aditya Mandaleeka Date: Sun, 8 Oct 2017 16:20:13 -0700 Subject: [PATCH] Parent class of Interval and RegRecord is Referenceable. --- Documentation/botr/ryujit-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/botr/ryujit-overview.md b/Documentation/botr/ryujit-overview.md index 6432d1c..94eeb06 100644 --- a/Documentation/botr/ryujit-overview.md +++ b/Documentation/botr/ryujit-overview.md @@ -381,7 +381,7 @@ The “@ 15” is the location number of the node. The “0=1” indicates that The RyuJIT register allocator uses a Linear Scan algorithm, with an approach similar to [[2]](#[2]). In brief, it operates on two main data structures: -* `Intervals` (representing live ranges of variables or tree expressions) and `RegRecords` (representing physical registers), both of which derive from `Referent`. +* `Intervals` (representing live ranges of variables or tree expressions) and `RegRecords` (representing physical registers), both of which derive from `Referenceable`. * `RefPositions`, which represent uses or defs (or variants thereof, such as ExposedUses) of either `Intervals` or physical registers. Pre-conditions: -- 2.7.4