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

  /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...]
  /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...]

Completed in 53 milliseconds