OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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_ARM64) | 6 #if defined(TARGET_ARCH_ARM64) |
7 | 7 |
8 #include "vm/assembler.h" | 8 #include "vm/assembler.h" |
9 #include "vm/cpu.h" | 9 #include "vm/cpu.h" |
10 #include "vm/instructions.h" | 10 #include "vm/instructions.h" |
(...skipping 15 matching lines...) Expand all Loading... |
26 // in the code, points to the Ret instruction above, i.e. one instruction | 26 // in the code, points to the Ret instruction above, i.e. one instruction |
27 // before the end of the code buffer. | 27 // before the end of the code buffer. |
28 CallPattern call(test->entry() + test->code().Size() - Instr::kInstrSize, | 28 CallPattern call(test->entry() + test->code().Size() - Instr::kInstrSize, |
29 test->code()); | 29 test->code()); |
30 EXPECT_EQ(StubCode::InvokeDartCodeLabel().address(), | 30 EXPECT_EQ(StubCode::InvokeDartCodeLabel().address(), |
31 call.TargetAddress()); | 31 call.TargetAddress()); |
32 } | 32 } |
33 | 33 |
34 | 34 |
35 ASSEMBLER_TEST_GENERATE(Jump, assembler) { | 35 ASSEMBLER_TEST_GENERATE(Jump, assembler) { |
36 // TODO(zra): Use BranchPatchable after fixing JumpPattern to match a load | 36 __ BranchPatchable(&StubCode::InvokeDartCodeLabel()); |
37 // from the object pool.n | 37 __ BranchPatchable(&StubCode::AllocateArrayLabel()); |
38 __ BranchFixed(&StubCode::InvokeDartCodeLabel()); | |
39 __ BranchFixed(&StubCode::AllocateArrayLabel()); | |
40 } | 38 } |
41 | 39 |
42 | 40 |
43 ASSEMBLER_TEST_RUN(Jump, test) { | 41 ASSEMBLER_TEST_RUN(Jump, test) { |
44 const Code& code = test->code(); | 42 const Code& code = test->code(); |
45 const Instructions& instrs = Instructions::Handle(code.instructions()); | 43 const Instructions& instrs = Instructions::Handle(code.instructions()); |
46 bool status = | 44 bool status = |
47 VirtualMemory::Protect(reinterpret_cast<void*>(instrs.EntryPoint()), | 45 VirtualMemory::Protect(reinterpret_cast<void*>(instrs.EntryPoint()), |
48 instrs.size(), | 46 instrs.size(), |
49 VirtualMemory::kReadWrite); | 47 VirtualMemory::kReadWrite); |
(...skipping 11 matching lines...) Expand all Loading... |
61 jump2.SetTargetAddress(target1); | 59 jump2.SetTargetAddress(target1); |
62 EXPECT_EQ(StubCode::AllocateArrayLabel().address(), | 60 EXPECT_EQ(StubCode::AllocateArrayLabel().address(), |
63 jump1.TargetAddress()); | 61 jump1.TargetAddress()); |
64 EXPECT_EQ(StubCode::InvokeDartCodeLabel().address(), | 62 EXPECT_EQ(StubCode::InvokeDartCodeLabel().address(), |
65 jump2.TargetAddress()); | 63 jump2.TargetAddress()); |
66 } | 64 } |
67 | 65 |
68 } // namespace dart | 66 } // namespace dart |
69 | 67 |
70 #endif // defined TARGET_ARCH_ARM64 | 68 #endif // defined TARGET_ARCH_ARM64 |
OLD | NEW |