| 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/allocation.h" | 10 #include "src/allocation.h" | 
| (...skipping 4976 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 4987   inline bool is_keyed_load_stub(); | 4987   inline bool is_keyed_load_stub(); | 
| 4988   inline bool is_store_stub(); | 4988   inline bool is_store_stub(); | 
| 4989   inline bool is_keyed_store_stub(); | 4989   inline bool is_keyed_store_stub(); | 
| 4990   inline bool is_call_stub(); | 4990   inline bool is_call_stub(); | 
| 4991   inline bool is_binary_op_stub(); | 4991   inline bool is_binary_op_stub(); | 
| 4992   inline bool is_compare_ic_stub(); | 4992   inline bool is_compare_ic_stub(); | 
| 4993   inline bool is_compare_nil_ic_stub(); | 4993   inline bool is_compare_nil_ic_stub(); | 
| 4994   inline bool is_to_boolean_ic_stub(); | 4994   inline bool is_to_boolean_ic_stub(); | 
| 4995   inline bool is_keyed_stub(); | 4995   inline bool is_keyed_stub(); | 
| 4996   inline bool is_optimized_code(); | 4996   inline bool is_optimized_code(); | 
|  | 4997   inline bool is_wasm_code(); | 
| 4997   inline bool embeds_maps_weakly(); | 4998   inline bool embeds_maps_weakly(); | 
| 4998 | 4999 | 
| 4999   inline bool IsCodeStubOrIC(); | 5000   inline bool IsCodeStubOrIC(); | 
| 5000   inline bool IsJavaScriptCode(); | 5001   inline bool IsJavaScriptCode(); | 
| 5001 | 5002 | 
| 5002   inline void set_raw_kind_specific_flags1(int value); | 5003   inline void set_raw_kind_specific_flags1(int value); | 
| 5003   inline void set_raw_kind_specific_flags2(int value); | 5004   inline void set_raw_kind_specific_flags2(int value); | 
| 5004 | 5005 | 
| 5005   // Testers for interpreter builtins. | 5006   // Testers for interpreter builtins. | 
| 5006   inline bool is_interpreter_entry_trampoline(); | 5007   inline bool is_interpreter_entry_trampoline(); | 
| (...skipping 5813 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 10820     } | 10821     } | 
| 10821     return value; | 10822     return value; | 
| 10822   } | 10823   } | 
| 10823 }; | 10824 }; | 
| 10824 | 10825 | 
| 10825 | 10826 | 
| 10826 }  // NOLINT, false-positive due to second-order macros. | 10827 }  // NOLINT, false-positive due to second-order macros. | 
| 10827 }  // NOLINT, false-positive due to second-order macros. | 10828 }  // NOLINT, false-positive due to second-order macros. | 
| 10828 | 10829 | 
| 10829 #endif  // V8_OBJECTS_H_ | 10830 #endif  // V8_OBJECTS_H_ | 
| OLD | NEW | 
|---|