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

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

Issue 1429303005: Add fast Smi op version of switchable instance calls. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 1 month 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/flow_graph_compiler_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 18 matching lines...) Expand all
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(ICLookup) \
39 V(ICSmiAddLookup) \
40 V(ICSmiSubLookup) \
41 V(ICSmiEqualLookup) \
39 V(MegamorphicLookup) \ 42 V(MegamorphicLookup) \
40 V(FixAllocationStubTarget) \ 43 V(FixAllocationStubTarget) \
41 V(Deoptimize) \ 44 V(Deoptimize) \
42 V(DeoptimizeLazy) \ 45 V(DeoptimizeLazy) \
43 V(UnoptimizedIdenticalWithNumberCheck) \ 46 V(UnoptimizedIdenticalWithNumberCheck) \
44 V(OptimizedIdenticalWithNumberCheck) \ 47 V(OptimizedIdenticalWithNumberCheck) \
45 V(ICCallBreakpoint) \ 48 V(ICCallBreakpoint) \
46 V(RuntimeCallBreakpoint) \ 49 V(RuntimeCallBreakpoint) \
47 V(AllocateArray) \ 50 V(AllocateArray) \
48 V(AllocateContext) \ 51 V(AllocateContext) \
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 187
185 188
186 enum DeoptStubKind { 189 enum DeoptStubKind {
187 kLazyDeopt, 190 kLazyDeopt,
188 kEagerDeopt 191 kEagerDeopt
189 }; 192 };
190 193
191 } // namespace dart 194 } // namespace dart
192 195
193 #endif // VM_STUB_CODE_H_ 196 #endif // VM_STUB_CODE_H_
OLDNEW
« no previous file with comments | « runtime/vm/flow_graph_compiler_x64.cc ('k') | runtime/vm/stub_code_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698