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

Side by Side Diff: src/builtins/builtins-definitions.h

Issue 2958973003: Add exception prediction for ArrayForEachLoopLazyDeoptContinuation (Closed)
Patch Set: Renamed test per feedback Created 3 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 | « no previous file | test/debugger/regress/regress-6526.js » ('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 2017 the V8 project authors. All rights reserved. 1 // Copyright 2017 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_BUILTINS_BUILTINS_DEFINITIONS_H_ 5 #ifndef V8_BUILTINS_BUILTINS_DEFINITIONS_H_
6 #define V8_BUILTINS_BUILTINS_DEFINITIONS_H_ 6 #define V8_BUILTINS_BUILTINS_DEFINITIONS_H_
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 10
(...skipping 1090 matching lines...) Expand 10 before | Expand all | Expand 10 after
1101 V(ResolveNativePromise) \ 1101 V(ResolveNativePromise) \
1102 V(ResolvePromise) 1102 V(ResolvePromise)
1103 1103
1104 // The exception thrown in the following builtins are caught 1104 // The exception thrown in the following builtins are caught
1105 // internally and should not trigger the catch prediction heuristic. 1105 // internally and should not trigger the catch prediction heuristic.
1106 #define BUILTIN_EXCEPTION_CAUGHT_PREDICTION_LIST(V) V(PromiseHandleReject) 1106 #define BUILTIN_EXCEPTION_CAUGHT_PREDICTION_LIST(V) V(PromiseHandleReject)
1107 1107
1108 // The exception thrown in the following builtins are not caught 1108 // The exception thrown in the following builtins are not caught
1109 // internally and should trigger the catch prediction heuristic. 1109 // internally and should trigger the catch prediction heuristic.
1110 #define BUILTIN_EXCEPTION_UNCAUGHT_PREDICTION_LIST(V) \ 1110 #define BUILTIN_EXCEPTION_UNCAUGHT_PREDICTION_LIST(V) \
1111 V(ArrayForEachLoopLazyDeoptContinuation) \
1111 V(MapConstructor) \ 1112 V(MapConstructor) \
1112 V(SetConstructor) \ 1113 V(SetConstructor) \
1113 V(GeneratorPrototypeNext) \ 1114 V(GeneratorPrototypeNext) \
1114 V(GeneratorPrototypeReturn) \ 1115 V(GeneratorPrototypeReturn) \
1115 V(GeneratorPrototypeThrow) 1116 V(GeneratorPrototypeThrow)
1116 1117
1117 #define IGNORE_BUILTIN(...) 1118 #define IGNORE_BUILTIN(...)
1118 1119
1119 #define BUILTIN_LIST_ALL(V) BUILTIN_LIST(V, V, V, V, V, V, V, V) 1120 #define BUILTIN_LIST_ALL(V) BUILTIN_LIST(V, V, V, V, V, V, V, V)
1120 1121
(...skipping 20 matching lines...) Expand all
1141 #define BUILTIN_LIST_TFC(V) \ 1142 #define BUILTIN_LIST_TFC(V) \
1142 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, V, \ 1143 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, V, \
1143 IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN) 1144 IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN)
1144 1145
1145 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) 1146 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy)
1146 1147
1147 } // namespace internal 1148 } // namespace internal
1148 } // namespace v8 1149 } // namespace v8
1149 1150
1150 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ 1151 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_
OLDNEW
« no previous file with comments | « no previous file | test/debugger/regress/regress-6526.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698