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

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

Issue 2861983002: [ignition] Optimize JSGenerator creation (Closed)
Patch Set: rebase Created 3 years, 7 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 | « src/builtins/builtins-constructor-gen.cc ('k') | src/builtins/builtins-object-gen.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 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 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
487 ASM(FunctionPrototypeCall) \ 487 ASM(FunctionPrototypeCall) \
488 /* ES6 #sec-function.prototype-@@hasinstance */ \ 488 /* ES6 #sec-function.prototype-@@hasinstance */ \
489 TFJ(FunctionPrototypeHasInstance, 1, kV) \ 489 TFJ(FunctionPrototypeHasInstance, 1, kV) \
490 /* ES6 #sec-function.prototype.tostring */ \ 490 /* ES6 #sec-function.prototype.tostring */ \
491 CPP(FunctionPrototypeToString) \ 491 CPP(FunctionPrototypeToString) \
492 \ 492 \
493 /* Belongs to Objects but is a dependency of GeneratorPrototypeResume */ \ 493 /* Belongs to Objects but is a dependency of GeneratorPrototypeResume */ \
494 TFS(CreateIterResultObject, kValue, kDone) \ 494 TFS(CreateIterResultObject, kValue, kDone) \
495 \ 495 \
496 /* Generator and Async */ \ 496 /* Generator and Async */ \
497 TFS(CreateGeneratorObject, kClosure, kReceiver) \
497 CPP(GeneratorFunctionConstructor) \ 498 CPP(GeneratorFunctionConstructor) \
498 /* ES6 #sec-generator.prototype.next */ \ 499 /* ES6 #sec-generator.prototype.next */ \
499 TFJ(GeneratorPrototypeNext, 1, kValue) \ 500 TFJ(GeneratorPrototypeNext, 1, kValue) \
500 /* ES6 #sec-generator.prototype.return */ \ 501 /* ES6 #sec-generator.prototype.return */ \
501 TFJ(GeneratorPrototypeReturn, 1, kValue) \ 502 TFJ(GeneratorPrototypeReturn, 1, kValue) \
502 /* ES6 #sec-generator.prototype.throw */ \ 503 /* ES6 #sec-generator.prototype.throw */ \
503 TFJ(GeneratorPrototypeThrow, 1, kException) \ 504 TFJ(GeneratorPrototypeThrow, 1, kException) \
504 CPP(AsyncFunctionConstructor) \ 505 CPP(AsyncFunctionConstructor) \
505 \ 506 \
506 /* Global object */ \ 507 /* Global object */ \
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
1056 #define BUILTIN_LIST_TFS(V) \ 1057 #define BUILTIN_LIST_TFS(V) \
1057 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ 1058 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \
1058 V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN) 1059 V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN)
1059 1060
1060 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) 1061 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy)
1061 1062
1062 } // namespace internal 1063 } // namespace internal
1063 } // namespace v8 1064 } // namespace v8
1064 1065
1065 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ 1066 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_
OLDNEW
« no previous file with comments | « src/builtins/builtins-constructor-gen.cc ('k') | src/builtins/builtins-object-gen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698