| Index: src/arm/lithium-arm.h
|
| ===================================================================
|
| --- src/arm/lithium-arm.h (revision 7145)
|
| +++ src/arm/lithium-arm.h (working copy)
|
| @@ -119,6 +119,7 @@
|
| V(LoadExternalArrayPointer) \
|
| V(LoadFunctionPrototype) \
|
| V(LoadGlobal) \
|
| + V(LoadGlobalGeneric) \
|
| V(LoadKeyedFastElement) \
|
| V(LoadKeyedGeneric) \
|
| V(LoadNamedField) \
|
| @@ -1227,6 +1228,13 @@
|
| };
|
|
|
|
|
| +class LLoadGlobalGeneric: public LTemplateInstruction<1, 0, 0> {
|
| + public:
|
| + DECLARE_CONCRETE_INSTRUCTION(LoadGlobalGeneric, "load-global-generic")
|
| + DECLARE_HYDROGEN_ACCESSOR(LoadGlobalGeneric)
|
| +};
|
| +
|
| +
|
| class LStoreGlobal: public LTemplateInstruction<0, 1, 1> {
|
| public:
|
| LStoreGlobal(LOperand* value, LOperand* temp) {
|
|
|