| 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 679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 690 Node* IsSpecialReceiverInstanceType(Node* instance_type); | 690 Node* IsSpecialReceiverInstanceType(Node* instance_type); |
| 691 Node* IsStringInstanceType(Node* instance_type); | 691 Node* IsStringInstanceType(Node* instance_type); |
| 692 Node* IsString(Node* object); | 692 Node* IsString(Node* object); |
| 693 Node* IsJSObject(Node* object); | 693 Node* IsJSObject(Node* object); |
| 694 Node* IsJSGlobalProxy(Node* object); | 694 Node* IsJSGlobalProxy(Node* object); |
| 695 Node* IsJSReceiverInstanceType(Node* instance_type); | 695 Node* IsJSReceiverInstanceType(Node* instance_type); |
| 696 Node* IsJSReceiver(Node* object); | 696 Node* IsJSReceiver(Node* object); |
| 697 Node* IsJSReceiverMap(Node* map); | 697 Node* IsJSReceiverMap(Node* map); |
| 698 Node* IsMap(Node* object); | 698 Node* IsMap(Node* object); |
| 699 Node* IsCallableMap(Node* map); | 699 Node* IsCallableMap(Node* map); |
| 700 Node* IsDeprecatedMap(Node* map); |
| 700 Node* IsCallable(Node* object); | 701 Node* IsCallable(Node* object); |
| 701 Node* IsBoolean(Node* object); | 702 Node* IsBoolean(Node* object); |
| 702 Node* IsHeapNumber(Node* object); | 703 Node* IsHeapNumber(Node* object); |
| 703 Node* IsName(Node* object); | 704 Node* IsName(Node* object); |
| 704 Node* IsSymbol(Node* object); | 705 Node* IsSymbol(Node* object); |
| 705 Node* IsPrivateSymbol(Node* object); | 706 Node* IsPrivateSymbol(Node* object); |
| 706 Node* IsJSValue(Node* object); | 707 Node* IsJSValue(Node* object); |
| 707 Node* IsJSArray(Node* object); | 708 Node* IsJSArray(Node* object); |
| 708 Node* IsNativeContext(Node* object); | 709 Node* IsNativeContext(Node* object); |
| 709 Node* IsWeakCell(Node* object); | 710 Node* IsWeakCell(Node* object); |
| (...skipping 712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1422 } | 1423 } |
| 1423 #else | 1424 #else |
| 1424 #define CSA_SLOW_ASSERT(csa, x) ((void)0) | 1425 #define CSA_SLOW_ASSERT(csa, x) ((void)0) |
| 1425 #endif | 1426 #endif |
| 1426 | 1427 |
| 1427 DEFINE_OPERATORS_FOR_FLAGS(CodeStubAssembler::AllocationFlags); | 1428 DEFINE_OPERATORS_FOR_FLAGS(CodeStubAssembler::AllocationFlags); |
| 1428 | 1429 |
| 1429 } // namespace internal | 1430 } // namespace internal |
| 1430 } // namespace v8 | 1431 } // namespace v8 |
| 1431 #endif // V8_CODE_STUB_ASSEMBLER_H_ | 1432 #endif // V8_CODE_STUB_ASSEMBLER_H_ |
| OLD | NEW |