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 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
528 F(SetValueOf) \ | 528 F(SetValueOf) \ |
529 F(IsDate) \ | 529 F(IsDate) \ |
530 F(StringCharFromCode) \ | 530 F(StringCharFromCode) \ |
531 F(StringCharAt) \ | 531 F(StringCharAt) \ |
532 F(OneByteSeqStringSetChar) \ | 532 F(OneByteSeqStringSetChar) \ |
533 F(TwoByteSeqStringSetChar) \ | 533 F(TwoByteSeqStringSetChar) \ |
534 F(ObjectEquals) \ | 534 F(ObjectEquals) \ |
535 F(IsJSReceiver) \ | 535 F(IsJSReceiver) \ |
536 F(IsSimdValue) \ | 536 F(IsSimdValue) \ |
537 F(MathPow) \ | 537 F(MathPow) \ |
538 F(IsMinusZero) \ | |
539 F(HasCachedArrayIndex) \ | 538 F(HasCachedArrayIndex) \ |
540 F(GetCachedArrayIndex) \ | 539 F(GetCachedArrayIndex) \ |
541 F(GetSuperConstructor) \ | 540 F(GetSuperConstructor) \ |
542 F(FastOneByteArrayJoin) \ | 541 F(FastOneByteArrayJoin) \ |
543 F(GeneratorNext) \ | 542 F(GeneratorNext) \ |
544 F(GeneratorReturn) \ | 543 F(GeneratorReturn) \ |
545 F(GeneratorThrow) \ | 544 F(GeneratorThrow) \ |
546 F(DebugBreakInOptimizedCode) \ | 545 F(DebugBreakInOptimizedCode) \ |
547 F(ClassOf) \ | 546 F(ClassOf) \ |
548 F(StringCharCodeAt) \ | 547 F(StringCharCodeAt) \ |
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1091 Address start_; | 1090 Address start_; |
1092 Address instruction_start_; | 1091 Address instruction_start_; |
1093 uint32_t length_; | 1092 uint32_t length_; |
1094 }; | 1093 }; |
1095 | 1094 |
1096 | 1095 |
1097 } // namespace internal | 1096 } // namespace internal |
1098 } // namespace v8 | 1097 } // namespace v8 |
1099 | 1098 |
1100 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ | 1099 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ |
OLD | NEW |