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

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

Issue 10912146: Finish implementing lazy deoptimization (ia32, x64). Ran tests with --deoptimize-alot. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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
« no previous file with comments | « runtime/vm/code_patcher.h ('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 {
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 UNIMPLEMENTED(); 55 UNIMPLEMENTED();
56 return false; 56 return false;
57 } 57 }
58 58
59 59
60 RawICData* CodePatcher::GetInstanceCallIcDataAt(uword return_address) { 60 RawICData* CodePatcher::GetInstanceCallIcDataAt(uword return_address) {
61 UNIMPLEMENTED(); 61 UNIMPLEMENTED();
62 return NULL; 62 return NULL;
63 } 63 }
64 64
65 RawArray* CodePatcher::GetTypeTestArray(uword instruction_address) {
66 UNIMPLEMENTED();
67 return NULL;
68 }
69
70 65
71 void CodePatcher::SetTypeTestArray(uword instruction_address, 66
72 const Array& value) { 67 void CodePatcher::InsertCallAt(uword start, uword target) {
73 UNIMPLEMENTED(); 68 UNIMPLEMENTED();
74 } 69 }
75 70
76 71
72
77 } // namespace dart 73 } // namespace dart
78 74
79 #endif // defined TARGET_ARCH_ARM 75 #endif // defined TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « runtime/vm/code_patcher.h ('k') | runtime/vm/code_patcher_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698