OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |