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

  /external/v8/src/
lithium.h 315 class LDoubleStackSlot: public LOperand {
317 static LDoubleStackSlot* Create(int index) {
320 return new LDoubleStackSlot(index);
323 static LDoubleStackSlot* cast(LOperand* op) {
325 return reinterpret_cast<LDoubleStackSlot*>(op);
332 static LDoubleStackSlot cache[];
334 LDoubleStackSlot() : LOperand() { }
335 explicit LDoubleStackSlot(int index) : LOperand(DOUBLE_STACK_SLOT, index) { }
lithium-allocator.cc 65 DEFINE_OPERAND_CACHE(LDoubleStackSlot, DOUBLE_STACK_SLOT)
    [all...]
  /external/v8/src/arm/
lithium-arm.cc 407 return LDoubleStackSlot::Create(index);
    [all...]
  /external/v8/src/ia32/
lithium-ia32.cc 363 return LDoubleStackSlot::Create(index);
    [all...]
  /external/v8/src/x64/
lithium-x64.cc 364 return LDoubleStackSlot::Create(index);
    [all...]

Completed in 209 milliseconds