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

  /art/compiler/optimizing/
ssa_liveness_analysis.h 90 class UsePosition : public ArenaObject {
92 UsePosition(HInstruction* user,
96 UsePosition* next)
108 UsePosition* GetNext() const { return next_; }
125 UsePosition* const next_;
127 DISALLOW_COPY_AND_ASSIGN(UsePosition);
179 first_use_ = new (allocator_) UsePosition(
185 first_use_ = new (allocator_) UsePosition(
306 UsePosition* use = first_use_;
325 UsePosition* GetFirstUse() const
    [all...]
  /external/chromium_org/v8/src/
lithium-allocator.h 219 class UsePosition: public ZoneObject {
221 UsePosition(LifetimePosition pos, LOperand* operand, LOperand* hint);
232 UsePosition* next() const { return next_; }
235 void set_next(UsePosition* next) { next_ = next; }
240 UsePosition* next_;
256 UsePosition* first_pos() const { return first_pos_; }
273 UsePosition* NextUsePosition(LifetimePosition start);
278 UsePosition* NextRegisterPosition(LifetimePosition start);
283 UsePosition* NextUsePositionRegisterIsBeneficial(LifetimePosition start);
287 UsePosition* PreviousUsePositionRegisterIsBeneficial(LifetimePosition start)
    [all...]
lithium-allocator.cc 40 UsePosition::UsePosition(LifetimePosition pos,
59 bool UsePosition::HasHint() const {
64 bool UsePosition::RequiresRegister() const {
69 bool UsePosition::RegisterIsBeneficial() const {
87 UsePosition* cur = first_pos_;
160 UsePosition* LiveRange::NextUsePosition(LifetimePosition start) {
161 UsePosition* use_pos = last_processed_use_;
171 UsePosition* LiveRange::NextUsePositionRegisterIsBeneficial(
173 UsePosition* pos = NextUsePosition(start)
    [all...]

Completed in 79 milliseconds