| 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 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 505 #define FOR_EACH_FULL_CODE_INTRINSIC(F) \ | 505 #define FOR_EACH_FULL_CODE_INTRINSIC(F) \ |
| 506 F(IsSmi) \ | 506 F(IsSmi) \ |
| 507 F(IsArray) \ | 507 F(IsArray) \ |
| 508 F(IsTypedArray) \ | 508 F(IsTypedArray) \ |
| 509 F(IsRegExp) \ | 509 F(IsRegExp) \ |
| 510 F(IsJSProxy) \ | 510 F(IsJSProxy) \ |
| 511 F(Call) \ | 511 F(Call) \ |
| 512 F(NewObject) \ | 512 F(NewObject) \ |
| 513 F(ValueOf) \ | 513 F(ValueOf) \ |
| 514 F(StringCharFromCode) \ | 514 F(StringCharFromCode) \ |
| 515 F(StringCharAt) \ | |
| 516 F(OneByteSeqStringSetChar) \ | 515 F(OneByteSeqStringSetChar) \ |
| 517 F(TwoByteSeqStringSetChar) \ | 516 F(TwoByteSeqStringSetChar) \ |
| 518 F(IsJSReceiver) \ | 517 F(IsJSReceiver) \ |
| 519 F(MathPow) \ | 518 F(MathPow) \ |
| 520 F(HasCachedArrayIndex) \ | 519 F(HasCachedArrayIndex) \ |
| 521 F(GetCachedArrayIndex) \ | 520 F(GetCachedArrayIndex) \ |
| 522 F(GetSuperConstructor) \ | 521 F(GetSuperConstructor) \ |
| 523 F(DebugBreakInOptimizedCode) \ | 522 F(DebugBreakInOptimizedCode) \ |
| 524 F(ClassOf) \ | 523 F(ClassOf) \ |
| 525 F(StringCharCodeAt) \ | 524 F(StringCharCodeAt) \ |
| (...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1058 Address start_; | 1057 Address start_; |
| 1059 Address instruction_start_; | 1058 Address instruction_start_; |
| 1060 uint32_t length_; | 1059 uint32_t length_; |
| 1061 }; | 1060 }; |
| 1062 | 1061 |
| 1063 | 1062 |
| 1064 } // namespace internal | 1063 } // namespace internal |
| 1065 } // namespace v8 | 1064 } // namespace v8 |
| 1066 | 1065 |
| 1067 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ | 1066 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ |
| OLD | NEW |