| Index: src/ia32/lithium-ia32.h
|
| ===================================================================
|
| --- src/ia32/lithium-ia32.h (revision 7145)
|
| +++ src/ia32/lithium-ia32.h (working copy)
|
| @@ -121,6 +121,7 @@
|
| V(LoadExternalArrayPointer) \
|
| V(LoadFunctionPrototype) \
|
| V(LoadGlobal) \
|
| + V(LoadGlobalGeneric) \
|
| V(LoadKeyedFastElement) \
|
| V(LoadKeyedGeneric) \
|
| V(LoadNamedField) \
|
| @@ -1276,6 +1277,21 @@
|
| };
|
|
|
|
|
| +class LLoadGlobalGeneric: public LTemplateInstruction<1, 2, 0> {
|
| + public:
|
| + LLoadGlobalGeneric(LOperand* context, LOperand* global_object) {
|
| + inputs_[0] = context;
|
| + inputs_[1] = global_object;
|
| + }
|
| +
|
| + LOperand* context() { return inputs_[0]; }
|
| + LOperand* global_object() { return inputs_[1]; }
|
| +
|
| + DECLARE_CONCRETE_INSTRUCTION(LoadGlobalGeneric, "load-global-generic")
|
| + DECLARE_HYDROGEN_ACCESSOR(LoadGlobalGeneric)
|
| +};
|
| +
|
| +
|
| class LStoreGlobal: public LTemplateInstruction<0, 1, 0> {
|
| public:
|
| explicit LStoreGlobal(LOperand* value) {
|
|
|