Index: src/ppc/code-stubs-ppc.cc |
diff --git a/src/ppc/code-stubs-ppc.cc b/src/ppc/code-stubs-ppc.cc |
index 53fdc17c8f9ab8a335b0fe886e0b3b8661e75ca8..b6e685836f07ba5e618c3dc12577f13b23a87864 100644 |
--- a/src/ppc/code-stubs-ppc.cc |
+++ b/src/ppc/code-stubs-ppc.cc |
@@ -1457,26 +1457,35 @@ void InstanceOfStub::Generate(MacroAssembler* masm) { |
// Loop through the prototype chain looking for the {function} prototype. |
// Assume true, and change to false if not found. |
- Register const object_prototype = object_map; |
+ Register const object_instance_type = function_map; |
Register const null = scratch; |
- Label done, loop; |
- __ LoadRoot(r3, Heap::kTrueValueRootIndex); |
+ Register const result = r3; |
+ Label done, loop, proxy_case; |
+ __ LoadRoot(result, Heap::kTrueValueRootIndex); |
__ LoadRoot(null, Heap::kNullValueRootIndex); |
__ bind(&loop); |
- __ LoadP(object_prototype, |
- FieldMemOperand(object_map, Map::kPrototypeOffset)); |
- __ cmp(object_prototype, function_prototype); |
+ __ CompareInstanceType(object_map, object_instance_type, JS_PROXY_TYPE); |
+ __ beq(&proxy_case); |
+ __ LoadP(object, FieldMemOperand(object_map, Map::kPrototypeOffset)); |
+ __ cmp(object, function_prototype); |
__ beq(&done); |
- __ cmp(object_prototype, null); |
- __ LoadP(object_map, |
- FieldMemOperand(object_prototype, HeapObject::kMapOffset)); |
+ __ cmp(object, null); |
+ __ LoadP(object_map, FieldMemOperand(object, HeapObject::kMapOffset)); |
__ bne(&loop); |
- __ LoadRoot(r3, Heap::kFalseValueRootIndex); |
+ __ LoadRoot(result, Heap::kFalseValueRootIndex); |
__ bind(&done); |
- __ StoreRoot(r3, Heap::kInstanceofCacheAnswerRootIndex); |
+ __ StoreRoot(result, Heap::kInstanceofCacheAnswerRootIndex); |
__ Ret(); |
- // Slow-case: Call the runtime function. |
+ // Proxy-case: Call the %HasInPrototypeChain runtime function. |
+ __ bind(&proxy_case); |
+ __ Push(object, function_prototype); |
+ // Invalidate the instanceof cache. |
+ __ LoadSmiLiteral(scratch, Smi::FromInt(0)); |
+ __ StoreRoot(scratch, Heap::kInstanceofCacheFunctionRootIndex); |
+ __ TailCallRuntime(Runtime::kHasInPrototypeChain, 2, 1); |
+ |
+ // Slow-case: Call the %InstanceOf runtime function. |
__ bind(&slow_case); |
__ Push(object, function); |
__ TailCallRuntime(Runtime::kInstanceOf, 2, 1); |