OLD | NEW |
(Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 #include "vm/globals.h" |
| 6 #if defined(TARGET_ARCH_ARM64) |
| 7 |
| 8 #include "vm/assembler.h" |
| 9 #include "vm/cpu.h" |
| 10 #include "vm/os.h" |
| 11 #include "vm/unit_test.h" |
| 12 #include "vm/virtual_memory.h" |
| 13 |
| 14 namespace dart { |
| 15 |
| 16 #define __ assembler-> |
| 17 |
| 18 ASSEMBLER_TEST_GENERATE(Simple, assembler) { |
| 19 __ add(kDoubleWord, R0, ZR, AddSubOperand(ZR)); |
| 20 __ addi(kDoubleWord, R0, R0, AddSubOperand(42)); |
| 21 __ ret(); |
| 22 } |
| 23 |
| 24 |
| 25 ASSEMBLER_TEST_RUN(Simple, test) { |
| 26 typedef int (*SimpleCode)(); |
| 27 EXPECT_EQ(42, EXECUTE_TEST_CODE_INT32(SimpleCode, test->entry())); |
| 28 } |
| 29 |
| 30 } // namespace dart |
| 31 |
| 32 #endif // defined(TARGET_ARCH_ARM64) |
OLD | NEW |