| 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 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| (...skipping 5052 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5063 #define NON_IC_KIND_LIST(V) \ | 5063 #define NON_IC_KIND_LIST(V) \ |
| 5064 V(FUNCTION) \ | 5064 V(FUNCTION) \ |
| 5065 V(OPTIMIZED_FUNCTION) \ | 5065 V(OPTIMIZED_FUNCTION) \ |
| 5066 V(BYTECODE_HANDLER) \ | 5066 V(BYTECODE_HANDLER) \ |
| 5067 V(STUB) \ | 5067 V(STUB) \ |
| 5068 V(HANDLER) \ | 5068 V(HANDLER) \ |
| 5069 V(BUILTIN) \ | 5069 V(BUILTIN) \ |
| 5070 V(REGEXP) \ | 5070 V(REGEXP) \ |
| 5071 V(WASM_FUNCTION) \ | 5071 V(WASM_FUNCTION) \ |
| 5072 V(WASM_TO_JS_FUNCTION) \ | 5072 V(WASM_TO_JS_FUNCTION) \ |
| 5073 V(JS_TO_WASM_FUNCTION) | 5073 V(JS_TO_WASM_FUNCTION) \ |
| 5074 V(WASM_INTERPRETER_ENTRY) |
| 5074 | 5075 |
| 5075 #define IC_KIND_LIST(V) \ | 5076 #define IC_KIND_LIST(V) \ |
| 5076 V(LOAD_IC) \ | 5077 V(LOAD_IC) \ |
| 5077 V(LOAD_GLOBAL_IC) \ | 5078 V(LOAD_GLOBAL_IC) \ |
| 5078 V(KEYED_LOAD_IC) \ | 5079 V(KEYED_LOAD_IC) \ |
| 5079 V(CALL_IC) \ | 5080 V(CALL_IC) \ |
| 5080 V(STORE_IC) \ | 5081 V(STORE_IC) \ |
| 5081 V(KEYED_STORE_IC) \ | 5082 V(KEYED_STORE_IC) \ |
| 5082 V(BINARY_OP_IC) \ | 5083 V(BINARY_OP_IC) \ |
| 5083 V(COMPARE_IC) \ | 5084 V(COMPARE_IC) \ |
| (...skipping 6663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11747 } | 11748 } |
| 11748 }; | 11749 }; |
| 11749 | 11750 |
| 11750 | 11751 |
| 11751 } // NOLINT, false-positive due to second-order macros. | 11752 } // NOLINT, false-positive due to second-order macros. |
| 11752 } // NOLINT, false-positive due to second-order macros. | 11753 } // NOLINT, false-positive due to second-order macros. |
| 11753 | 11754 |
| 11754 #include "src/objects/object-macros-undef.h" | 11755 #include "src/objects/object-macros-undef.h" |
| 11755 | 11756 |
| 11756 #endif // V8_OBJECTS_H_ | 11757 #endif // V8_OBJECTS_H_ |
| OLD | NEW |