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

/external/v8/src/crankshaft/
H A Dlithium.h27 class LOperand : public ZoneObject { class in namespace:v8::internal
39 LOperand() : value_(KindField::encode(INVALID)) { } function in class:v8::internal::LOperand
49 bool Equals(LOperand* other) const { return value_ == other->value_; }
67 LOperand(Kind kind, int index) { ConvertTo(kind, index); } function in class:v8::internal::LOperand
73 class LUnallocated : public LOperand {
105 explicit LUnallocated(ExtendedPolicy policy) : LOperand(UNALLOCATED, 0) {
111 LUnallocated(BasicPolicy policy, int index) : LOperand(UNALLOCATED, 0) {
118 LUnallocated(ExtendedPolicy policy, int index) : LOperand(UNALLOCATED, 0) {
127 : LOperand(UNALLOCATED, 0) {
139 static LUnallocated* cast(LOperand* o
[all...]

Completed in 869 milliseconds