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

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

Issue 11926022: Add mips skeleton sources. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 11 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
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_MIPS.
6 #if defined(TARGET_ARCH_MIPS)
7
8 #include "vm/code_patcher.h"
9
10 namespace dart {
11
12 uword CodePatcher::GetStaticCallTargetAt(uword return_address) {
13 UNIMPLEMENTED();
14 return 0;
15 }
16
17
18 void CodePatcher::PatchStaticCallAt(uword return_address, uword new_target) {
19 UNIMPLEMENTED();
20 }
21
22
23 void CodePatcher::PatchInstanceCallAt(uword return_address, uword new_target) {
24 UNIMPLEMENTED();
25 }
26
27
28 void CodePatcher::InsertCallAt(uword start, uword target) {
29 UNIMPLEMENTED();
30 }
31
32
33 bool CodePatcher::IsDartCall(uword return_address) {
34 UNIMPLEMENTED();
35 return false;
36 }
37
38
39 uword CodePatcher::GetInstanceCallAt(uword return_address,
40 ICData* ic_data,
41 Array* arguments_descriptor) {
42 UNIMPLEMENTED();
43 return 0;
44 }
45
46
47 intptr_t CodePatcher::InstanceCallSizeInBytes() {
48 UNIMPLEMENTED();
49 return 0;
50 }
51
52 } // namespace dart
53
54 #endif // defined TARGET_ARCH_MIPS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698