Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(610)

Side by Side Diff: runtime/vm/instructions_arm64_test.cc

Issue 246293010: Enables first codegen test on arm64. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 __ BranchFixed(&StubCode::InvokeDartCodeLabel());
37 __ BranchPatchable(&StubCode::AllocateArrayLabel()); 37 __ BranchFixed(&StubCode::AllocateArrayLabel());
38 } 38 }
39 39
40 40
41 ASSEMBLER_TEST_RUN(Jump, test) { 41 ASSEMBLER_TEST_RUN(Jump, test) {
42 const Code& code = test->code(); 42 const Code& code = test->code();
43 const Instructions& instrs = Instructions::Handle(code.instructions()); 43 const Instructions& instrs = Instructions::Handle(code.instructions());
44 bool status = 44 bool status =
45 VirtualMemory::Protect(reinterpret_cast<void*>(instrs.EntryPoint()), 45 VirtualMemory::Protect(reinterpret_cast<void*>(instrs.EntryPoint()),
46 instrs.size(), 46 instrs.size(),
47 VirtualMemory::kReadWrite); 47 VirtualMemory::kReadWrite);
(...skipping 11 matching lines...) Expand all
59 jump2.SetTargetAddress(target1); 59 jump2.SetTargetAddress(target1);
60 EXPECT_EQ(StubCode::AllocateArrayLabel().address(), 60 EXPECT_EQ(StubCode::AllocateArrayLabel().address(),
61 jump1.TargetAddress()); 61 jump1.TargetAddress());
62 EXPECT_EQ(StubCode::InvokeDartCodeLabel().address(), 62 EXPECT_EQ(StubCode::InvokeDartCodeLabel().address(),
63 jump2.TargetAddress()); 63 jump2.TargetAddress());
64 } 64 }
65 65
66 } // namespace dart 66 } // namespace dart
67 67
68 #endif // defined TARGET_ARCH_ARM64 68 #endif // defined TARGET_ARCH_ARM64
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698