OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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_OBJECTS_H_ | 5 #ifndef V8_OBJECTS_H_ |
6 #define V8_OBJECTS_H_ | 6 #define V8_OBJECTS_H_ |
7 | 7 |
8 #include <iosfwd> | 8 #include <iosfwd> |
9 | 9 |
10 #include "src/assert-scope.h" | 10 #include "src/assert-scope.h" |
(...skipping 4950 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4961 inline bool is_wasm_code(); | 4961 inline bool is_wasm_code(); |
4962 inline bool embeds_maps_weakly(); | 4962 inline bool embeds_maps_weakly(); |
4963 | 4963 |
4964 inline bool IsCodeStubOrIC(); | 4964 inline bool IsCodeStubOrIC(); |
4965 inline bool IsJavaScriptCode(); | 4965 inline bool IsJavaScriptCode(); |
4966 | 4966 |
4967 inline void set_raw_kind_specific_flags1(int value); | 4967 inline void set_raw_kind_specific_flags1(int value); |
4968 inline void set_raw_kind_specific_flags2(int value); | 4968 inline void set_raw_kind_specific_flags2(int value); |
4969 | 4969 |
4970 // Testers for interpreter builtins. | 4970 // Testers for interpreter builtins. |
4971 inline bool is_interpreter_entry_trampoline(); | 4971 inline bool is_interpreter_trampoline_builtin(); |
4972 inline bool is_interpreter_enter_bytecode_dispatch(); | |
4973 | 4972 |
4974 // [is_crankshafted]: For kind STUB or ICs, tells whether or not a code | 4973 // [is_crankshafted]: For kind STUB or ICs, tells whether or not a code |
4975 // object was generated by either the hydrogen or the TurboFan optimizing | 4974 // object was generated by either the hydrogen or the TurboFan optimizing |
4976 // compiler (but it may not be an optimized function). | 4975 // compiler (but it may not be an optimized function). |
4977 inline bool is_crankshafted(); | 4976 inline bool is_crankshafted(); |
4978 inline bool is_hydrogen_stub(); // Crankshafted, but not a function. | 4977 inline bool is_hydrogen_stub(); // Crankshafted, but not a function. |
4979 inline void set_is_crankshafted(bool value); | 4978 inline void set_is_crankshafted(bool value); |
4980 | 4979 |
4981 // [is_turbofanned]: For kind STUB or OPTIMIZED_FUNCTION, tells whether the | 4980 // [is_turbofanned]: For kind STUB or OPTIMIZED_FUNCTION, tells whether the |
4982 // code object was generated by the TurboFan optimizing compiler. | 4981 // code object was generated by the TurboFan optimizing compiler. |
(...skipping 5751 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10734 } | 10733 } |
10735 return value; | 10734 return value; |
10736 } | 10735 } |
10737 }; | 10736 }; |
10738 | 10737 |
10739 | 10738 |
10740 } // NOLINT, false-positive due to second-order macros. | 10739 } // NOLINT, false-positive due to second-order macros. |
10741 } // NOLINT, false-positive due to second-order macros. | 10740 } // NOLINT, false-positive due to second-order macros. |
10742 | 10741 |
10743 #endif // V8_OBJECTS_H_ | 10742 #endif // V8_OBJECTS_H_ |
OLD | NEW |