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

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

Issue 2357313003: AOT: Add a separate switchable call state for unlinked calls. (Closed)
Patch Set: . Created 4 years, 2 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
« no previous file with comments | « runtime/vm/runtime_entry_list.h ('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 19 matching lines...) Expand all
30 V(PrintStopMessage) \ 30 V(PrintStopMessage) \
31 V(CallToRuntime) \ 31 V(CallToRuntime) \
32 V(LazyCompile) \ 32 V(LazyCompile) \
33 V(CallBootstrapCFunction) \ 33 V(CallBootstrapCFunction) \
34 V(CallNativeCFunction) \ 34 V(CallNativeCFunction) \
35 V(FixCallersTarget) \ 35 V(FixCallersTarget) \
36 V(CallStaticFunction) \ 36 V(CallStaticFunction) \
37 V(OptimizeFunction) \ 37 V(OptimizeFunction) \
38 V(InvokeDartCode) \ 38 V(InvokeDartCode) \
39 V(DebugStepCheck) \ 39 V(DebugStepCheck) \
40 V(UnlinkedCall) \
40 V(MonomorphicMiss) \ 41 V(MonomorphicMiss) \
41 V(SingleTargetCall) \ 42 V(SingleTargetCall) \
42 V(ICCallThroughFunction) \ 43 V(ICCallThroughFunction) \
43 V(ICCallThroughCode) \ 44 V(ICCallThroughCode) \
44 V(MegamorphicCall) \ 45 V(MegamorphicCall) \
45 V(FixAllocationStubTarget) \ 46 V(FixAllocationStubTarget) \
46 V(Deoptimize) \ 47 V(Deoptimize) \
47 V(DeoptimizeLazy) \ 48 V(DeoptimizeLazy) \
48 V(UnoptimizedIdenticalWithNumberCheck) \ 49 V(UnoptimizedIdenticalWithNumberCheck) \
49 V(OptimizedIdenticalWithNumberCheck) \ 50 V(OptimizedIdenticalWithNumberCheck) \
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 194
194 195
195 enum DeoptStubKind { 196 enum DeoptStubKind {
196 kLazyDeopt, 197 kLazyDeopt,
197 kEagerDeopt 198 kEagerDeopt
198 }; 199 };
199 200
200 } // namespace dart 201 } // namespace dart
201 202
202 #endif // VM_STUB_CODE_H_ 203 #endif // VM_STUB_CODE_H_
OLDNEW
« no previous file with comments | « runtime/vm/runtime_entry_list.h ('k') | runtime/vm/stub_code_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698