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

  /external/v8/src/
lithium.h 289 class LStackSlot: public LOperand {
291 static LStackSlot* Create(int index) {
294 return new LStackSlot(index);
297 static LStackSlot* cast(LOperand* op) {
299 return reinterpret_cast<LStackSlot*>(op);
306 static LStackSlot* cache;
308 LStackSlot() : LOperand() { }
309 explicit LStackSlot(int index) : LOperand(STACK_SLOT, index) { }
lithium.cc 108 DEFINE_OPERAND_CACHE(LStackSlot, STACK_SLOT)
117 LStackSlot::SetUpCache();
lithium-allocator.h 58 class LStackSlot;
  /external/v8/src/arm/
lithium-arm.cc 437 return LStackSlot::Create(index);
    [all...]
  /external/v8/src/mips/
lithium-mips.cc 437 return LStackSlot::Create(index);
    [all...]
  /external/v8/src/x64/
lithium-x64.cc 379 return LStackSlot::Create(index);
    [all...]
  /external/v8/src/ia32/
lithium-ia32.cc 381 return LStackSlot::Create(index);
    [all...]

Completed in 185 milliseconds