| 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 756 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 767 Node* InstanceTypeEqual(Node* instance_type, int type); | 767 Node* InstanceTypeEqual(Node* instance_type, int type); |
| 768 Node* IsAccessorInfo(Node* object); | 768 Node* IsAccessorInfo(Node* object); |
| 769 Node* IsAccessorPair(Node* object); | 769 Node* IsAccessorPair(Node* object); |
| 770 Node* IsAllocationSite(Node* object); | 770 Node* IsAllocationSite(Node* object); |
| 771 Node* IsAnyHeapNumber(Node* object); | 771 Node* IsAnyHeapNumber(Node* object); |
| 772 Node* IsBoolean(Node* object); | 772 Node* IsBoolean(Node* object); |
| 773 Node* IsCallableMap(Node* map); | 773 Node* IsCallableMap(Node* map); |
| 774 Node* IsCallable(Node* object); | 774 Node* IsCallable(Node* object); |
| 775 Node* IsConsStringInstanceType(Node* instance_type); | 775 Node* IsConsStringInstanceType(Node* instance_type); |
| 776 Node* IsConstructorMap(Node* map); | 776 Node* IsConstructorMap(Node* map); |
| 777 Node* IsConstructor(Node* object); |
| 777 Node* IsDeprecatedMap(Node* map); | 778 Node* IsDeprecatedMap(Node* map); |
| 778 Node* IsDictionary(Node* object); | 779 Node* IsDictionary(Node* object); |
| 779 Node* IsExternalStringInstanceType(Node* instance_type); | 780 Node* IsExternalStringInstanceType(Node* instance_type); |
| 780 Node* IsFeedbackVector(Node* object); | 781 Node* IsFeedbackVector(Node* object); |
| 781 Node* IsFixedArray(Node* object); | 782 Node* IsFixedArray(Node* object); |
| 782 Node* IsFixedArrayWithKind(Node* object, ElementsKind kind); | 783 Node* IsFixedArrayWithKind(Node* object, ElementsKind kind); |
| 783 Node* IsFixedArrayWithKindOrEmpty(Node* object, ElementsKind kind); | 784 Node* IsFixedArrayWithKindOrEmpty(Node* object, ElementsKind kind); |
| 784 Node* IsFixedDoubleArray(Node* object); | 785 Node* IsFixedDoubleArray(Node* object); |
| 785 Node* IsFixedTypedArray(Node* object); | 786 Node* IsFixedTypedArray(Node* object); |
| 786 Node* IsHashTable(Node* object); | 787 Node* IsHashTable(Node* object); |
| (...skipping 911 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1698 } | 1699 } |
| 1699 #else | 1700 #else |
| 1700 #define CSA_SLOW_ASSERT(csa, x) ((void)0) | 1701 #define CSA_SLOW_ASSERT(csa, x) ((void)0) |
| 1701 #endif | 1702 #endif |
| 1702 | 1703 |
| 1703 DEFINE_OPERATORS_FOR_FLAGS(CodeStubAssembler::AllocationFlags); | 1704 DEFINE_OPERATORS_FOR_FLAGS(CodeStubAssembler::AllocationFlags); |
| 1704 | 1705 |
| 1705 } // namespace internal | 1706 } // namespace internal |
| 1706 } // namespace v8 | 1707 } // namespace v8 |
| 1707 #endif // V8_CODE_STUB_ASSEMBLER_H_ | 1708 #endif // V8_CODE_STUB_ASSEMBLER_H_ |
| OLD | NEW |