HomeSort by relevance Sort by last modified time
    Searched defs:LDoubleStackSlot (Results 1 - 2 of 2) 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) { }
  /external/chromium_org/v8/src/
lithium.h 381 class LDoubleStackSlot: public LOperand {
383 static LDoubleStackSlot* Create(int index, Zone* zone) {
386 return new(zone) LDoubleStackSlot(index);
389 static LDoubleStackSlot* cast(LOperand* op) {
391 return reinterpret_cast<LDoubleStackSlot*>(op);
399 static LDoubleStackSlot* cache;
401 LDoubleStackSlot() : LOperand() { }
402 explicit LDoubleStackSlot(int index) : LOperand(DOUBLE_STACK_SLOT, index) { }

Completed in 45 milliseconds