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

  /external/v8/src/
lithium.h 337 class LRegister: public LOperand {
339 static LRegister* Create(int index) {
342 return new LRegister(index);
345 static LRegister* cast(LOperand* op) {
347 return reinterpret_cast<LRegister*>(op);
354 static LRegister* cache;
356 LRegister() : LOperand() { }
357 explicit LRegister(int index) : LOperand(REGISTER, index) { }
  /external/chromium_org/v8/src/
lithium.h 406 class LRegister: public LOperand {
408 static LRegister* Create(int index, Zone* zone) {
411 return new(zone) LRegister(index);
414 static LRegister* cast(LOperand* op) {
416 return reinterpret_cast<LRegister*>(op);
424 static LRegister* cache;
426 LRegister() : LOperand() { }
427 explicit LRegister(int index) : LOperand(REGISTER, index) { }

Completed in 4838 milliseconds