| Index: src/ia32/lithium-ia32.h
|
| diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h
|
| index 038049ca068bf337c9e409712ac67889441373bf..09498ecba417820ced11e7bd43dd7afa529b8264 100644
|
| --- a/src/ia32/lithium-ia32.h
|
| +++ b/src/ia32/lithium-ia32.h
|
| @@ -95,6 +95,7 @@ class LCodeGen;
|
| V(HasCachedArrayIndexAndBranch) \
|
| V(HasInstanceTypeAndBranch) \
|
| V(In) \
|
| + V(InlinedContext) \
|
| V(InstanceOf) \
|
| V(InstanceOfKnownGlobal) \
|
| V(InstructionGap) \
|
| @@ -1319,6 +1320,15 @@ class LContext: public LTemplateInstruction<1, 0, 0> {
|
| };
|
|
|
|
|
| +class LInlinedContext: public LTemplateInstruction<1, 0, 0> {
|
| + public:
|
| + DECLARE_CONCRETE_INSTRUCTION(InlinedContext, "inlined-context")
|
| + DECLARE_HYDROGEN_ACCESSOR(InlinedContext)
|
| +
|
| + Handle<JSFunction> closure() const { return hydrogen()->closure(); }
|
| +};
|
| +
|
| +
|
| class LOuterContext: public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LOuterContext(LOperand* context) {
|
|
|