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

Side by Side Diff: src/full-codegen/full-codegen.h

Issue 1639343005: [generators] Implement Generator.prototype.return. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@yield-star
Patch Set: Another rebase Created 4 years, 10 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/full-codegen/arm64/full-codegen-arm64.cc ('k') | src/full-codegen/full-codegen.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_FULL_CODEGEN_FULL_CODEGEN_H_ 5 #ifndef V8_FULL_CODEGEN_FULL_CODEGEN_H_
6 #define V8_FULL_CODEGEN_FULL_CODEGEN_H_ 6 #define V8_FULL_CODEGEN_FULL_CODEGEN_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/assert-scope.h" 9 #include "src/assert-scope.h"
10 #include "src/ast/ast.h" 10 #include "src/ast/ast.h"
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 F(ObjectEquals) \ 489 F(ObjectEquals) \
490 F(IsJSReceiver) \ 490 F(IsJSReceiver) \
491 F(IsSimdValue) \ 491 F(IsSimdValue) \
492 F(MathPow) \ 492 F(MathPow) \
493 F(IsMinusZero) \ 493 F(IsMinusZero) \
494 F(HasCachedArrayIndex) \ 494 F(HasCachedArrayIndex) \
495 F(GetCachedArrayIndex) \ 495 F(GetCachedArrayIndex) \
496 F(GetSuperConstructor) \ 496 F(GetSuperConstructor) \
497 F(FastOneByteArrayJoin) \ 497 F(FastOneByteArrayJoin) \
498 F(GeneratorNext) \ 498 F(GeneratorNext) \
499 F(GeneratorReturn) \
499 F(GeneratorThrow) \ 500 F(GeneratorThrow) \
500 F(DebugBreakInOptimizedCode) \ 501 F(DebugBreakInOptimizedCode) \
501 F(ClassOf) \ 502 F(ClassOf) \
502 F(StringCharCodeAt) \ 503 F(StringCharCodeAt) \
503 F(SubString) \ 504 F(SubString) \
504 F(RegExpExec) \ 505 F(RegExpExec) \
505 F(RegExpConstructResult) \ 506 F(RegExpConstructResult) \
506 F(ToInteger) \ 507 F(ToInteger) \
507 F(NumberToString) \ 508 F(NumberToString) \
508 F(ToString) \ 509 F(ToString) \
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after
1042 Address start_; 1043 Address start_;
1043 Address instruction_start_; 1044 Address instruction_start_;
1044 uint32_t length_; 1045 uint32_t length_;
1045 }; 1046 };
1046 1047
1047 1048
1048 } // namespace internal 1049 } // namespace internal
1049 } // namespace v8 1050 } // namespace v8
1050 1051
1051 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ 1052 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/full-codegen/arm64/full-codegen-arm64.cc ('k') | src/full-codegen/full-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698