| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #if V8_TARGET_ARCH_ARM | 5 #if V8_TARGET_ARCH_ARM |
| 6 | 6 |
| 7 #include "src/ast/scopes.h" | 7 #include "src/ast/scopes.h" |
| 8 #include "src/code-factory.h" | 8 #include "src/code-factory.h" |
| 9 #include "src/code-stubs.h" | 9 #include "src/code-stubs.h" |
| 10 #include "src/codegen.h" | 10 #include "src/codegen.h" |
| (...skipping 1062 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1073 | 1073 |
| 1074 // The enum cache is valid. Load the map of the object being | 1074 // The enum cache is valid. Load the map of the object being |
| 1075 // iterated over and use the cache for the iteration. | 1075 // iterated over and use the cache for the iteration. |
| 1076 Label use_cache; | 1076 Label use_cache; |
| 1077 __ ldr(r0, FieldMemOperand(r0, HeapObject::kMapOffset)); | 1077 __ ldr(r0, FieldMemOperand(r0, HeapObject::kMapOffset)); |
| 1078 __ b(&use_cache); | 1078 __ b(&use_cache); |
| 1079 | 1079 |
| 1080 // Get the set of properties to enumerate. | 1080 // Get the set of properties to enumerate. |
| 1081 __ bind(&call_runtime); | 1081 __ bind(&call_runtime); |
| 1082 __ push(r0); // Duplicate the enumerable object on the stack. | 1082 __ push(r0); // Duplicate the enumerable object on the stack. |
| 1083 __ CallRuntime(Runtime::kGetPropertyNamesFast); | 1083 __ CallRuntime(Runtime::kForInEnumerate); |
| 1084 PrepareForBailoutForId(stmt->EnumId(), TOS_REG); | 1084 PrepareForBailoutForId(stmt->EnumId(), TOS_REG); |
| 1085 | 1085 |
| 1086 // If we got a map from the runtime call, we can do a fast | 1086 // If we got a map from the runtime call, we can do a fast |
| 1087 // modification check. Otherwise, we got a fixed array, and we have | 1087 // modification check. Otherwise, we got a fixed array, and we have |
| 1088 // to do a slow check. | 1088 // to do a slow check. |
| 1089 Label fixed_array; | 1089 Label fixed_array; |
| 1090 __ ldr(r2, FieldMemOperand(r0, HeapObject::kMapOffset)); | 1090 __ ldr(r2, FieldMemOperand(r0, HeapObject::kMapOffset)); |
| 1091 __ LoadRoot(ip, Heap::kMetaMapRootIndex); | 1091 __ LoadRoot(ip, Heap::kMetaMapRootIndex); |
| 1092 __ cmp(r2, ip); | 1092 __ cmp(r2, ip); |
| 1093 __ b(ne, &fixed_array); | 1093 __ b(ne, &fixed_array); |
| (...skipping 3759 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4853 DCHECK(interrupt_address == | 4853 DCHECK(interrupt_address == |
| 4854 isolate->builtins()->OsrAfterStackCheck()->entry()); | 4854 isolate->builtins()->OsrAfterStackCheck()->entry()); |
| 4855 return OSR_AFTER_STACK_CHECK; | 4855 return OSR_AFTER_STACK_CHECK; |
| 4856 } | 4856 } |
| 4857 | 4857 |
| 4858 | 4858 |
| 4859 } // namespace internal | 4859 } // namespace internal |
| 4860 } // namespace v8 | 4860 } // namespace v8 |
| 4861 | 4861 |
| 4862 #endif // V8_TARGET_ARCH_ARM | 4862 #endif // V8_TARGET_ARCH_ARM |
| OLD | NEW |