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

/external/v8/src/
H A Dlithium.h26 class LOperand : public ZoneObject { class in namespace:v8::internal
38 LOperand() : value_(KindField::encode(INVALID)) { } function in class:v8::internal::LOperand
48 bool Equals(LOperand* other) const { return value_ == other->value_; }
66 LOperand(Kind kind, int index) { ConvertTo(kind, index); } function in class:v8::internal::LOperand
72 class LUnallocated : public LOperand {
104 explicit LUnallocated(ExtendedPolicy policy) : LOperand(UNALLOCATED, 0) {
110 LUnallocated(BasicPolicy policy, int index) : LOperand(UNALLOCATED, 0) {
117 LUnallocated(ExtendedPolicy policy, int index) : LOperand(UNALLOCATED, 0) {
126 : LOperand(UNALLOCATED, 0) {
138 static LUnallocated* cast(LOperand* o
[all...]

Completed in 90 milliseconds