OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #include "vm/globals.h" | 5 #include "vm/globals.h" |
6 #if defined(TARGET_ARCH_ARM) | 6 #if defined(TARGET_ARCH_ARM) |
7 | 7 |
8 #include "vm/assembler.h" | 8 #include "vm/assembler.h" |
9 #include "vm/code_generator.h" | 9 #include "vm/code_generator.h" |
10 #include "vm/cpu.h" | 10 #include "vm/cpu.h" |
(...skipping 2266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2277 __ ldr(CODE_REG, Address(THR, Thread::ic_lookup_through_code_stub_offset())); | 2277 __ ldr(CODE_REG, Address(THR, Thread::ic_lookup_through_code_stub_offset())); |
2278 __ ldr(R1, FieldAddress(CODE_REG, Code::checked_entry_point_offset())); | 2278 __ ldr(R1, FieldAddress(CODE_REG, Code::checked_entry_point_offset())); |
2279 __ bx(R1); | 2279 __ bx(R1); |
2280 } | 2280 } |
2281 | 2281 |
2282 | 2282 |
2283 void StubCode::GenerateFrameAwaitingMaterializationStub(Assembler* assembler) { | 2283 void StubCode::GenerateFrameAwaitingMaterializationStub(Assembler* assembler) { |
2284 __ bkpt(0); | 2284 __ bkpt(0); |
2285 } | 2285 } |
2286 | 2286 |
| 2287 |
| 2288 void StubCode::GenerateAsynchronousGapMarkerStub(Assembler* assembler) { |
| 2289 __ bkpt(0); |
| 2290 } |
| 2291 |
2287 } // namespace dart | 2292 } // namespace dart |
2288 | 2293 |
2289 #endif // defined TARGET_ARCH_ARM | 2294 #endif // defined TARGET_ARCH_ARM |
OLD | NEW |