Index: src/arm/lithium-arm.h |
diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h |
index 5165f1bbb6dcaea5515e287dec7192137c846cc3..7515cb3e9dfa8b7301a40531e03d67598e1a0ade 100644 |
--- a/src/arm/lithium-arm.h |
+++ b/src/arm/lithium-arm.h |
@@ -40,12 +40,6 @@ namespace internal { |
// Forward declarations. |
class LCodeGen; |
-#define LITHIUM_ALL_INSTRUCTION_LIST(V) \ |
- V(ControlInstruction) \ |
- V(Call) \ |
- LITHIUM_CONCRETE_INSTRUCTION_LIST(V) |
- |
- |
#define LITHIUM_CONCRETE_INSTRUCTION_LIST(V) \ |
V(AccessArgumentsAt) \ |
V(AddI) \ |
@@ -73,6 +67,7 @@ class LCodeGen; |
V(CheckInstanceType) \ |
V(CheckNonSmi) \ |
V(CheckMaps) \ |
+ V(CheckMapValue) \ |
V(CheckPrototypeMaps) \ |
V(CheckSmi) \ |
V(ClampDToUint8) \ |
@@ -89,14 +84,18 @@ class LCodeGen; |
V(ConstantS) \ |
V(ConstantT) \ |
V(Context) \ |
+ V(DateField) \ |
V(DebugBreak) \ |
V(DeclareGlobals) \ |
V(Deoptimize) \ |
V(DivI) \ |
V(DoubleToI) \ |
V(DoubleToSmi) \ |
+ V(Drop) \ |
V(DummyUse) \ |
V(ElementsKind) \ |
+ V(ForInCacheArray) \ |
+ V(ForInPrepareMap) \ |
V(FunctionLiteral) \ |
V(GetCachedArrayIndex) \ |
V(GlobalObject) \ |
@@ -104,13 +103,13 @@ class LCodeGen; |
V(Goto) \ |
V(HasCachedArrayIndexAndBranch) \ |
V(HasInstanceTypeAndBranch) \ |
+ V(InnerAllocatedObject) \ |
V(InstanceOf) \ |
V(InstanceOfKnownGlobal) \ |
V(InstanceSize) \ |
V(InstructionGap) \ |
V(Integer32ToDouble) \ |
V(Integer32ToSmi) \ |
- V(Uint32ToDouble) \ |
V(InvokeFunction) \ |
V(IsConstructCallAndBranch) \ |
V(IsObjectAndBranch) \ |
@@ -123,6 +122,7 @@ class LCodeGen; |
V(LinkObjectInList) \ |
V(LoadContextSlot) \ |
V(LoadExternalArrayPointer) \ |
+ V(LoadFieldByIndex) \ |
V(LoadFunctionPrototype) \ |
V(LoadGlobalCell) \ |
V(LoadGlobalGeneric) \ |
@@ -187,16 +187,10 @@ class LCodeGen; |
V(TrapAllocationMemento) \ |
V(Typeof) \ |
V(TypeofIsAndBranch) \ |
+ V(Uint32ToDouble) \ |
V(UnknownOSRValue) \ |
V(ValueOf) \ |
- V(ForInPrepareMap) \ |
- V(ForInCacheArray) \ |
- V(CheckMapValue) \ |
- V(LoadFieldByIndex) \ |
- V(DateField) \ |
- V(WrapReceiver) \ |
- V(Drop) \ |
- V(InnerAllocatedObject) |
+ V(WrapReceiver) |
#define DECLARE_CONCRETE_INSTRUCTION(type, mnemonic) \ |