OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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_X64) | 6 #if defined(TARGET_ARCH_X64) |
7 | 7 |
8 #include "vm/assembler.h" | 8 #include "vm/assembler.h" |
9 #include "vm/instructions.h" | 9 #include "vm/instructions.h" |
10 #include "vm/stub_code.h" | 10 #include "vm/stub_code.h" |
11 #include "vm/unit_test.h" | 11 #include "vm/unit_test.h" |
12 | 12 |
13 namespace dart { | 13 namespace dart { |
14 | 14 |
15 #define __ assembler-> | 15 #define __ assembler-> |
16 | 16 |
17 ASSEMBLER_TEST_GENERATE(Call, assembler) { | 17 ASSEMBLER_TEST_GENERATE(Call, assembler) { |
18 __ call(&StubCode::InstanceFunctionLookupLabel()); | 18 __ call(&StubCode::InstanceFunctionLookupLabel()); |
19 __ ret(); | 19 __ ret(); |
20 } | 20 } |
21 | 21 |
22 | 22 |
23 ASSEMBLER_TEST_RUN(Call, test) { | 23 ASSEMBLER_TEST_RUN(Call, test) { |
24 CallPattern call(test->entry()); | 24 CallPattern call(test->entry(), test->code()); |
25 EXPECT_EQ(StubCode::InstanceFunctionLookupLabel().address(), | 25 EXPECT_EQ(StubCode::InstanceFunctionLookupLabel().address(), |
26 call.TargetAddress()); | 26 call.TargetAddress()); |
27 } | 27 } |
28 | 28 |
29 | 29 |
30 ASSEMBLER_TEST_GENERATE(Jump, assembler) { | 30 ASSEMBLER_TEST_GENERATE(Jump, assembler) { |
31 __ jmp(&StubCode::InstanceFunctionLookupLabel()); | 31 __ EnterDartFrame(0); // 20 bytes |
32 __ jmp(&StubCode::AllocateArrayLabel()); | 32 __ JmpPatchable(&StubCode::InstanceFunctionLookupLabel(), PP); |
| 33 __ JmpPatchable(&StubCode::AllocateArrayLabel(), PP); |
| 34 __ LeaveFrameWithPP(); |
33 __ ret(); | 35 __ ret(); |
34 } | 36 } |
35 | 37 |
36 | 38 |
37 ASSEMBLER_TEST_RUN(Jump, test) { | 39 ASSEMBLER_TEST_RUN(Jump, test) { |
38 JumpPattern jump1(test->entry()); | 40 JumpPattern jump1(test->entry() + 20, test->code()); |
39 jump1.IsValid(); | 41 jump1.IsValid(); |
40 EXPECT_EQ(StubCode::InstanceFunctionLookupLabel().address(), | 42 EXPECT_EQ(StubCode::InstanceFunctionLookupLabel().address(), |
41 jump1.TargetAddress()); | 43 jump1.TargetAddress()); |
42 JumpPattern jump2(test->entry() + jump1.pattern_length_in_bytes()); | 44 JumpPattern jump2(test->entry() + jump1.pattern_length_in_bytes() + 20, |
| 45 test->code()); |
43 EXPECT_EQ(StubCode::AllocateArrayLabel().address(), | 46 EXPECT_EQ(StubCode::AllocateArrayLabel().address(), |
44 jump2.TargetAddress()); | 47 jump2.TargetAddress()); |
45 uword target1 = jump1.TargetAddress(); | 48 uword target1 = jump1.TargetAddress(); |
46 uword target2 = jump2.TargetAddress(); | 49 uword target2 = jump2.TargetAddress(); |
47 jump1.SetTargetAddress(target2); | 50 jump1.SetTargetAddress(target2); |
48 jump2.SetTargetAddress(target1); | 51 jump2.SetTargetAddress(target1); |
49 EXPECT_EQ(StubCode::AllocateArrayLabel().address(), | 52 EXPECT_EQ(StubCode::AllocateArrayLabel().address(), |
50 jump1.TargetAddress()); | 53 jump1.TargetAddress()); |
51 EXPECT_EQ(StubCode::InstanceFunctionLookupLabel().address(), | 54 EXPECT_EQ(StubCode::InstanceFunctionLookupLabel().address(), |
52 jump2.TargetAddress()); | 55 jump2.TargetAddress()); |
53 } | 56 } |
54 | 57 |
55 } // namespace dart | 58 } // namespace dart |
56 | 59 |
57 #endif // defined TARGET_ARCH_X64 | 60 #endif // defined TARGET_ARCH_X64 |
OLD | NEW |