| Index: src/compiler/register-allocator.h
|
| diff --git a/src/compiler/register-allocator.h b/src/compiler/register-allocator.h
|
| index 5c8468cd8fad2d6d08d5c2fb80bd989a90df89e7..cffe54778ac33ae2e337edf58bc1e135bdc3093d 100644
|
| --- a/src/compiler/register-allocator.h
|
| +++ b/src/compiler/register-allocator.h
|
| @@ -683,7 +683,8 @@ class RegisterAllocationData final : public ZoneObject {
|
| return fixed_double_live_ranges_;
|
| }
|
| ZoneVector<BitVector*>& live_in_sets() { return live_in_sets_; }
|
| - ZoneSet<SpillRange*>& spill_ranges() { return spill_ranges_; }
|
| + ZoneVector<BitVector*>& live_out_sets() { return live_out_sets_; }
|
| + ZoneVector<SpillRange*>& spill_ranges() { return spill_ranges_; }
|
| DelayedReferences& delayed_references() { return delayed_references_; }
|
| InstructionSequence* code() const { return code_; }
|
| // This zone is for datastructures only needed during register allocation
|
| @@ -741,10 +742,11 @@ class RegisterAllocationData final : public ZoneObject {
|
| const RegisterConfiguration* const config_;
|
| PhiMap phi_map_;
|
| ZoneVector<BitVector*> live_in_sets_;
|
| + ZoneVector<BitVector*> live_out_sets_;
|
| ZoneVector<TopLevelLiveRange*> live_ranges_;
|
| ZoneVector<TopLevelLiveRange*> fixed_live_ranges_;
|
| ZoneVector<TopLevelLiveRange*> fixed_double_live_ranges_;
|
| - ZoneSet<SpillRange*> spill_ranges_;
|
| + ZoneVector<SpillRange*> spill_ranges_;
|
| DelayedReferences delayed_references_;
|
| BitVector* assigned_registers_;
|
| BitVector* assigned_double_registers_;
|
|
|