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

  /external/v8/src/
lithium.h 291 class LStackSlot: public LOperand {
293 static LStackSlot* Create(int index) {
296 return new LStackSlot(index);
299 static LStackSlot* cast(LOperand* op) {
301 return reinterpret_cast<LStackSlot*>(op);
308 static LStackSlot cache[];
310 LStackSlot() : LOperand() { }
311 explicit LStackSlot(int index) : LOperand(STACK_SLOT, index) { }
lithium-allocator.h 58 class LStackSlot;
lithium-allocator.cc 64 DEFINE_OPERAND_CACHE(LStackSlot, STACK_SLOT)
    [all...]
  /external/v8/src/arm/
lithium-arm.cc 409 return LStackSlot::Create(index);
    [all...]
  /external/v8/src/ia32/
lithium-ia32.cc 365 return LStackSlot::Create(index);
    [all...]
  /external/v8/src/x64/
lithium-x64.cc 366 return LStackSlot::Create(index);
    [all...]

Completed in 59 milliseconds