Searched defs:LOperand (Results 1 - 1 of 1) sorted by relevance

/external/v8/src/
H A Dlithium.h38 class LOperand: public ZoneObject { class in namespace:v8::internal
51 LOperand() : value_(KindField::encode(INVALID)) { } function in class:v8::internal::LOperand
63 bool Equals(LOperand* other) const { return value_ == other->value_; }
73 // if you add a new LOperand subclass.
80 LOperand(Kind kind, int index) { ConvertTo(kind, index); } function in class:v8::internal::LOperand
86 class LUnallocated: public LOperand {
113 explicit LUnallocated(Policy policy) : LOperand(UNALLOCATED, 0) {
117 LUnallocated(Policy policy, int fixed_index) : LOperand(UNALLOCATED, 0) {
121 LUnallocated(Policy policy, Lifetime lifetime) : LOperand(UNALLOCATED, 0) {
189 static LUnallocated* cast(LOperand* o
[all...]

Completed in 58 milliseconds