| Index: src/arm/stub-cache-arm.cc
|
| diff --git a/src/arm/stub-cache-arm.cc b/src/arm/stub-cache-arm.cc
|
| index 0da5f64696ed1adc22f1dbe24891408a53914fe6..ab33884e41e8a926b1fe239d1473eb6340843ff7 100644
|
| --- a/src/arm/stub-cache-arm.cc
|
| +++ b/src/arm/stub-cache-arm.cc
|
| @@ -266,7 +266,12 @@ void StubCompiler::GenerateLoadGlobalFunctionPrototype(MacroAssembler* masm,
|
|
|
|
|
| void StubCompiler::GenerateDirectLoadGlobalFunctionPrototype(
|
| - MacroAssembler* masm, int index, Register prototype) {
|
| + MacroAssembler* masm, int index, Register prototype, Label* miss) {
|
| + // Check we're still in the same context.
|
| + __ ldr(prototype, MemOperand(cp, Context::SlotOffset(Context::GLOBAL_INDEX)));
|
| + __ Move(ip, Top::global());
|
| + __ cmp(prototype, ip);
|
| + __ b(ne, miss);
|
| // Get the global function with the given index.
|
| JSFunction* function = JSFunction::cast(Top::global_context()->get(index));
|
| // Load its initial map. The global functions all have initial maps.
|
| @@ -1434,7 +1439,8 @@ Object* CallStubCompiler::CompileStringCharCodeAtCall(
|
| // Check that the maps starting from the prototype haven't changed.
|
| GenerateDirectLoadGlobalFunctionPrototype(masm(),
|
| Context::STRING_FUNCTION_INDEX,
|
| - r0);
|
| + r0,
|
| + &miss);
|
| ASSERT(object != holder);
|
| CheckPrototypes(JSObject::cast(object->GetPrototype()), r0, holder,
|
| r1, r3, r4, name, &miss);
|
| @@ -1505,7 +1511,8 @@ Object* CallStubCompiler::CompileStringCharAtCall(Object* object,
|
| // Check that the maps starting from the prototype haven't changed.
|
| GenerateDirectLoadGlobalFunctionPrototype(masm(),
|
| Context::STRING_FUNCTION_INDEX,
|
| - r0);
|
| + r0,
|
| + &miss);
|
| ASSERT(object != holder);
|
| CheckPrototypes(JSObject::cast(object->GetPrototype()), r0, holder,
|
| r1, r3, r4, name, &miss);
|
| @@ -1705,7 +1712,7 @@ Object* CallStubCompiler::CompileCallConstant(Object* object,
|
| __ b(hs, &miss);
|
| // Check that the maps starting from the prototype haven't changed.
|
| GenerateDirectLoadGlobalFunctionPrototype(
|
| - masm(), Context::STRING_FUNCTION_INDEX, r0);
|
| + masm(), Context::STRING_FUNCTION_INDEX, r0, &miss);
|
| CheckPrototypes(JSObject::cast(object->GetPrototype()), r0, holder, r3,
|
| r1, r4, name, &miss);
|
| }
|
| @@ -1725,7 +1732,7 @@ Object* CallStubCompiler::CompileCallConstant(Object* object,
|
| __ bind(&fast);
|
| // Check that the maps starting from the prototype haven't changed.
|
| GenerateDirectLoadGlobalFunctionPrototype(
|
| - masm(), Context::NUMBER_FUNCTION_INDEX, r0);
|
| + masm(), Context::NUMBER_FUNCTION_INDEX, r0, &miss);
|
| CheckPrototypes(JSObject::cast(object->GetPrototype()), r0, holder, r3,
|
| r1, r4, name, &miss);
|
| }
|
| @@ -1748,7 +1755,7 @@ Object* CallStubCompiler::CompileCallConstant(Object* object,
|
| __ bind(&fast);
|
| // Check that the maps starting from the prototype haven't changed.
|
| GenerateDirectLoadGlobalFunctionPrototype(
|
| - masm(), Context::BOOLEAN_FUNCTION_INDEX, r0);
|
| + masm(), Context::BOOLEAN_FUNCTION_INDEX, r0, &miss);
|
| CheckPrototypes(JSObject::cast(object->GetPrototype()), r0, holder, r3,
|
| r1, r4, name, &miss);
|
| }
|
|
|