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

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

Issue 1799793002: Precompilation: Have instances calls load the entry point and Code object from the ic data array in… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
« no previous file with comments | « runtime/vm/snapshot.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 17 matching lines...) Expand all
28 V(PrintStopMessage) \ 28 V(PrintStopMessage) \
29 V(CallToRuntime) \ 29 V(CallToRuntime) \
30 V(LazyCompile) \ 30 V(LazyCompile) \
31 V(CallBootstrapCFunction) \ 31 V(CallBootstrapCFunction) \
32 V(CallNativeCFunction) \ 32 V(CallNativeCFunction) \
33 V(FixCallersTarget) \ 33 V(FixCallersTarget) \
34 V(CallStaticFunction) \ 34 V(CallStaticFunction) \
35 V(OptimizeFunction) \ 35 V(OptimizeFunction) \
36 V(InvokeDartCode) \ 36 V(InvokeDartCode) \
37 V(DebugStepCheck) \ 37 V(DebugStepCheck) \
38 V(ICLookup) \ 38 V(ICLookupThroughFunction) \
39 V(ICLookupThroughCode) \
39 V(MegamorphicLookup) \ 40 V(MegamorphicLookup) \
40 V(FixAllocationStubTarget) \ 41 V(FixAllocationStubTarget) \
41 V(Deoptimize) \ 42 V(Deoptimize) \
42 V(DeoptimizeLazy) \ 43 V(DeoptimizeLazy) \
43 V(UnoptimizedIdenticalWithNumberCheck) \ 44 V(UnoptimizedIdenticalWithNumberCheck) \
44 V(OptimizedIdenticalWithNumberCheck) \ 45 V(OptimizedIdenticalWithNumberCheck) \
45 V(ICCallBreakpoint) \ 46 V(ICCallBreakpoint) \
46 V(RuntimeCallBreakpoint) \ 47 V(RuntimeCallBreakpoint) \
47 V(AllocateArray) \ 48 V(AllocateArray) \
48 V(AllocateContext) \ 49 V(AllocateContext) \
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 185
185 186
186 enum DeoptStubKind { 187 enum DeoptStubKind {
187 kLazyDeopt, 188 kLazyDeopt,
188 kEagerDeopt 189 kEagerDeopt
189 }; 190 };
190 191
191 } // namespace dart 192 } // namespace dart
192 193
193 #endif // VM_STUB_CODE_H_ 194 #endif // VM_STUB_CODE_H_
OLDNEW
« no previous file with comments | « runtime/vm/snapshot.cc ('k') | runtime/vm/stub_code_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698