OLD | NEW |
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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 CPP(ConsoleDir) \ | 356 CPP(ConsoleDir) \ |
357 CPP(ConsoleDirXml) \ | 357 CPP(ConsoleDirXml) \ |
358 CPP(ConsoleTable) \ | 358 CPP(ConsoleTable) \ |
359 CPP(ConsoleTrace) \ | 359 CPP(ConsoleTrace) \ |
360 CPP(ConsoleGroup) \ | 360 CPP(ConsoleGroup) \ |
361 CPP(ConsoleGroupCollapsed) \ | 361 CPP(ConsoleGroupCollapsed) \ |
362 CPP(ConsoleGroupEnd) \ | 362 CPP(ConsoleGroupEnd) \ |
363 CPP(ConsoleClear) \ | 363 CPP(ConsoleClear) \ |
364 CPP(ConsoleCount) \ | 364 CPP(ConsoleCount) \ |
365 CPP(ConsoleAssert) \ | 365 CPP(ConsoleAssert) \ |
| 366 TFJ(FastConsoleAssert, SharedFunctionInfo::kDontAdaptArgumentsSentinel) \ |
366 CPP(ConsoleMarkTimeline) \ | 367 CPP(ConsoleMarkTimeline) \ |
367 CPP(ConsoleProfile) \ | 368 CPP(ConsoleProfile) \ |
368 CPP(ConsoleProfileEnd) \ | 369 CPP(ConsoleProfileEnd) \ |
369 CPP(ConsoleTimeline) \ | 370 CPP(ConsoleTimeline) \ |
370 CPP(ConsoleTimelineEnd) \ | 371 CPP(ConsoleTimelineEnd) \ |
371 CPP(ConsoleTime) \ | 372 CPP(ConsoleTime) \ |
372 CPP(ConsoleTimeEnd) \ | 373 CPP(ConsoleTimeEnd) \ |
373 CPP(ConsoleTimeStamp) \ | 374 CPP(ConsoleTimeStamp) \ |
374 \ | 375 \ |
375 /* DataView */ \ | 376 /* DataView */ \ |
(...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1054 #define BUILTIN_LIST_TFS(V) \ | 1055 #define BUILTIN_LIST_TFS(V) \ |
1055 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ | 1056 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ |
1056 V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN) | 1057 V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN) |
1057 | 1058 |
1058 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) | 1059 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) |
1059 | 1060 |
1060 } // namespace internal | 1061 } // namespace internal |
1061 } // namespace v8 | 1062 } // namespace v8 |
1062 | 1063 |
1063 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ | 1064 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ |
OLD | NEW |