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/cpu.h" |
9 #include "vm/os.h" | 10 #include "vm/os.h" |
10 #include "vm/unit_test.h" | 11 #include "vm/unit_test.h" |
11 #include "vm/virtual_memory.h" | 12 #include "vm/virtual_memory.h" |
12 | 13 |
13 namespace dart { | 14 namespace dart { |
14 | 15 |
15 #define __ assembler-> | 16 #define __ assembler-> |
16 | 17 |
17 | 18 |
18 ASSEMBLER_TEST_GENERATE(Simple, assembler) { | 19 ASSEMBLER_TEST_GENERATE(Simple, assembler) { |
(...skipping 3564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3583 __ StoreIntoObject(R2, | 3584 __ StoreIntoObject(R2, |
3584 FieldAddress(R2, GrowableObjectArray::data_offset()), | 3585 FieldAddress(R2, GrowableObjectArray::data_offset()), |
3585 R1); | 3586 R1); |
3586 __ PopList((1 << CTX) | (1 << LR)); | 3587 __ PopList((1 << CTX) | (1 << LR)); |
3587 __ Ret(); | 3588 __ Ret(); |
3588 } | 3589 } |
3589 | 3590 |
3590 } // namespace dart | 3591 } // namespace dart |
3591 | 3592 |
3592 #endif // defined TARGET_ARCH_ARM | 3593 #endif // defined TARGET_ARCH_ARM |
OLD | NEW |