// Copyright 2014 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_REGISTER_ALLOCATOR_H_ #define V8_REGISTER_ALLOCATOR_H_ #include "src/compiler/instruction.h" #include "src/ostreams.h" #include "src/zone-containers.h" namespace v8 { namespace internal { namespace compiler { enum RegisterKind { GENERAL_REGISTERS, DOUBLE_REGISTERS }; // This class represents a single point of a InstructionOperand's lifetime. For // each instruction there are four lifetime positions: // // [[START, END], [START, END]] // // Where the first half position corresponds to // // [GapPosition::START, GapPosition::END] // // and the second half position corresponds to // // [Lifetime::USED_AT_START, Lifetime::USED_AT_END] // class LifetimePosition final { public: // Return the lifetime position that corresponds to the beginning of // the gap with the given index. static LifetimePosition GapFromInstructionIndex(int index) { return LifetimePosition(index * kStep); } // Return the lifetime position that corresponds to the beginning of // the instruction with the given index. static LifetimePosition InstructionFromInstructionIndex(int index) { return LifetimePosition(index * kStep + kHalfStep); } // Returns a numeric representation of this lifetime position. int value() const { return value_; } // Returns the index of the instruction to which this lifetime position // corresponds. int ToInstructionIndex() const { DCHECK(IsValid()); return value_ / kStep; } // Returns true if this lifetime position corresponds to a START value bool IsStart() const { return (value_ & (kHalfStep - 1)) == 0; } // Returns true if this lifetime position corresponds to a gap START value bool IsFullStart() const { return (value_ & (kStep - 1)) == 0; } bool IsGapPosition() const { return (value_ & 0x2) == 0; } bool IsInstructionPosition() const { return !IsGapPosition(); } // Returns the lifetime position for the current START. LifetimePosition Start() const { DCHECK(IsValid()); return LifetimePosition(value_ & ~(kHalfStep - 1)); } // Returns the lifetime position for the current gap START. LifetimePosition FullStart() const { DCHECK(IsValid()); return LifetimePosition(value_ & ~(kStep - 1)); } // Returns the lifetime position for the current END. LifetimePosition End() const { DCHECK(IsValid()); return LifetimePosition(Start().value_ + kHalfStep / 2); } // Returns the lifetime position for the beginning of the next START. LifetimePosition NextStart() const { DCHECK(IsValid()); return LifetimePosition(Start().value_ + kHalfStep); } // Returns the lifetime position for the beginning of the next gap START. LifetimePosition NextFullStart() const { DCHECK(IsValid()); return LifetimePosition(FullStart().value_ + kStep); } // Returns the lifetime position for the beginning of the previous START. LifetimePosition PrevStart() const { DCHECK(IsValid()); DCHECK(value_ >= kHalfStep); return LifetimePosition(Start().value_ - kHalfStep); } // Constructs the lifetime position which does not correspond to any // instruction. LifetimePosition() : value_(-1) {} // Returns true if this lifetime positions corrensponds to some // instruction. bool IsValid() const { return value_ != -1; } bool operator<(const LifetimePosition& that) const { return this->value_ < that.value_; } bool operator<=(const LifetimePosition& that) const { return this->value_ <= that.value_; } bool operator==(const LifetimePosition& that) const { return this->value_ == that.value_; } bool operator!=(const LifetimePosition& that) const { return this->value_ != that.value_; } bool operator>(const LifetimePosition& that) const { return this->value_ > that.value_; } bool operator>=(const LifetimePosition& that) const { return this->value_ >= that.value_; } static inline LifetimePosition Invalid() { return LifetimePosition(); } static inline LifetimePosition MaxPosition() { // We have to use this kind of getter instead of static member due to // crash bug in GDB. return LifetimePosition(kMaxInt); } private: static const int kHalfStep = 2; static const int kStep = 2 * kHalfStep; // Code relies on kStep and kHalfStep being a power of two. STATIC_ASSERT(IS_POWER_OF_TWO(kHalfStep)); explicit LifetimePosition(int value) : value_(value) {} int value_; }; std::ostream& operator<<(std::ostream& os, const LifetimePosition pos); // Representation of the non-empty interval [start,end[. class UseInterval final : public ZoneObject { public: UseInterval(LifetimePosition start, LifetimePosition end) : start_(start), end_(end), next_(nullptr) { DCHECK(start < end); } LifetimePosition start() const { return start_; } void set_start(LifetimePosition start) { start_ = start; } LifetimePosition end() const { return end_; } void set_end(LifetimePosition end) { end_ = end; } UseInterval* next() const { return next_; } void set_next(UseInterval* next) { next_ = next; } // Split this interval at the given position without effecting the // live range that owns it. The interval must contain the position. UseInterval* SplitAt(LifetimePosition pos, Zone* zone); // If this interval intersects with other return smallest position // that belongs to both of them. LifetimePosition Intersect(const UseInterval* other) const { if (other->start() < start_) return other->Intersect(this); if (other->start() < end_) return other->start(); return LifetimePosition::Invalid(); } bool Contains(LifetimePosition point) const { return start_ <= point && point < end_; } private: LifetimePosition start_; LifetimePosition end_; UseInterval* next_; DISALLOW_COPY_AND_ASSIGN(UseInterval); }; enum class UsePositionType : uint8_t { kAny, kRequiresRegister, kRequiresSlot }; enum class UsePositionHintType : uint8_t { kNone, kOperand, kUsePos, kPhi, kUnresolved }; static const int32_t kUnassignedRegister = RegisterConfiguration::kMaxGeneralRegisters; static_assert(kUnassignedRegister <= RegisterConfiguration::kMaxDoubleRegisters, "kUnassignedRegister too small"); // Representation of a use position. class UsePosition final : public ZoneObject { public: UsePosition(LifetimePosition pos, InstructionOperand* operand, void* hint, UsePositionHintType hint_type); InstructionOperand* operand() const { return operand_; } bool HasOperand() const { return operand_ != nullptr; } bool RegisterIsBeneficial() const { return RegisterBeneficialField::decode(flags_); } UsePositionType type() const { return TypeField::decode(flags_); } void set_type(UsePositionType type, bool register_beneficial); LifetimePosition pos() const { return pos_; } UsePosition* next() const { return next_; } void set_next(UsePosition* next) { next_ = next; } // For hinting only. void set_assigned_register(int register_index) { flags_ = AssignedRegisterField::update(flags_, register_index); } UsePositionHintType hint_type() const { return HintTypeField::decode(flags_); } bool HasHint() const; bool HintRegister(int* register_index) const; void ResolveHint(UsePosition* use_pos); bool IsResolved() const { return hint_type() != UsePositionHintType::kUnresolved; } static UsePositionHintType HintTypeForOperand(const InstructionOperand& op); private: typedef BitField TypeField; typedef BitField HintTypeField; typedef BitField RegisterBeneficialField; typedef BitField AssignedRegisterField; InstructionOperand* const operand_; void* hint_; UsePosition* next_; LifetimePosition const pos_; uint32_t flags_; DISALLOW_COPY_AND_ASSIGN(UsePosition); }; class SpillRange; // Representation of SSA values' live ranges as a collection of (continuous) // intervals over the instruction ordering. class LiveRange final : public ZoneObject { public: explicit LiveRange(int id, MachineType machine_type); UseInterval* first_interval() const { return first_interval_; } UsePosition* first_pos() const { return first_pos_; } LiveRange* parent() const { return parent_; } LiveRange* TopLevel() { return (parent_ == nullptr) ? this : parent_; } const LiveRange* TopLevel() const { return (parent_ == nullptr) ? this : parent_; } LiveRange* next() const { return next_; } bool IsChild() const { return parent() != nullptr; } int id() const { return id_; } bool IsFixed() const { return id_ < 0; } bool IsEmpty() const { return first_interval() == nullptr; } InstructionOperand GetAssignedOperand() const; int spill_start_index() const { return spill_start_index_; } MachineType machine_type() const { return MachineTypeField::decode(bits_); } int assigned_register() const { return AssignedRegisterField::decode(bits_); } bool HasRegisterAssigned() const { return assigned_register() != kUnassignedRegister; } void set_assigned_register(int reg); void UnsetAssignedRegister(); bool spilled() const { return SpilledField::decode(bits_); } void Spill(); RegisterKind kind() const; // Correct only for parent. bool is_phi() const { return IsPhiField::decode(bits_); } void set_is_phi(bool value) { bits_ = IsPhiField::update(bits_, value); } // Correct only for parent. bool is_non_loop_phi() const { return IsNonLoopPhiField::decode(bits_); } void set_is_non_loop_phi(bool value) { bits_ = IsNonLoopPhiField::update(bits_, value); } // Relevant only for parent. bool has_slot_use() const { return HasSlotUseField::decode(bits_); } void set_has_slot_use(bool value) { bits_ = HasSlotUseField::update(bits_, value); } // Returns use position in this live range that follows both start // and last processed use position. UsePosition* NextUsePosition(LifetimePosition start) const; // Returns use position for which register is required in this live // range and which follows both start and last processed use position UsePosition* NextRegisterPosition(LifetimePosition start) const; // Returns use position for which register is beneficial in this live // range and which follows both start and last processed use position UsePosition* NextUsePositionRegisterIsBeneficial( LifetimePosition start) const; // Returns use position for which register is beneficial in this live // range and which precedes start. UsePosition* PreviousUsePositionRegisterIsBeneficial( LifetimePosition start) const; // Can this live range be spilled at this position. bool CanBeSpilled(LifetimePosition pos) const; // Split this live range at the given position which must follow the start of // the range. // All uses following the given position will be moved from this // live range to the result live range. void SplitAt(LifetimePosition position, LiveRange* result, Zone* zone); // Returns nullptr when no register is hinted, otherwise sets register_index. UsePosition* FirstHintPosition(int* register_index) const; UsePosition* FirstHintPosition() const { int register_index; return FirstHintPosition(®ister_index); } UsePosition* current_hint_position() const { DCHECK(current_hint_position_ == FirstHintPosition()); return current_hint_position_; } LifetimePosition Start() const { DCHECK(!IsEmpty()); return first_interval()->start(); } LifetimePosition End() const { DCHECK(!IsEmpty()); return last_interval_->end(); } enum class SpillType { kNoSpillType, kSpillOperand, kSpillRange }; SpillType spill_type() const { return SpillTypeField::decode(bits_); } InstructionOperand* GetSpillOperand() const { DCHECK(spill_type() == SpillType::kSpillOperand); return spill_operand_; } SpillRange* GetSpillRange() const { DCHECK(spill_type() == SpillType::kSpillRange); return spill_range_; } bool HasNoSpillType() const { return spill_type() == SpillType::kNoSpillType; } bool HasSpillOperand() const { return spill_type() == SpillType::kSpillOperand; } bool HasSpillRange() const { return spill_type() == SpillType::kSpillRange; } AllocatedOperand GetSpillRangeOperand() const; void SpillAtDefinition(Zone* zone, int gap_index, InstructionOperand* operand); void SetSpillOperand(InstructionOperand* operand); void SetSpillRange(SpillRange* spill_range); void CommitSpillsAtDefinition(InstructionSequence* sequence, const InstructionOperand& operand, bool might_be_duplicated); void SetSpillStartIndex(int start) { spill_start_index_ = Min(start, spill_start_index_); } bool ShouldBeAllocatedBefore(const LiveRange* other) const; bool CanCover(LifetimePosition position) const; bool Covers(LifetimePosition position) const; LifetimePosition FirstIntersection(LiveRange* other) const; // Add a new interval or a new use position to this live range. void EnsureInterval(LifetimePosition start, LifetimePosition end, Zone* zone); void AddUseInterval(LifetimePosition start, LifetimePosition end, Zone* zone); void AddUsePosition(UsePosition* pos); // Shorten the most recently added interval by setting a new start. void ShortenTo(LifetimePosition start); void Verify() const; void ConvertUsesToOperand(const InstructionOperand& op, const InstructionOperand& spill_op); void SetUseHints(int register_index); void UnsetUseHints() { SetUseHints(kUnassignedRegister); } struct SpillAtDefinitionList; SpillAtDefinitionList* spills_at_definition() const { return spills_at_definition_; } private: void set_spill_type(SpillType value) { bits_ = SpillTypeField::update(bits_, value); } void set_spilled(bool value) { bits_ = SpilledField::update(bits_, value); } UseInterval* FirstSearchIntervalForPosition(LifetimePosition position) const; void AdvanceLastProcessedMarker(UseInterval* to_start_of, LifetimePosition but_not_past) const; typedef BitField SpilledField; typedef BitField HasSlotUseField; typedef BitField IsPhiField; typedef BitField IsNonLoopPhiField; typedef BitField SpillTypeField; typedef BitField AssignedRegisterField; typedef BitField MachineTypeField; int id_; int spill_start_index_; uint32_t bits_; UseInterval* last_interval_; UseInterval* first_interval_; UsePosition* first_pos_; LiveRange* parent_; LiveRange* next_; union { // Correct value determined by spill_type() InstructionOperand* spill_operand_; SpillRange* spill_range_; }; SpillAtDefinitionList* spills_at_definition_; // This is used as a cache, it doesn't affect correctness. mutable UseInterval* current_interval_; // This is used as a cache, it doesn't affect correctness. mutable UsePosition* last_processed_use_; // This is used as a cache, it's invalid outside of BuildLiveRanges. mutable UsePosition* current_hint_position_; DISALLOW_COPY_AND_ASSIGN(LiveRange); }; struct PrintableLiveRange { const RegisterConfiguration* register_configuration_; const LiveRange* range_; }; std::ostream& operator<<(std::ostream& os, const PrintableLiveRange& printable_range); class SpillRange final : public ZoneObject { public: static const int kUnassignedSlot = -1; SpillRange(LiveRange* range, Zone* zone); UseInterval* interval() const { return use_interval_; } // Currently, only 4 or 8 byte slots are supported. int ByteWidth() const; bool IsEmpty() const { return live_ranges_.empty(); } bool TryMerge(SpillRange* other); void set_assigned_slot(int index) { DCHECK_EQ(kUnassignedSlot, assigned_slot_); assigned_slot_ = index; } int assigned_slot() { DCHECK_NE(kUnassignedSlot, assigned_slot_); return assigned_slot_; } private: LifetimePosition End() const { return end_position_; } ZoneVector& live_ranges() { return live_ranges_; } bool IsIntersectingWith(SpillRange* other) const; // Merge intervals, making sure the use intervals are sorted void MergeDisjointIntervals(UseInterval* other); ZoneVector live_ranges_; UseInterval* use_interval_; LifetimePosition end_position_; int assigned_slot_; DISALLOW_COPY_AND_ASSIGN(SpillRange); }; class RegisterAllocationData final : public ZoneObject { public: class PhiMapValue : public ZoneObject { public: PhiMapValue(PhiInstruction* phi, const InstructionBlock* block, Zone* zone); const PhiInstruction* phi() const { return phi_; } const InstructionBlock* block() const { return block_; } // For hinting. int assigned_register() const { return assigned_register_; } void set_assigned_register(int register_index) { DCHECK_EQ(assigned_register_, kUnassignedRegister); assigned_register_ = register_index; } void UnsetAssignedRegister() { assigned_register_ = kUnassignedRegister; } void AddOperand(InstructionOperand* operand); void CommitAssignment(const InstructionOperand& operand); private: PhiInstruction* const phi_; const InstructionBlock* const block_; ZoneVector incoming_operands_; int assigned_register_; }; typedef ZoneMap PhiMap; struct DelayedReference { ReferenceMap* map; InstructionOperand* operand; }; typedef ZoneVector DelayedReferences; RegisterAllocationData(const RegisterConfiguration* config, Zone* allocation_zone, Frame* frame, InstructionSequence* code, const char* debug_name = nullptr); const ZoneVector& live_ranges() const { return live_ranges_; } ZoneVector& live_ranges() { return live_ranges_; } const ZoneVector& fixed_live_ranges() const { return fixed_live_ranges_; } ZoneVector& fixed_live_ranges() { return fixed_live_ranges_; } ZoneVector& fixed_double_live_ranges() { return fixed_double_live_ranges_; } const ZoneVector& fixed_double_live_ranges() const { return fixed_double_live_ranges_; } ZoneVector& live_in_sets() { return live_in_sets_; } ZoneVector& 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 // phases. Zone* allocation_zone() const { return allocation_zone_; } // This zone is for InstructionOperands and moves that live beyond register // allocation. Zone* code_zone() const { return code()->zone(); } Frame* frame() const { return frame_; } const char* debug_name() const { return debug_name_; } const RegisterConfiguration* config() const { return config_; } MachineType MachineTypeFor(int virtual_register); LiveRange* LiveRangeFor(int index); // Creates a new live range. LiveRange* NewLiveRange(int index, MachineType machine_type); LiveRange* NewChildRangeFor(LiveRange* range); SpillRange* AssignSpillRangeToLiveRange(LiveRange* range); MoveOperands* AddGapMove(int index, Instruction::GapPosition position, const InstructionOperand& from, const InstructionOperand& to); bool IsReference(int virtual_register) const { return code()->IsReference(virtual_register); } bool ExistsUseWithoutDefinition(); void MarkAllocated(RegisterKind kind, int index); PhiMapValue* InitializePhiMap(const InstructionBlock* block, PhiInstruction* phi); PhiMapValue* GetPhiMapValueFor(int virtual_register); private: Zone* const allocation_zone_; Frame* const frame_; InstructionSequence* const code_; const char* const debug_name_; const RegisterConfiguration* const config_; PhiMap phi_map_; ZoneVector live_in_sets_; ZoneVector live_ranges_; ZoneVector fixed_live_ranges_; ZoneVector fixed_double_live_ranges_; ZoneVector spill_ranges_; DelayedReferences delayed_references_; BitVector* assigned_registers_; BitVector* assigned_double_registers_; int virtual_register_count_; DISALLOW_COPY_AND_ASSIGN(RegisterAllocationData); }; class ConstraintBuilder final : public ZoneObject { public: explicit ConstraintBuilder(RegisterAllocationData* data); // Phase 1 : insert moves to account for fixed register operands. void MeetRegisterConstraints(); // Phase 2: deconstruct SSA by inserting moves in successors and the headers // of blocks containing phis. void ResolvePhis(); private: RegisterAllocationData* data() const { return data_; } InstructionSequence* code() const { return data()->code(); } Zone* allocation_zone() const { return data()->allocation_zone(); } Instruction* InstructionAt(int index) { return code()->InstructionAt(index); } bool IsReference(int virtual_register) const { return data()->IsReference(virtual_register); } LiveRange* LiveRangeFor(int index) { return data()->LiveRangeFor(index); } InstructionOperand* AllocateFixed(UnallocatedOperand* operand, int pos, bool is_tagged); void MeetRegisterConstraints(const InstructionBlock* block); void MeetConstraintsBefore(int index); void MeetConstraintsAfter(int index); void MeetRegisterConstraintsForLastInstructionInBlock( const InstructionBlock* block); void ResolvePhis(const InstructionBlock* block); RegisterAllocationData* const data_; DISALLOW_COPY_AND_ASSIGN(ConstraintBuilder); }; class LiveRangeBuilder final : public ZoneObject { public: explicit LiveRangeBuilder(RegisterAllocationData* data, Zone* local_zone); // Phase 3: compute liveness of all virtual register. void BuildLiveRanges(); private: RegisterAllocationData* data() const { return data_; } InstructionSequence* code() const { return data()->code(); } Zone* allocation_zone() const { return data()->allocation_zone(); } Zone* code_zone() const { return code()->zone(); } const RegisterConfiguration* config() const { return data()->config(); } ZoneVector& live_in_sets() const { return data()->live_in_sets(); } LiveRange* LiveRangeFor(int index) { return data()->LiveRangeFor(index); } void Verify() const; // Liveness analysis support. BitVector* ComputeLiveOut(const InstructionBlock* block); void AddInitialIntervals(const InstructionBlock* block, BitVector* live_out); void ProcessInstructions(const InstructionBlock* block, BitVector* live); void ProcessPhis(const InstructionBlock* block, BitVector* live); void ProcessLoopHeader(const InstructionBlock* block, BitVector* live); static int FixedLiveRangeID(int index) { return -index - 1; } int FixedDoubleLiveRangeID(int index); LiveRange* FixedLiveRangeFor(int index); LiveRange* FixedDoubleLiveRangeFor(int index); void MapPhiHint(InstructionOperand* operand, UsePosition* use_pos); void ResolvePhiHint(InstructionOperand* operand, UsePosition* use_pos); UsePosition* NewUsePosition(LifetimePosition pos, InstructionOperand* operand, void* hint, UsePositionHintType hint_type); UsePosition* NewUsePosition(LifetimePosition pos) { return NewUsePosition(pos, nullptr, nullptr, UsePositionHintType::kNone); } LiveRange* LiveRangeFor(InstructionOperand* operand); // Helper methods for building intervals. UsePosition* Define(LifetimePosition position, InstructionOperand* operand, void* hint, UsePositionHintType hint_type); void Define(LifetimePosition position, InstructionOperand* operand) { Define(position, operand, nullptr, UsePositionHintType::kNone); } UsePosition* Use(LifetimePosition block_start, LifetimePosition position, InstructionOperand* operand, void* hint, UsePositionHintType hint_type); void Use(LifetimePosition block_start, LifetimePosition position, InstructionOperand* operand) { Use(block_start, position, operand, nullptr, UsePositionHintType::kNone); } RegisterAllocationData* const data_; ZoneMap phi_hints_; DISALLOW_COPY_AND_ASSIGN(LiveRangeBuilder); }; class RegisterAllocator : public ZoneObject { public: explicit RegisterAllocator(RegisterAllocationData* data, RegisterKind kind); protected: RegisterAllocationData* data() const { return data_; } InstructionSequence* code() const { return data()->code(); } RegisterKind mode() const { return mode_; } int num_registers() const { return num_registers_; } Zone* allocation_zone() const { return data()->allocation_zone(); } LiveRange* LiveRangeFor(int index) { return data()->LiveRangeFor(index); } // Split the given range at the given position. // If range starts at or after the given position then the // original range is returned. // Otherwise returns the live range that starts at pos and contains // all uses from the original range that follow pos. Uses at pos will // still be owned by the original range after splitting. LiveRange* SplitRangeAt(LiveRange* range, LifetimePosition pos); // Split the given range in a position from the interval [start, end]. LiveRange* SplitBetween(LiveRange* range, LifetimePosition start, LifetimePosition end); // Find a lifetime position in the interval [start, end] which // is optimal for splitting: it is either header of the outermost // loop covered by this interval or the latest possible position. LifetimePosition FindOptimalSplitPos(LifetimePosition start, LifetimePosition end); void Spill(LiveRange* range); // If we are trying to spill a range inside the loop try to // hoist spill position out to the point just before the loop. LifetimePosition FindOptimalSpillingPos(LiveRange* range, LifetimePosition pos); private: RegisterAllocationData* const data_; const RegisterKind mode_; const int num_registers_; DISALLOW_COPY_AND_ASSIGN(RegisterAllocator); }; class LinearScanAllocator final : public RegisterAllocator { public: LinearScanAllocator(RegisterAllocationData* data, RegisterKind kind, Zone* local_zone); // Phase 4: compute register assignments. void AllocateRegisters(); private: const char* RegisterName(int allocation_index) const; ZoneVector& unhandled_live_ranges() { return unhandled_live_ranges_; } ZoneVector& active_live_ranges() { return active_live_ranges_; } ZoneVector& inactive_live_ranges() { return inactive_live_ranges_; } void SetLiveRangeAssignedRegister(LiveRange* range, int reg); // Helper methods for updating the life range lists. void AddToActive(LiveRange* range); void AddToInactive(LiveRange* range); void AddToUnhandledSorted(LiveRange* range); void AddToUnhandledUnsorted(LiveRange* range); void SortUnhandled(); bool UnhandledIsSorted(); void ActiveToHandled(LiveRange* range); void ActiveToInactive(LiveRange* range); void InactiveToHandled(LiveRange* range); void InactiveToActive(LiveRange* range); // Helper methods for allocating registers. bool TryReuseSpillForPhi(LiveRange* range); bool TryAllocateFreeReg(LiveRange* range); void AllocateBlockedReg(LiveRange* range); // Spill the given life range after position pos. void SpillAfter(LiveRange* range, LifetimePosition pos); // Spill the given life range after position [start] and up to position [end]. void SpillBetween(LiveRange* range, LifetimePosition start, LifetimePosition end); // Spill the given life range after position [start] and up to position [end]. // Range is guaranteed to be spilled at least until position [until]. void SpillBetweenUntil(LiveRange* range, LifetimePosition start, LifetimePosition until, LifetimePosition end); void SplitAndSpillIntersecting(LiveRange* range); ZoneVector unhandled_live_ranges_; ZoneVector active_live_ranges_; ZoneVector inactive_live_ranges_; #ifdef DEBUG LifetimePosition allocation_finger_; #endif DISALLOW_COPY_AND_ASSIGN(LinearScanAllocator); }; class CoalescedLiveRanges; // A variant of the LLVM Greedy Register Allocator. See // http://blog.llvm.org/2011/09/greedy-register-allocation-in-llvm-30.html class GreedyAllocator final : public RegisterAllocator { public: explicit GreedyAllocator(RegisterAllocationData* data, RegisterKind kind, Zone* local_zone); void AllocateRegisters(); private: LifetimePosition GetSplittablePos(LifetimePosition pos); const RegisterConfiguration* config() const { return data()->config(); } Zone* local_zone() const { return local_zone_; } bool TryReuseSpillForPhi(LiveRange* range); int GetHintedRegister(LiveRange* range); typedef ZonePriorityQueue> PQueue; unsigned GetLiveRangeSize(LiveRange* range); void Enqueue(LiveRange* range); void Evict(LiveRange* range); float CalculateSpillWeight(LiveRange* range); float CalculateMaxSpillWeight(const ZoneSet& ranges); bool TryAllocate(LiveRange* current, ZoneSet* conflicting); bool TryAllocatePhysicalRegister(unsigned reg_id, LiveRange* range, ZoneSet* conflicting); bool HandleSpillOperands(LiveRange* range); void AllocateBlockedRange(LiveRange* current, LifetimePosition pos, bool spill); LiveRange* SpillBetweenUntil(LiveRange* range, LifetimePosition start, LifetimePosition until, LifetimePosition end); void AssignRangeToRegister(int reg_id, LiveRange* range); LifetimePosition FindProgressingSplitPosition(LiveRange* range, bool* is_spill_pos); Zone* local_zone_; ZoneVector allocations_; PQueue queue_; DISALLOW_COPY_AND_ASSIGN(GreedyAllocator); }; class SpillSlotLocator final : public ZoneObject { public: explicit SpillSlotLocator(RegisterAllocationData* data); void LocateSpillSlots(); private: RegisterAllocationData* data() const { return data_; } RegisterAllocationData* const data_; DISALLOW_COPY_AND_ASSIGN(SpillSlotLocator); }; class OperandAssigner final : public ZoneObject { public: explicit OperandAssigner(RegisterAllocationData* data); // Phase 5: assign spill splots. void AssignSpillSlots(); // Phase 6: commit assignment. void CommitAssignment(); private: RegisterAllocationData* data() const { return data_; } RegisterAllocationData* const data_; DISALLOW_COPY_AND_ASSIGN(OperandAssigner); }; class ReferenceMapPopulator final : public ZoneObject { public: explicit ReferenceMapPopulator(RegisterAllocationData* data); // Phase 7: compute values for pointer maps. void PopulateReferenceMaps(); private: RegisterAllocationData* data() const { return data_; } bool SafePointsAreInOrder() const; RegisterAllocationData* const data_; DISALLOW_COPY_AND_ASSIGN(ReferenceMapPopulator); }; class LiveRangeConnector final : public ZoneObject { public: explicit LiveRangeConnector(RegisterAllocationData* data); // Phase 8: reconnect split ranges with moves. void ConnectRanges(Zone* local_zone); // Phase 9: insert moves to connect ranges across basic blocks. void ResolveControlFlow(Zone* local_zone); private: RegisterAllocationData* data() const { return data_; } InstructionSequence* code() const { return data()->code(); } Zone* code_zone() const { return code()->zone(); } bool CanEagerlyResolveControlFlow(const InstructionBlock* block) const; void ResolveControlFlow(const InstructionBlock* block, const InstructionOperand& cur_op, const InstructionBlock* pred, const InstructionOperand& pred_op); RegisterAllocationData* const data_; DISALLOW_COPY_AND_ASSIGN(LiveRangeConnector); }; } // namespace compiler } // namespace internal } // namespace v8 #endif // V8_REGISTER_ALLOCATOR_H_