Home
last modified time | relevance | path

Searched refs:LDoubleStackSlot (Results 1 – 11 of 11) sorted by relevance

/external/v8/src/
Dlithium.h313 class LDoubleStackSlot: public LOperand {
315 static LDoubleStackSlot* Create(int index) { in Create()
318 return new LDoubleStackSlot(index); in Create()
321 static LDoubleStackSlot* cast(LOperand* op) { in cast()
323 return reinterpret_cast<LDoubleStackSlot*>(op); in cast()
330 static LDoubleStackSlot* cache;
332 LDoubleStackSlot() : LOperand() { } in LDoubleStackSlot() function
333 explicit LDoubleStackSlot(int index) : LOperand(DOUBLE_STACK_SLOT, index) { } in LDoubleStackSlot() function
Dlithium.cc109 DEFINE_OPERAND_CACHE(LDoubleStackSlot, DOUBLE_STACK_SLOT) in DEFINE_OPERAND_CACHE()
118 LDoubleStackSlot::SetUpCache(); in DEFINE_OPERAND_CACHE()
/external/chromium_org/v8/src/
Dlithium.h381 class LDoubleStackSlot V8_FINAL : public LOperand {
383 static LDoubleStackSlot* Create(int index, Zone* zone) { in Create()
386 return new(zone) LDoubleStackSlot(index); in Create()
389 static LDoubleStackSlot* cast(LOperand* op) { in cast()
391 return reinterpret_cast<LDoubleStackSlot*>(op); in cast()
399 static LDoubleStackSlot* cache;
401 LDoubleStackSlot() : LOperand() { } in LDoubleStackSlot() function
402 explicit LDoubleStackSlot(int index) : LOperand(DOUBLE_STACK_SLOT, index) { } in LDoubleStackSlot() function
/external/v8/src/ia32/
Dlithium-ia32.cc379 return LDoubleStackSlot::Create(index); in GetNextSpillSlot()
/external/v8/src/mips/
Dlithium-mips.cc435 return LDoubleStackSlot::Create(index); in GetNextSpillSlot()
/external/v8/src/arm/
Dlithium-arm.cc435 return LDoubleStackSlot::Create(index); in GetNextSpillSlot()
/external/v8/src/x64/
Dlithium-x64.cc377 return LDoubleStackSlot::Create(index); in GetNextSpillSlot()
/external/chromium_org/v8/src/x64/
Dlithium-x64.cc368 return LDoubleStackSlot::Create(index, zone()); in GetNextSpillSlot()
/external/chromium_org/v8/src/arm/
Dlithium-arm.cc426 return LDoubleStackSlot::Create(index, zone()); in GetNextSpillSlot()
/external/chromium_org/v8/src/mips/
Dlithium-mips.cc431 return LDoubleStackSlot::Create(index, zone()); in GetNextSpillSlot()
/external/chromium_org/v8/src/ia32/
Dlithium-ia32.cc404 return LDoubleStackSlot::Create(index, zone()); in GetNextSpillSlot()