| Index: src/arm/lithium-arm.h
|
| ===================================================================
|
| --- src/arm/lithium-arm.h (revision 7187)
|
| +++ src/arm/lithium-arm.h (working copy)
|
| @@ -118,7 +118,8 @@
|
| V(LoadElements) \
|
| V(LoadExternalArrayPointer) \
|
| V(LoadFunctionPrototype) \
|
| - V(LoadGlobal) \
|
| + V(LoadGlobalCell) \
|
| + V(LoadGlobalGeneric) \
|
| V(LoadKeyedFastElement) \
|
| V(LoadKeyedGeneric) \
|
| V(LoadNamedField) \
|
| @@ -1221,13 +1222,23 @@
|
| };
|
|
|
|
|
| -class LLoadGlobal: public LTemplateInstruction<1, 0, 0> {
|
| +class LLoadGlobalCell: public LTemplateInstruction<1, 0, 0> {
|
| public:
|
| - DECLARE_CONCRETE_INSTRUCTION(LoadGlobal, "load-global")
|
| - DECLARE_HYDROGEN_ACCESSOR(LoadGlobal)
|
| + DECLARE_CONCRETE_INSTRUCTION(LoadGlobalCell, "load-global-cell")
|
| + DECLARE_HYDROGEN_ACCESSOR(LoadGlobalCell)
|
| };
|
|
|
|
|
| +class LLoadGlobalGeneric: public LTemplateInstruction<1, 0, 0> {
|
| + public:
|
| + DECLARE_CONCRETE_INSTRUCTION(LoadGlobalGeneric, "load-global-generic")
|
| + DECLARE_HYDROGEN_ACCESSOR(LoadGlobalGeneric)
|
| +
|
| + 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) {
|
|
|