Searched defs:LifetimePosition (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/crankshaft/
H A Dlithium-allocator.h38 class LifetimePosition { class in namespace:v8::internal
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 PrevInstructio
94 LifetimePosition() : value_(-1) {} function in class:v8::internal::LifetimePosition
114 explicit LifetimePosition(int value) : value_(value) { } function in class:v8::internal::LifetimePosition
[all...]
/external/v8/src/compiler/
H A Dregister-allocator.h34 class LifetimePosition final {
38 static LifetimePosition GapFromInstructionIndex(int index) {
39 return LifetimePosition(index * kStep);
43 static LifetimePosition InstructionFromInstructionIndex(int index) {
44 return LifetimePosition(index * kStep + kHalfStep);
47 static bool ExistsGapPositionBetween(LifetimePosition pos1,
48 LifetimePosition pos2) {
50 LifetimePosition next(pos1.value_ + 1);
76 LifetimePosition Start() const {
78 return LifetimePosition(value
114 LifetimePosition() : value_(-1) {} function in class:v8::internal::compiler::final
165 explicit LifetimePosition(int value) : value_(value) {} function in class:v8::internal::compiler::final
[all...]

Completed in 124 milliseconds