Index: src/arm/lithium-arm.h |
=================================================================== |
--- src/arm/lithium-arm.h (revision 7218) |
+++ src/arm/lithium-arm.h (working copy) |
@@ -119,8 +119,7 @@ |
V(LoadElements) \ |
V(LoadExternalArrayPointer) \ |
V(LoadFunctionPrototype) \ |
- V(LoadGlobalCell) \ |
- V(LoadGlobalGeneric) \ |
+ V(LoadGlobal) \ |
V(LoadKeyedFastElement) \ |
V(LoadKeyedGeneric) \ |
V(LoadNamedField) \ |
@@ -1223,28 +1222,13 @@ |
}; |
-class LLoadGlobalCell: public LTemplateInstruction<1, 0, 0> { |
+class LLoadGlobal: public LTemplateInstruction<1, 0, 0> { |
public: |
- DECLARE_CONCRETE_INSTRUCTION(LoadGlobalCell, "load-global-cell") |
- DECLARE_HYDROGEN_ACCESSOR(LoadGlobalCell) |
+ DECLARE_CONCRETE_INSTRUCTION(LoadGlobal, "load-global") |
+ DECLARE_HYDROGEN_ACCESSOR(LoadGlobal) |
}; |
-class LLoadGlobalGeneric: public LTemplateInstruction<1, 1, 0> { |
- public: |
- explicit LLoadGlobalGeneric(LOperand* global_object) { |
- inputs_[0] = global_object; |
- } |
- |
- DECLARE_CONCRETE_INSTRUCTION(LoadGlobalGeneric, "load-global-generic") |
- DECLARE_HYDROGEN_ACCESSOR(LoadGlobalGeneric) |
- |
- LOperand* global_object() { return inputs_[0]; } |
- Handle<Object> name() const { return hydrogen()->name(); } |
- bool for_typeof() const { return hydrogen()->for_typeof(); } |
-}; |
- |
- |
class LStoreGlobal: public LTemplateInstruction<0, 1, 1> { |
public: |
LStoreGlobal(LOperand* value, LOperand* temp) { |