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 5044 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5055 #define NON_IC_KIND_LIST(V) \ | 5055 #define NON_IC_KIND_LIST(V) \ |
5056 V(FUNCTION) \ | 5056 V(FUNCTION) \ |
5057 V(OPTIMIZED_FUNCTION) \ | 5057 V(OPTIMIZED_FUNCTION) \ |
5058 V(BYTECODE_HANDLER) \ | 5058 V(BYTECODE_HANDLER) \ |
5059 V(STUB) \ | 5059 V(STUB) \ |
5060 V(HANDLER) \ | 5060 V(HANDLER) \ |
5061 V(BUILTIN) \ | 5061 V(BUILTIN) \ |
5062 V(REGEXP) \ | 5062 V(REGEXP) \ |
5063 V(WASM_FUNCTION) \ | 5063 V(WASM_FUNCTION) \ |
5064 V(WASM_TO_JS_FUNCTION) \ | 5064 V(WASM_TO_JS_FUNCTION) \ |
5065 V(JS_TO_WASM_FUNCTION) | 5065 V(JS_TO_WASM_FUNCTION) \ |
| 5066 V(WASM_TO_INTERPRETER) |
5066 | 5067 |
5067 #define IC_KIND_LIST(V) \ | 5068 #define IC_KIND_LIST(V) \ |
5068 V(LOAD_IC) \ | 5069 V(LOAD_IC) \ |
5069 V(LOAD_GLOBAL_IC) \ | 5070 V(LOAD_GLOBAL_IC) \ |
5070 V(KEYED_LOAD_IC) \ | 5071 V(KEYED_LOAD_IC) \ |
5071 V(CALL_IC) \ | 5072 V(CALL_IC) \ |
5072 V(STORE_IC) \ | 5073 V(STORE_IC) \ |
5073 V(KEYED_STORE_IC) \ | 5074 V(KEYED_STORE_IC) \ |
5074 V(BINARY_OP_IC) \ | 5075 V(BINARY_OP_IC) \ |
5075 V(COMPARE_IC) \ | 5076 V(COMPARE_IC) \ |
(...skipping 6680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
11756 } | 11757 } |
11757 }; | 11758 }; |
11758 | 11759 |
11759 | 11760 |
11760 } // NOLINT, false-positive due to second-order macros. | 11761 } // NOLINT, false-positive due to second-order macros. |
11761 } // NOLINT, false-positive due to second-order macros. | 11762 } // NOLINT, false-positive due to second-order macros. |
11762 | 11763 |
11763 #include "src/objects/object-macros-undef.h" | 11764 #include "src/objects/object-macros-undef.h" |
11764 | 11765 |
11765 #endif // V8_OBJECTS_H_ | 11766 #endif // V8_OBJECTS_H_ |
OLD | NEW |