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

/external/v8/src/
H A Dlithium-allocator.h66 class LifetimePosition { class in namespace:v8::internal
70 static LifetimePosition FromInstructionIndex(int index) {
71 return LifetimePosition(index * kStep);
94 LifetimePosition InstructionStart() const {
96 return LifetimePosition(value_ & ~(kStep - 1));
101 LifetimePosition InstructionEnd() const {
103 return LifetimePosition(InstructionStart().Value() + kStep/2);
107 LifetimePosition NextInstruction() const {
109 return LifetimePosition(InstructionStart().Value() + kStep);
114 LifetimePosition PrevInstructio
122 LifetimePosition() : value_(-1) {} function in class:v8::internal::LifetimePosition
142 explicit LifetimePosition(int value) : value_(value) { } function in class:v8::internal::LifetimePosition
[all...]

Completed in 73 milliseconds