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

/external/v8/src/
H A Dlithium.h254 class LConstantOperand: public LOperand { class in namespace:v8::internal
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() { } function in class:v8::internal::LConstantOperand
274 explicit LConstantOperand(int index) : LOperand(CONSTANT_OPERAND, index) { } function in class:v8::internal::LConstantOperand
/external/chromium_org/v8/src/
H A Dlithium.h320 class LConstantOperand: public LOperand { class in namespace:v8::internal
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() { } function in class:v8::internal::LConstantOperand
341 explicit LConstantOperand(int index) : LOperand(CONSTANT_OPERAND, index) { } function in class:v8::internal::LConstantOperand
744 LConstantOperand* DefineConstantOperand(HConstant* constant);
745 HConstant* LookupConstant(LConstantOperand* operan
[all...]

Completed in 104 milliseconds