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

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

Issue 2149023002: VM: Array bounds checks that don't deoptimize for precompiled code. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: merge Created 4 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
« no previous file with comments | « runtime/vm/precompiler.cc ('k') | no next file » | 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_RUNTIME_ENTRY_LIST_H_ 5 #ifndef VM_RUNTIME_ENTRY_LIST_H_
6 #define VM_RUNTIME_ENTRY_LIST_H_ 6 #define VM_RUNTIME_ENTRY_LIST_H_
7 7
8 namespace dart { 8 namespace dart {
9 9
10 #define RUNTIME_ENTRY_LIST(V) \ 10 #define RUNTIME_ENTRY_LIST(V) \
(...skipping 15 matching lines...) Expand all
26 V(BadTypeError) \ 26 V(BadTypeError) \
27 V(NonBoolTypeError) \ 27 V(NonBoolTypeError) \
28 V(InstantiateType) \ 28 V(InstantiateType) \
29 V(InstantiateTypeArguments) \ 29 V(InstantiateTypeArguments) \
30 V(InvokeClosureNoSuchMethod) \ 30 V(InvokeClosureNoSuchMethod) \
31 V(InvokeNoSuchMethodDispatcher) \ 31 V(InvokeNoSuchMethodDispatcher) \
32 V(MegamorphicCacheMissHandler) \ 32 V(MegamorphicCacheMissHandler) \
33 V(OptimizeInvokedFunction) \ 33 V(OptimizeInvokedFunction) \
34 V(TraceICCall) \ 34 V(TraceICCall) \
35 V(PatchStaticCall) \ 35 V(PatchStaticCall) \
36 V(RangeError) \
36 V(ReThrow) \ 37 V(ReThrow) \
37 V(StackOverflow) \ 38 V(StackOverflow) \
38 V(Throw) \ 39 V(Throw) \
39 V(TraceFunctionEntry) \ 40 V(TraceFunctionEntry) \
40 V(TraceFunctionExit) \ 41 V(TraceFunctionExit) \
41 V(DeoptimizeMaterialize) \ 42 V(DeoptimizeMaterialize) \
42 V(UpdateFieldCid) \ 43 V(UpdateFieldCid) \
43 V(InitStaticField) \ 44 V(InitStaticField) \
44 V(GrowRegExpStack) \ 45 V(GrowRegExpStack) \
45 V(CompileFunction) \ 46 V(CompileFunction) \
(...skipping 16 matching lines...) Expand all
62 V(double, LibcAcos, double) \ 63 V(double, LibcAcos, double) \
63 V(double, LibcAsin, double) \ 64 V(double, LibcAsin, double) \
64 V(double, LibcAtan, double) \ 65 V(double, LibcAtan, double) \
65 V(double, LibcAtan2, double, double) \ 66 V(double, LibcAtan2, double, double) \
66 V(RawBool*, CaseInsensitiveCompareUC16, \ 67 V(RawBool*, CaseInsensitiveCompareUC16, \
67 RawString*, RawSmi*, RawSmi*, RawSmi*) \ 68 RawString*, RawSmi*, RawSmi*, RawSmi*) \
68 69
69 } // namespace dart 70 } // namespace dart
70 71
71 #endif // VM_RUNTIME_ENTRY_LIST_H_ 72 #endif // VM_RUNTIME_ENTRY_LIST_H_
OLDNEW
« no previous file with comments | « runtime/vm/precompiler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698