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

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

Issue 2741553002: Do not rely on code patching on DBC for lazy deoptimization. (Closed)
Patch Set: Cleanups Created 3 years, 9 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
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" // 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 #include "vm/flow_graph_compiler.h" 10 #include "vm/flow_graph_compiler.h"
(...skipping 12 matching lines...) Expand all
23 23
24 void CodePatcher::PatchStaticCallAt(uword return_address, 24 void CodePatcher::PatchStaticCallAt(uword return_address,
25 const Code& code, 25 const Code& code,
26 const Code& new_target) { 26 const Code& new_target) {
27 ASSERT(code.ContainsInstructionAt(return_address)); 27 ASSERT(code.ContainsInstructionAt(return_address));
28 CallPattern call(return_address, code); 28 CallPattern call(return_address, code);
29 call.SetTargetCode(new_target); 29 call.SetTargetCode(new_target);
30 } 30 }
31 31
32 32
33 void CodePatcher::InsertDeoptimizationCallAt(uword start) {
34 UNREACHABLE();
35 }
36
37
38 RawCode* CodePatcher::GetInstanceCallAt(uword return_address, 33 RawCode* CodePatcher::GetInstanceCallAt(uword return_address,
39 const Code& code, 34 const Code& code,
40 ICData* ic_data) { 35 ICData* ic_data) {
41 ASSERT(code.ContainsInstructionAt(return_address)); 36 ASSERT(code.ContainsInstructionAt(return_address));
42 CallPattern call(return_address, code); 37 CallPattern call(return_address, code);
43 if (ic_data != NULL) { 38 if (ic_data != NULL) {
44 *ic_data = call.IcData(); 39 *ic_data = call.IcData();
45 } 40 }
46 return call.TargetCode(); 41 return call.TargetCode();
47 } 42 }
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 NativeFunction* target) { 106 NativeFunction* target) {
112 ASSERT(code.ContainsInstructionAt(return_address)); 107 ASSERT(code.ContainsInstructionAt(return_address));
113 NativeCallPattern call(return_address, code); 108 NativeCallPattern call(return_address, code);
114 *target = call.native_function(); 109 *target = call.native_function();
115 return call.target(); 110 return call.target();
116 } 111 }
117 112
118 } // namespace dart 113 } // namespace dart
119 114
120 #endif // defined TARGET_ARCH_ARM 115 #endif // defined TARGET_ARCH_ARM
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698