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

  /external/v8/src/crankshaft/
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...]
  /external/v8/src/compiler/
register-allocator.h 34 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_ & ~(kHalfStep - 1))
    [all...]

Completed in 53 milliseconds