OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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/allocation.h" | 10 #include "src/allocation.h" |
(...skipping 4881 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4892 inline bool is_keyed_load_stub(); | 4892 inline bool is_keyed_load_stub(); |
4893 inline bool is_store_stub(); | 4893 inline bool is_store_stub(); |
4894 inline bool is_keyed_store_stub(); | 4894 inline bool is_keyed_store_stub(); |
4895 inline bool is_call_stub(); | 4895 inline bool is_call_stub(); |
4896 inline bool is_binary_op_stub(); | 4896 inline bool is_binary_op_stub(); |
4897 inline bool is_compare_ic_stub(); | 4897 inline bool is_compare_ic_stub(); |
4898 inline bool is_compare_nil_ic_stub(); | 4898 inline bool is_compare_nil_ic_stub(); |
4899 inline bool is_to_boolean_ic_stub(); | 4899 inline bool is_to_boolean_ic_stub(); |
4900 inline bool is_keyed_stub(); | 4900 inline bool is_keyed_stub(); |
4901 inline bool is_optimized_code(); | 4901 inline bool is_optimized_code(); |
| 4902 inline bool is_interpreter_entry_trampoline(); |
4902 inline bool embeds_maps_weakly(); | 4903 inline bool embeds_maps_weakly(); |
4903 | 4904 |
4904 inline bool IsCodeStubOrIC(); | 4905 inline bool IsCodeStubOrIC(); |
4905 inline bool IsJavaScriptCode(); | 4906 inline bool IsJavaScriptCode(); |
4906 | 4907 |
4907 inline void set_raw_kind_specific_flags1(int value); | 4908 inline void set_raw_kind_specific_flags1(int value); |
4908 inline void set_raw_kind_specific_flags2(int value); | 4909 inline void set_raw_kind_specific_flags2(int value); |
4909 | 4910 |
4910 // [is_crankshafted]: For kind STUB or ICs, tells whether or not a code | 4911 // [is_crankshafted]: For kind STUB or ICs, tells whether or not a code |
4911 // object was generated by either the hydrogen or the TurboFan optimizing | 4912 // object was generated by either the hydrogen or the TurboFan optimizing |
(...skipping 5813 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10725 Handle<FixedArray> keys_; | 10726 Handle<FixedArray> keys_; |
10726 Handle<OrderedHashSet> set_; | 10727 Handle<OrderedHashSet> set_; |
10727 int length_; | 10728 int length_; |
10728 DISALLOW_COPY_AND_ASSIGN(KeyAccumulator); | 10729 DISALLOW_COPY_AND_ASSIGN(KeyAccumulator); |
10729 }; | 10730 }; |
10730 | 10731 |
10731 } // NOLINT, false-positive due to second-order macros. | 10732 } // NOLINT, false-positive due to second-order macros. |
10732 } // NOLINT, false-positive due to second-order macros. | 10733 } // NOLINT, false-positive due to second-order macros. |
10733 | 10734 |
10734 #endif // V8_OBJECTS_H_ | 10735 #endif // V8_OBJECTS_H_ |
OLD | NEW |