| 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 491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 502 F(SetValueOf) \ | 502 F(SetValueOf) \ |
| 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(IsObject) \ | 510 F(IsObject) \ |
| 511 F(IsFunction) \ | 511 F(IsFunction) \ |
| 512 F(IsUndetectableObject) \ | |
| 513 F(IsSpecObject) \ | 512 F(IsSpecObject) \ |
| 514 F(IsSimdValue) \ | 513 F(IsSimdValue) \ |
| 515 F(IsStringWrapperSafeForDefaultValueOf) \ | 514 F(IsStringWrapperSafeForDefaultValueOf) \ |
| 516 F(MathPow) \ | 515 F(MathPow) \ |
| 517 F(IsMinusZero) \ | 516 F(IsMinusZero) \ |
| 518 F(HasCachedArrayIndex) \ | 517 F(HasCachedArrayIndex) \ |
| 519 F(GetCachedArrayIndex) \ | 518 F(GetCachedArrayIndex) \ |
| 520 F(FastOneByteArrayJoin) \ | 519 F(FastOneByteArrayJoin) \ |
| 521 F(GeneratorNext) \ | 520 F(GeneratorNext) \ |
| 522 F(GeneratorThrow) \ | 521 F(GeneratorThrow) \ |
| (...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1079 | 1078 |
| 1080 Address start_; | 1079 Address start_; |
| 1081 Address instruction_start_; | 1080 Address instruction_start_; |
| 1082 uint32_t length_; | 1081 uint32_t length_; |
| 1083 }; | 1082 }; |
| 1084 | 1083 |
| 1085 | 1084 |
| 1086 } } // namespace v8::internal | 1085 } } // namespace v8::internal |
| 1087 | 1086 |
| 1088 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ | 1087 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ |
| OLD | NEW |