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

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

Issue 11419073: Remove loading of function object in static calls. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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
« no previous file with comments | « runtime/vm/code_generator.cc ('k') | runtime/vm/code_patcher_ia32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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" // Needed here to get TARGET_ARCH_ARM. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM.
6 #if defined(TARGET_ARCH_ARM) 6 #if defined(TARGET_ARCH_ARM)
7 7
8 #include "vm/code_patcher.h" 8 #include "vm/code_patcher.h"
9 9
10 namespace dart { 10 namespace dart {
11 11
12 void CodePatcher::GetStaticCallAt(uword return_address, 12 void CodePatcher::GetStaticCallAt(uword return_address,
13 Function* function,
14 uword* target) { 13 uword* target) {
15 UNIMPLEMENTED(); 14 UNIMPLEMENTED();
16 } 15 }
17 16
18 17
19 void CodePatcher::PatchStaticCallAt(uword return_address, uword new_target) { 18 void CodePatcher::PatchStaticCallAt(uword return_address, uword new_target) {
20 UNIMPLEMENTED(); 19 UNIMPLEMENTED();
21 } 20 }
22 21
23 22
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 65
67 void CodePatcher::InsertCallAt(uword start, uword target) { 66 void CodePatcher::InsertCallAt(uword start, uword target) {
68 UNIMPLEMENTED(); 67 UNIMPLEMENTED();
69 } 68 }
70 69
71 70
72 71
73 } // namespace dart 72 } // namespace dart
74 73
75 #endif // defined TARGET_ARCH_ARM 74 #endif // defined TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « runtime/vm/code_generator.cc ('k') | runtime/vm/code_patcher_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698