HomeSort by relevance Sort by last modified time
    Searched defs:LiveRange (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/CodeGen/
LiveInterval.h 10 // This file implements the LiveRange and LiveInterval classes. Given some
16 // individual range is represented as an instance of LiveRange, and the whole
119 /// LiveRange structure - This represents a simple register range in the
122 struct LiveRange {
127 LiveRange(SlotIndex S, SlotIndex E, VNInfo *V)
146 bool operator<(const LiveRange &LR) const {
149 bool operator==(const LiveRange &LR) const {
157 LiveRange(); // DO NOT IMPLEMENT
160 template <> struct isPodLike<LiveRange> { static const bool value = true; };
162 raw_ostream& operator<<(raw_ostream& os, const LiveRange &LR)
    [all...]
  /external/v8/src/
lithium-allocator.h 241 friend class LiveRange; // Assigns to start_.
271 friend class LiveRange;
276 class LiveRange: public ZoneObject {
280 LiveRange(int id, Zone* zone);
284 LiveRange* parent() const { return parent_; }
285 LiveRange* TopLevel() { return (parent_ == NULL) ? this : parent_; }
286 LiveRange* next() const { return next_; }
321 void SplitAt(LifetimePosition position, LiveRange* result, Zone* zone);
354 bool ShouldBeAllocatedBefore(const LiveRange* other) const;
357 LifetimePosition FirstIntersection(LiveRange* other)
    [all...]
lithium-allocator.cc 102 void LiveRange::Verify() const {
112 bool LiveRange::HasOverlap(UseInterval* target) const {
129 LiveRange::LiveRange(int id, Zone* zone)
145 void LiveRange::set_assigned_register(int reg,
155 void LiveRange::MakeSpilled(Zone* zone) {
164 bool LiveRange::HasAllocatedSpillOperand() const {
170 void LiveRange::SetSpillOperand(LOperand* operand) {
178 UsePosition* LiveRange::NextUsePosition(LifetimePosition start) {
189 UsePosition* LiveRange::NextUsePositionRegisterIsBeneficial
    [all...]

Completed in 361 milliseconds