Index: src/full-codegen/ppc/full-codegen-ppc.cc |
diff --git a/src/full-codegen/ppc/full-codegen-ppc.cc b/src/full-codegen/ppc/full-codegen-ppc.cc |
index 5b62ab5d9d84d121d5033cf8d5ba913fe7ea2355..eed597ccbd777ec5fc45ec231684366ceb5849a3 100644 |
--- a/src/full-codegen/ppc/full-codegen-ppc.cc |
+++ b/src/full-codegen/ppc/full-codegen-ppc.cc |
@@ -998,25 +998,20 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) { |
ForIn loop_statement(this, stmt); |
increment_loop_depth(); |
- // Get the object to enumerate over. If the object is null or undefined, skip |
- // over the loop. See ECMA-262 version 5, section 12.6.4. |
+ // Get the object to enumerate over. |
SetExpressionAsStatementPosition(stmt->enumerable()); |
VisitForAccumulatorValue(stmt->enumerable()); |
- __ LoadRoot(ip, Heap::kUndefinedValueRootIndex); |
- __ cmp(r3, ip); |
- __ beq(&exit); |
- Register null_value = r7; |
- __ LoadRoot(null_value, Heap::kNullValueRootIndex); |
- __ cmp(r3, null_value); |
- __ beq(&exit); |
- |
- PrepareForBailoutForId(stmt->PrepareId(), TOS_REG); |
- // Convert the object to a JS object. |
+ // If the object is null or undefined, skip over the loop, otherwise convert |
+ // it to a JS receiver. See ECMA-262 version 5, section 12.6.4. |
Label convert, done_convert; |
__ JumpIfSmi(r3, &convert); |
__ CompareObjectType(r3, r4, r4, FIRST_JS_RECEIVER_TYPE); |
__ bge(&done_convert); |
+ __ CompareRoot(r3, Heap::kNullValueRootIndex); |
+ __ beq(&exit); |
+ __ CompareRoot(r3, Heap::kUndefinedValueRootIndex); |
+ __ beq(&exit); |
__ bind(&convert); |
ToObjectStub stub(isolate()); |
__ CallStub(&stub); |
@@ -1024,16 +1019,14 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) { |
PrepareForBailoutForId(stmt->ToObjectId(), TOS_REG); |
__ push(r3); |
- // Check for proxies. |
- Label call_runtime; |
- __ CompareObjectType(r3, r4, r4, JS_PROXY_TYPE); |
- __ beq(&call_runtime); |
- |
// Check cache validity in generated code. This is a fast case for |
// the JSObject::IsSimpleEnum cache validity checks. If we cannot |
// guarantee cache validity, call the runtime system to check cache |
// validity or get the property names in a fixed array. |
- __ CheckEnumCache(null_value, &call_runtime); |
+ // Note: Proxies never have an enum cache, so will always take the |
+ // slow path. |
+ Label call_runtime; |
+ __ CheckEnumCache(&call_runtime); |
// The enum cache is valid. Load the map of the object being |
// iterated over and use the cache for the iteration. |