HomeSort by relevance Sort by last modified time
    Searched refs:LifetimePosition (Results 1 - 5 of 5) sorted by null

  /external/v8/src/compiler/
register-allocator.h 38 class LifetimePosition {
42 static LifetimePosition FromInstructionIndex(int index) {
43 return LifetimePosition(index * kStep);
62 LifetimePosition InstructionStart() const {
64 return LifetimePosition(value_ & ~(kStep - 1));
69 LifetimePosition InstructionEnd() const {
71 return LifetimePosition(InstructionStart().Value() + kStep / 2);
75 LifetimePosition NextInstruction() const {
77 return LifetimePosition(InstructionStart().Value() + kStep);
82 LifetimePosition PrevInstruction() const
    [all...]
register-allocator.cc 15 static inline LifetimePosition Min(LifetimePosition a, LifetimePosition b) {
20 static inline LifetimePosition Max(LifetimePosition a, LifetimePosition b) {
25 UsePosition::UsePosition(LifetimePosition pos, InstructionOperand* operand,
53 void UseInterval::SplitAt(LifetimePosition pos, Zone* zone) {
141 UsePosition* LiveRange::NextUsePosition(LifetimePosition start) {
153 LifetimePosition start)
    [all...]
  /external/v8/src/
lithium-allocator.h 38 class LifetimePosition {
42 static LifetimePosition FromInstructionIndex(int index) {
43 return LifetimePosition(index * kStep);
66 LifetimePosition InstructionStart() const {
68 return LifetimePosition(value_ & ~(kStep - 1));
73 LifetimePosition InstructionEnd() const {
75 return LifetimePosition(InstructionStart().Value() + kStep/2);
79 LifetimePosition NextInstruction() const {
81 return LifetimePosition(InstructionStart().Value() + kStep);
86 LifetimePosition PrevInstruction() const
    [all...]
lithium-allocator.cc 15 static inline LifetimePosition Min(LifetimePosition a, LifetimePosition b) {
20 static inline LifetimePosition Max(LifetimePosition a, LifetimePosition b) {
25 UsePosition::UsePosition(LifetimePosition pos,
59 void UseInterval::SplitAt(LifetimePosition pos, Zone* zone) {
145 UsePosition* LiveRange::NextUsePosition(LifetimePosition start) {
157 LifetimePosition start)
    [all...]
hydrogen.cc     [all...]

Completed in 674 milliseconds