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

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

Issue 12703028: Adds Stop to MIPS. Starts on MIPS call patcher. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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) 2013, the Dart project authors. Please see the AUTHORS file 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 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_MIPS) 6 #if defined(TARGET_ARCH_MIPS)
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 UNIMPLEMENTED(); 18 __ BranchLinkPatchable(&StubCode::InstanceFunctionLookupLabel());
19 __ Ret();
19 } 20 }
20 21
21 22
22 ASSEMBLER_TEST_RUN(Call, test) { 23 ASSEMBLER_TEST_RUN(Call, test) {
23 CallPattern call(test->entry(), test->code()); 24 // The return address, which must be the address of an instruction contained
25 // in the code, points to the Ret instruction above, i.e. two instructions
26 // before the end of the code buffer, including the delay slot for the
27 // return jump.
28 CallPattern call(test->entry() + test->code().Size() - (2*Instr::kInstrSize),
29 test->code());
24 EXPECT_EQ(StubCode::InstanceFunctionLookupLabel().address(), 30 EXPECT_EQ(StubCode::InstanceFunctionLookupLabel().address(),
25 call.TargetAddress()); 31 call.TargetAddress());
26 } 32 }
27 33
28 34
29 ASSEMBLER_TEST_GENERATE(Jump, assembler) { 35 ASSEMBLER_TEST_GENERATE(Jump, assembler) {
30 UNIMPLEMENTED(); 36 UNIMPLEMENTED();
31 } 37 }
32 38
33 39
(...skipping 10 matching lines...) Expand all
44 jump2.SetTargetAddress(target1); 50 jump2.SetTargetAddress(target1);
45 EXPECT_EQ(StubCode::AllocateArrayLabel().address(), 51 EXPECT_EQ(StubCode::AllocateArrayLabel().address(),
46 jump1.TargetAddress()); 52 jump1.TargetAddress());
47 EXPECT_EQ(StubCode::InstanceFunctionLookupLabel().address(), 53 EXPECT_EQ(StubCode::InstanceFunctionLookupLabel().address(),
48 jump2.TargetAddress()); 54 jump2.TargetAddress());
49 } 55 }
50 56
51 } // namespace dart 57 } // namespace dart
52 58
53 #endif // defined TARGET_ARCH_MIPS 59 #endif // defined TARGET_ARCH_MIPS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698