| 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.h" | 10 #include "src/ast.h" |
| (...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 503 F(IsDate) \ | 503 F(IsDate) \ |
| 504 F(DateField) \ | 504 F(DateField) \ |
| 505 F(StringCharFromCode) \ | 505 F(StringCharFromCode) \ |
| 506 F(StringCharAt) \ | 506 F(StringCharAt) \ |
| 507 F(OneByteSeqStringSetChar) \ | 507 F(OneByteSeqStringSetChar) \ |
| 508 F(TwoByteSeqStringSetChar) \ | 508 F(TwoByteSeqStringSetChar) \ |
| 509 F(ObjectEquals) \ | 509 F(ObjectEquals) \ |
| 510 F(IsFunction) \ | 510 F(IsFunction) \ |
| 511 F(IsSpecObject) \ | 511 F(IsSpecObject) \ |
| 512 F(IsSimdValue) \ | 512 F(IsSimdValue) \ |
| 513 F(IsStringWrapperSafeForDefaultValueOf) \ | |
| 514 F(MathPow) \ | 513 F(MathPow) \ |
| 515 F(IsMinusZero) \ | 514 F(IsMinusZero) \ |
| 516 F(HasCachedArrayIndex) \ | 515 F(HasCachedArrayIndex) \ |
| 517 F(GetCachedArrayIndex) \ | 516 F(GetCachedArrayIndex) \ |
| 518 F(FastOneByteArrayJoin) \ | 517 F(FastOneByteArrayJoin) \ |
| 519 F(GeneratorNext) \ | 518 F(GeneratorNext) \ |
| 520 F(GeneratorThrow) \ | 519 F(GeneratorThrow) \ |
| 521 F(DebugBreakInOptimizedCode) \ | 520 F(DebugBreakInOptimizedCode) \ |
| 522 F(ClassOf) \ | 521 F(ClassOf) \ |
| 523 F(StringCharCodeAt) \ | 522 F(StringCharCodeAt) \ |
| (...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1084 | 1083 |
| 1085 Address start_; | 1084 Address start_; |
| 1086 Address instruction_start_; | 1085 Address instruction_start_; |
| 1087 uint32_t length_; | 1086 uint32_t length_; |
| 1088 }; | 1087 }; |
| 1089 | 1088 |
| 1090 | 1089 |
| 1091 } } // namespace v8::internal | 1090 } } // namespace v8::internal |
| 1092 | 1091 |
| 1093 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ | 1092 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ |
| OLD | NEW |