| OLD | NEW |
| 1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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_CODE_STUB_ASSEMBLER_H_ | 5 #ifndef V8_CODE_STUB_ASSEMBLER_H_ |
| 6 #define V8_CODE_STUB_ASSEMBLER_H_ | 6 #define V8_CODE_STUB_ASSEMBLER_H_ |
| 7 | 7 |
| 8 #include <functional> | 8 #include <functional> |
| 9 | 9 |
| 10 #include "src/compiler/code-assembler.h" | 10 #include "src/compiler/code-assembler.h" |
| (...skipping 725 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 736 Node* IsSpecialReceiverMap(Node* map); | 736 Node* IsSpecialReceiverMap(Node* map); |
| 737 Node* IsSpecialReceiverInstanceType(Node* instance_type); | 737 Node* IsSpecialReceiverInstanceType(Node* instance_type); |
| 738 Node* IsStringInstanceType(Node* instance_type); | 738 Node* IsStringInstanceType(Node* instance_type); |
| 739 Node* IsOneByteStringInstanceType(Node* instance_type); | 739 Node* IsOneByteStringInstanceType(Node* instance_type); |
| 740 Node* IsExternalStringInstanceType(Node* instance_type); | 740 Node* IsExternalStringInstanceType(Node* instance_type); |
| 741 Node* IsShortExternalStringInstanceType(Node* instance_type); | 741 Node* IsShortExternalStringInstanceType(Node* instance_type); |
| 742 Node* IsSequentialStringInstanceType(Node* instance_type); | 742 Node* IsSequentialStringInstanceType(Node* instance_type); |
| 743 Node* IsConsStringInstanceType(Node* instance_type); | 743 Node* IsConsStringInstanceType(Node* instance_type); |
| 744 Node* IsIndirectStringInstanceType(Node* instance_type); | 744 Node* IsIndirectStringInstanceType(Node* instance_type); |
| 745 Node* IsString(Node* object); | 745 Node* IsString(Node* object); |
| 746 Node* IsJSObjectMap(Node* map); |
| 746 Node* IsJSObject(Node* object); | 747 Node* IsJSObject(Node* object); |
| 747 Node* IsJSGlobalProxy(Node* object); | 748 Node* IsJSGlobalProxy(Node* object); |
| 748 Node* IsJSReceiverInstanceType(Node* instance_type); | 749 Node* IsJSReceiverInstanceType(Node* instance_type); |
| 749 Node* IsJSReceiver(Node* object); | 750 Node* IsJSReceiver(Node* object); |
| 750 Node* IsJSReceiverMap(Node* map); | 751 Node* IsJSReceiverMap(Node* map); |
| 751 Node* IsMap(Node* object); | 752 Node* IsMap(Node* object); |
| 752 Node* IsCallableMap(Node* map); | 753 Node* IsCallableMap(Node* map); |
| 753 Node* IsDeprecatedMap(Node* map); | 754 Node* IsDeprecatedMap(Node* map); |
| 754 Node* IsCallable(Node* object); | 755 Node* IsCallable(Node* object); |
| 755 Node* IsBoolean(Node* object); | 756 Node* IsBoolean(Node* object); |
| (...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1628 } | 1629 } |
| 1629 #else | 1630 #else |
| 1630 #define CSA_SLOW_ASSERT(csa, x) ((void)0) | 1631 #define CSA_SLOW_ASSERT(csa, x) ((void)0) |
| 1631 #endif | 1632 #endif |
| 1632 | 1633 |
| 1633 DEFINE_OPERATORS_FOR_FLAGS(CodeStubAssembler::AllocationFlags); | 1634 DEFINE_OPERATORS_FOR_FLAGS(CodeStubAssembler::AllocationFlags); |
| 1634 | 1635 |
| 1635 } // namespace internal | 1636 } // namespace internal |
| 1636 } // namespace v8 | 1637 } // namespace v8 |
| 1637 #endif // V8_CODE_STUB_ASSEMBLER_H_ | 1638 #endif // V8_CODE_STUB_ASSEMBLER_H_ |
| OLD | NEW |