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

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

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/object.cc ('k') | runtime/vm/stub_code_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 #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 12 matching lines...) Expand all
23 V(CallToRuntime) \ 23 V(CallToRuntime) \
24 V(PrintStopMessage) \ 24 V(PrintStopMessage) \
25 V(CallNativeCFunction) \ 25 V(CallNativeCFunction) \
26 V(AllocateArray) \ 26 V(AllocateArray) \
27 V(CallNoSuchMethodFunction) \ 27 V(CallNoSuchMethodFunction) \
28 V(InstanceFunctionLookup) \ 28 V(InstanceFunctionLookup) \
29 V(CallStaticFunction) \ 29 V(CallStaticFunction) \
30 V(CallClosureFunction) \ 30 V(CallClosureFunction) \
31 V(FixCallersTarget) \ 31 V(FixCallersTarget) \
32 V(Deoptimize) \ 32 V(Deoptimize) \
33 V(DeoptimizeLazy) \
33 V(BreakpointStatic) \ 34 V(BreakpointStatic) \
34 V(BreakpointReturn) \ 35 V(BreakpointReturn) \
35 V(Subtype1TestCache) \ 36 V(Subtype1TestCache) \
36 V(Subtype2TestCache) \ 37 V(Subtype2TestCache) \
37 V(Subtype3TestCache) \ 38 V(Subtype3TestCache) \
38 V(GetStackPointer) \ 39 V(GetStackPointer) \
39 V(JumpToExceptionHandler) \ 40 V(JumpToExceptionHandler) \
40 V(JumpToErrorHandler) \ 41 V(JumpToErrorHandler) \
41 42
42 // Is it permitted for the stubs above to refer to Object::null(), which is 43 // Is it permitted for the stubs above to refer to Object::null(), which is
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 const Class& cls); 180 const Class& cls);
180 static void GenerateAllocationStubForClosure(Assembler* assembler, 181 static void GenerateAllocationStubForClosure(Assembler* assembler,
181 const Function& func); 182 const Function& func);
182 static void GenerateNArgsCheckInlineCacheStub(Assembler* assembler, 183 static void GenerateNArgsCheckInlineCacheStub(Assembler* assembler,
183 intptr_t num_args); 184 intptr_t num_args);
184 }; 185 };
185 186
186 } // namespace dart 187 } // namespace dart
187 188
188 #endif // VM_STUB_CODE_H_ 189 #endif // VM_STUB_CODE_H_
OLDNEW
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/stub_code_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698