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 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
678 Node* IsSpecialReceiverMap(Node* map); | 678 Node* IsSpecialReceiverMap(Node* map); |
679 Node* IsSpecialReceiverInstanceType(Node* instance_type); | 679 Node* IsSpecialReceiverInstanceType(Node* instance_type); |
680 Node* IsStringInstanceType(Node* instance_type); | 680 Node* IsStringInstanceType(Node* instance_type); |
681 Node* IsString(Node* object); | 681 Node* IsString(Node* object); |
682 Node* IsJSObject(Node* object); | 682 Node* IsJSObject(Node* object); |
683 Node* IsJSGlobalProxy(Node* object); | 683 Node* IsJSGlobalProxy(Node* object); |
684 Node* IsJSReceiverInstanceType(Node* instance_type); | 684 Node* IsJSReceiverInstanceType(Node* instance_type); |
685 Node* IsJSReceiver(Node* object); | 685 Node* IsJSReceiver(Node* object); |
686 Node* IsMap(Node* object); | 686 Node* IsMap(Node* object); |
687 Node* IsCallableMap(Node* map); | 687 Node* IsCallableMap(Node* map); |
| 688 Node* IsBoolean(Node* object); |
688 Node* IsName(Node* object); | 689 Node* IsName(Node* object); |
689 Node* IsSymbol(Node* object); | 690 Node* IsSymbol(Node* object); |
690 Node* IsPrivateSymbol(Node* object); | 691 Node* IsPrivateSymbol(Node* object); |
691 Node* IsJSValue(Node* object); | 692 Node* IsJSValue(Node* object); |
692 Node* IsJSArray(Node* object); | 693 Node* IsJSArray(Node* object); |
693 Node* IsNativeContext(Node* object); | 694 Node* IsNativeContext(Node* object); |
694 Node* IsWeakCell(Node* object); | 695 Node* IsWeakCell(Node* object); |
695 Node* IsFixedDoubleArray(Node* object); | 696 Node* IsFixedDoubleArray(Node* object); |
696 Node* IsHashTable(Node* object); | 697 Node* IsHashTable(Node* object); |
697 Node* IsDictionary(Node* object); | 698 Node* IsDictionary(Node* object); |
(...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1318 } | 1319 } |
1319 #else | 1320 #else |
1320 #define CSA_SLOW_ASSERT(csa, x) ((void)0) | 1321 #define CSA_SLOW_ASSERT(csa, x) ((void)0) |
1321 #endif | 1322 #endif |
1322 | 1323 |
1323 DEFINE_OPERATORS_FOR_FLAGS(CodeStubAssembler::AllocationFlags); | 1324 DEFINE_OPERATORS_FOR_FLAGS(CodeStubAssembler::AllocationFlags); |
1324 | 1325 |
1325 } // namespace internal | 1326 } // namespace internal |
1326 } // namespace v8 | 1327 } // namespace v8 |
1327 #endif // V8_CODE_STUB_ASSEMBLER_H_ | 1328 #endif // V8_CODE_STUB_ASSEMBLER_H_ |
OLD | NEW |