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

  /external/v8/src/
lithium.h 313 class LDoubleStackSlot: public LOperand {
315 static LDoubleStackSlot* Create(int index) {
318 return new LDoubleStackSlot(index);
321 static LDoubleStackSlot* cast(LOperand* op) {
323 return reinterpret_cast<LDoubleStackSlot*>(op);
330 static LDoubleStackSlot* cache;
332 LDoubleStackSlot() : LOperand() { }
333 explicit LDoubleStackSlot(int index) : LOperand(DOUBLE_STACK_SLOT, index) { }
lithium.cc 109 DEFINE_OPERAND_CACHE(LDoubleStackSlot, DOUBLE_STACK_SLOT)
118 LDoubleStackSlot::SetUpCache();
  /external/v8/src/arm/
lithium-arm.cc 435 return LDoubleStackSlot::Create(index);
    [all...]
  /external/v8/src/mips/
lithium-mips.cc 435 return LDoubleStackSlot::Create(index);
    [all...]
  /external/v8/src/x64/
lithium-x64.cc 377 return LDoubleStackSlot::Create(index);
    [all...]
  /external/v8/src/ia32/
lithium-ia32.cc 379 return LDoubleStackSlot::Create(index);
    [all...]

Completed in 332 milliseconds