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 754 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
765 Node* IsMap(Node* object); | 765 Node* IsMap(Node* object); |
766 Node* IsCallableMap(Node* map); | 766 Node* IsCallableMap(Node* map); |
767 Node* IsDeprecatedMap(Node* map); | 767 Node* IsDeprecatedMap(Node* map); |
768 Node* IsCallable(Node* object); | 768 Node* IsCallable(Node* object); |
769 Node* IsBoolean(Node* object); | 769 Node* IsBoolean(Node* object); |
770 Node* IsPropertyCell(Node* object); | 770 Node* IsPropertyCell(Node* object); |
771 Node* IsAccessorInfo(Node* object); | 771 Node* IsAccessorInfo(Node* object); |
772 Node* IsAccessorPair(Node* object); | 772 Node* IsAccessorPair(Node* object); |
773 Node* IsHeapNumber(Node* object); | 773 Node* IsHeapNumber(Node* object); |
774 Node* IsName(Node* object); | 774 Node* IsName(Node* object); |
| 775 Node* IsSymbolInstanceType(Node* instance_type); |
775 Node* IsSymbol(Node* object); | 776 Node* IsSymbol(Node* object); |
776 Node* IsPrivateSymbol(Node* object); | 777 Node* IsPrivateSymbol(Node* object); |
777 Node* IsJSValueInstanceType(Node* instance_type); | 778 Node* IsJSValueInstanceType(Node* instance_type); |
778 Node* IsJSValue(Node* object); | 779 Node* IsJSValue(Node* object); |
779 Node* IsJSValueMap(Node* map); | 780 Node* IsJSValueMap(Node* map); |
780 Node* IsJSArrayInstanceType(Node* instance_type); | 781 Node* IsJSArrayInstanceType(Node* instance_type); |
781 Node* IsJSArray(Node* object); | 782 Node* IsJSArray(Node* object); |
782 Node* IsJSArrayMap(Node* object); | 783 Node* IsJSArrayMap(Node* object); |
783 Node* IsNativeContext(Node* object); | 784 Node* IsNativeContext(Node* object); |
784 Node* IsWeakCell(Node* object); | 785 Node* IsWeakCell(Node* object); |
(...skipping 870 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1655 } | 1656 } |
1656 #else | 1657 #else |
1657 #define CSA_SLOW_ASSERT(csa, x) ((void)0) | 1658 #define CSA_SLOW_ASSERT(csa, x) ((void)0) |
1658 #endif | 1659 #endif |
1659 | 1660 |
1660 DEFINE_OPERATORS_FOR_FLAGS(CodeStubAssembler::AllocationFlags); | 1661 DEFINE_OPERATORS_FOR_FLAGS(CodeStubAssembler::AllocationFlags); |
1661 | 1662 |
1662 } // namespace internal | 1663 } // namespace internal |
1663 } // namespace v8 | 1664 } // namespace v8 |
1664 #endif // V8_CODE_STUB_ASSEMBLER_H_ | 1665 #endif // V8_CODE_STUB_ASSEMBLER_H_ |
OLD | NEW |