OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 #include "src/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #if V8_TARGET_ARCH_ARM64 | 7 #if V8_TARGET_ARCH_ARM64 |
8 | 8 |
9 #include "src/code-factory.h" | 9 #include "src/code-factory.h" |
10 #include "src/code-stubs.h" | 10 #include "src/code-stubs.h" |
(...skipping 1162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1173 __ B(&loop); | 1173 __ B(&loop); |
1174 | 1174 |
1175 __ Bind(&no_descriptors); | 1175 __ Bind(&no_descriptors); |
1176 __ Drop(1); | 1176 __ Drop(1); |
1177 __ B(&exit); | 1177 __ B(&exit); |
1178 | 1178 |
1179 // We got a fixed array in register x0. Iterate through that. | 1179 // We got a fixed array in register x0. Iterate through that. |
1180 __ Bind(&fixed_array); | 1180 __ Bind(&fixed_array); |
1181 | 1181 |
1182 __ LoadObject(x1, FeedbackVector()); | 1182 __ LoadObject(x1, FeedbackVector()); |
1183 __ Mov(x10, Operand(TypeFeedbackInfo::MegamorphicSentinel(isolate()))); | 1183 __ Mov(x10, Operand(TypeFeedbackVector::MegamorphicSentinel(isolate()))); |
1184 __ Str(x10, FieldMemOperand(x1, FixedArray::OffsetOfElementAt(slot))); | 1184 __ Str(x10, FieldMemOperand(x1, FixedArray::OffsetOfElementAt(slot))); |
1185 | 1185 |
1186 __ Mov(x1, Smi::FromInt(1)); // Smi indicates slow check. | 1186 __ Mov(x1, Smi::FromInt(1)); // Smi indicates slow check. |
1187 __ Peek(x10, 0); // Get enumerated object. | 1187 __ Peek(x10, 0); // Get enumerated object. |
1188 STATIC_ASSERT(FIRST_JS_PROXY_TYPE == FIRST_SPEC_OBJECT_TYPE); | 1188 STATIC_ASSERT(FIRST_JS_PROXY_TYPE == FIRST_SPEC_OBJECT_TYPE); |
1189 // TODO(all): similar check was done already. Can we avoid it here? | 1189 // TODO(all): similar check was done already. Can we avoid it here? |
1190 __ CompareObjectType(x10, x11, x12, LAST_JS_PROXY_TYPE); | 1190 __ CompareObjectType(x10, x11, x12, LAST_JS_PROXY_TYPE); |
1191 DCHECK(Smi::FromInt(0) == 0); | 1191 DCHECK(Smi::FromInt(0) == 0); |
1192 __ CzeroX(x1, le); // Zero indicates proxy. | 1192 __ CzeroX(x1, le); // Zero indicates proxy. |
1193 __ Ldr(x2, FieldMemOperand(x0, FixedArray::kLengthOffset)); | 1193 __ Ldr(x2, FieldMemOperand(x0, FixedArray::kLengthOffset)); |
(...skipping 3715 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4909 return previous_; | 4909 return previous_; |
4910 } | 4910 } |
4911 | 4911 |
4912 | 4912 |
4913 #undef __ | 4913 #undef __ |
4914 | 4914 |
4915 | 4915 |
4916 } } // namespace v8::internal | 4916 } } // namespace v8::internal |
4917 | 4917 |
4918 #endif // V8_TARGET_ARCH_ARM64 | 4918 #endif // V8_TARGET_ARCH_ARM64 |
OLD | NEW |