| 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 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 496 void EmitKeyedSuperCallWithLoadIC(Call* expr); | 496 void EmitKeyedSuperCallWithLoadIC(Call* expr); |
| 497 void EmitPossiblyEvalCall(Call* expr); | 497 void EmitPossiblyEvalCall(Call* expr); |
| 498 | 498 |
| 499 #define FOR_EACH_FULL_CODE_INTRINSIC(F) \ | 499 #define FOR_EACH_FULL_CODE_INTRINSIC(F) \ |
| 500 F(IsSmi) \ | 500 F(IsSmi) \ |
| 501 F(IsArray) \ | 501 F(IsArray) \ |
| 502 F(IsTypedArray) \ | 502 F(IsTypedArray) \ |
| 503 F(IsRegExp) \ | 503 F(IsRegExp) \ |
| 504 F(IsJSProxy) \ | 504 F(IsJSProxy) \ |
| 505 F(Call) \ | 505 F(Call) \ |
| 506 F(NewObject) \ |
| 506 F(ValueOf) \ | 507 F(ValueOf) \ |
| 507 F(StringCharFromCode) \ | 508 F(StringCharFromCode) \ |
| 508 F(StringCharAt) \ | 509 F(StringCharAt) \ |
| 509 F(OneByteSeqStringSetChar) \ | 510 F(OneByteSeqStringSetChar) \ |
| 510 F(TwoByteSeqStringSetChar) \ | 511 F(TwoByteSeqStringSetChar) \ |
| 511 F(IsJSReceiver) \ | 512 F(IsJSReceiver) \ |
| 512 F(MathPow) \ | 513 F(MathPow) \ |
| 513 F(HasCachedArrayIndex) \ | 514 F(HasCachedArrayIndex) \ |
| 514 F(GetCachedArrayIndex) \ | 515 F(GetCachedArrayIndex) \ |
| 515 F(GetSuperConstructor) \ | 516 F(GetSuperConstructor) \ |
| (...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1053 Address start_; | 1054 Address start_; |
| 1054 Address instruction_start_; | 1055 Address instruction_start_; |
| 1055 uint32_t length_; | 1056 uint32_t length_; |
| 1056 }; | 1057 }; |
| 1057 | 1058 |
| 1058 | 1059 |
| 1059 } // namespace internal | 1060 } // namespace internal |
| 1060 } // namespace v8 | 1061 } // namespace v8 |
| 1061 | 1062 |
| 1062 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ | 1063 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ |
| OLD | NEW |