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

Side by Side Diff: runtime/vm/stub_code.h

Issue 339183010: Specialize breakpoint stubs by set of live registers of the stubs they are intercepting. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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/runtime_entry_x64.cc ('k') | runtime/vm/stub_code_arm.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 #ifndef VM_STUB_CODE_H_ 5 #ifndef VM_STUB_CODE_H_
6 #define VM_STUB_CODE_H_ 6 #define VM_STUB_CODE_H_
7 7
8 #include "vm/allocation.h" 8 #include "vm/allocation.h"
9 #include "vm/assembler.h" 9 #include "vm/assembler.h"
10 10
(...skipping 11 matching lines...) Expand all
22 #define VM_STUB_CODE_LIST(V) \ 22 #define VM_STUB_CODE_LIST(V) \
23 V(PrintStopMessage) \ 23 V(PrintStopMessage) \
24 V(CallToRuntime) \ 24 V(CallToRuntime) \
25 V(LazyCompile) \ 25 V(LazyCompile) \
26 V(CallBootstrapCFunction) \ 26 V(CallBootstrapCFunction) \
27 V(CallNativeCFunction) \ 27 V(CallNativeCFunction) \
28 V(CallStaticFunction) \ 28 V(CallStaticFunction) \
29 V(FixCallersTarget) \ 29 V(FixCallersTarget) \
30 V(Deoptimize) \ 30 V(Deoptimize) \
31 V(DeoptimizeLazy) \ 31 V(DeoptimizeLazy) \
32 V(BreakpointRuntime) \ 32 V(ICCallBreakpoint) \
33 V(ClosureCallBreakpoint) \
34 V(RuntimeCallBreakpoint) \
33 V(DebugStepCheck) \ 35 V(DebugStepCheck) \
34 V(Subtype1TestCache) \ 36 V(Subtype1TestCache) \
35 V(Subtype2TestCache) \ 37 V(Subtype2TestCache) \
36 V(Subtype3TestCache) \ 38 V(Subtype3TestCache) \
37 V(GetStackPointer) \ 39 V(GetStackPointer) \
38 V(JumpToExceptionHandler) \ 40 V(JumpToExceptionHandler) \
39 V(UnoptimizedIdenticalWithNumberCheck) \ 41 V(UnoptimizedIdenticalWithNumberCheck) \
40 V(OptimizedIdenticalWithNumberCheck) \ 42 V(OptimizedIdenticalWithNumberCheck) \
41 43
42 // Is it permitted for the stubs above to refer to Object::null(), which is 44 // Is it permitted for the stubs above to refer to Object::null(), which is
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 Assembler* assembler, 205 Assembler* assembler,
204 const Register left, 206 const Register left,
205 const Register right, 207 const Register right,
206 const Register temp1 = kNoRegister, 208 const Register temp1 = kNoRegister,
207 const Register temp2 = kNoRegister); 209 const Register temp2 = kNoRegister);
208 }; 210 };
209 211
210 } // namespace dart 212 } // namespace dart
211 213
212 #endif // VM_STUB_CODE_H_ 214 #endif // VM_STUB_CODE_H_
OLDNEW
« no previous file with comments | « runtime/vm/runtime_entry_x64.cc ('k') | runtime/vm/stub_code_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698