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

  /external/v8/src/
lithium.h 254 class LConstantOperand: public LOperand {
256 static LConstantOperand* Create(int index) {
259 return new LConstantOperand(index);
262 static LConstantOperand* cast(LOperand* op) {
264 return reinterpret_cast<LConstantOperand*>(op);
271 static LConstantOperand* cache;
273 LConstantOperand() : LOperand() { }
274 explicit LConstantOperand(int index) : LOperand(CONSTANT_OPERAND, index) { }
  /external/chromium_org/v8/src/
lithium.h 320 class LConstantOperand: public LOperand {
322 static LConstantOperand* Create(int index, Zone* zone) {
325 return new(zone) LConstantOperand(index);
328 static LConstantOperand* cast(LOperand* op) {
330 return reinterpret_cast<LConstantOperand*>(op);
338 static LConstantOperand* cache;
340 LConstantOperand() : LOperand() { }
341 explicit LConstantOperand(int index) : LOperand(CONSTANT_OPERAND, index) { }
744 LConstantOperand* DefineConstantOperand(HConstant* constant);
745 HConstant* LookupConstant(LConstantOperand* operand) const
    [all...]

Completed in 442 milliseconds