| 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 __ BranchPatchable(&StubCode::InvokeDartCodeLabel()); | 36 // TODO(zra): Use BranchPatchable after fixing JumpPattern to match a load |
| 37 __ BranchPatchable(&StubCode::AllocateArrayLabel()); | 37 // from the object pool.n |
| 38 __ BranchFixed(&StubCode::InvokeDartCodeLabel()); |
| 39 __ BranchFixed(&StubCode::AllocateArrayLabel()); |
| 38 } | 40 } |
| 39 | 41 |
| 40 | 42 |
| 41 ASSEMBLER_TEST_RUN(Jump, test) { | 43 ASSEMBLER_TEST_RUN(Jump, test) { |
| 42 const Code& code = test->code(); | 44 const Code& code = test->code(); |
| 43 const Instructions& instrs = Instructions::Handle(code.instructions()); | 45 const Instructions& instrs = Instructions::Handle(code.instructions()); |
| 44 bool status = | 46 bool status = |
| 45 VirtualMemory::Protect(reinterpret_cast<void*>(instrs.EntryPoint()), | 47 VirtualMemory::Protect(reinterpret_cast<void*>(instrs.EntryPoint()), |
| 46 instrs.size(), | 48 instrs.size(), |
| 47 VirtualMemory::kReadWrite); | 49 VirtualMemory::kReadWrite); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 59 jump2.SetTargetAddress(target1); | 61 jump2.SetTargetAddress(target1); |
| 60 EXPECT_EQ(StubCode::AllocateArrayLabel().address(), | 62 EXPECT_EQ(StubCode::AllocateArrayLabel().address(), |
| 61 jump1.TargetAddress()); | 63 jump1.TargetAddress()); |
| 62 EXPECT_EQ(StubCode::InvokeDartCodeLabel().address(), | 64 EXPECT_EQ(StubCode::InvokeDartCodeLabel().address(), |
| 63 jump2.TargetAddress()); | 65 jump2.TargetAddress()); |
| 64 } | 66 } |
| 65 | 67 |
| 66 } // namespace dart | 68 } // namespace dart |
| 67 | 69 |
| 68 #endif // defined TARGET_ARCH_ARM64 | 70 #endif // defined TARGET_ARCH_ARM64 |
| OLD | NEW |