| Index: src/arm/lithium-arm.h
|
| diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h
|
| index 8c18760fd109f9007c0513d47a4e034cfb29977e..6c4c556823fefb5aceef29a11bcb7fe731cb8615 100644
|
| --- a/src/arm/lithium-arm.h
|
| +++ b/src/arm/lithium-arm.h
|
| @@ -101,6 +101,7 @@ class LCodeGen;
|
| V(HasCachedArrayIndexAndBranch) \
|
| V(HasInstanceTypeAndBranch) \
|
| V(In) \
|
| + V(InlinedContext) \
|
| V(InstanceOf) \
|
| V(InstanceOfKnownGlobal) \
|
| V(InstructionGap) \
|
| @@ -1286,6 +1287,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) {
|
|
|