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

  /external/v8/src/
lithium.h 289 class LStackSlot: public LOperand {
291 static LStackSlot* Create(int index) {
294 return new LStackSlot(index);
297 static LStackSlot* cast(LOperand* op) {
299 return reinterpret_cast<LStackSlot*>(op);
306 static LStackSlot* cache;
308 LStackSlot() : LOperand() { }
309 explicit LStackSlot(int index) : LOperand(STACK_SLOT, index) { }
  /external/chromium_org/v8/src/
lithium.h 356 class LStackSlot: public LOperand {
358 static LStackSlot* Create(int index, Zone* zone) {
361 return new(zone) LStackSlot(index);
364 static LStackSlot* cast(LOperand* op) {
366 return reinterpret_cast<LStackSlot*>(op);
374 static LStackSlot* cache;
376 LStackSlot() : LOperand() { }
377 explicit LStackSlot(int index) : LOperand(STACK_SLOT, index) { }

Completed in 86 milliseconds