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 4852 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
4863 #define NON_IC_KIND_LIST(V) \ | 4863 #define NON_IC_KIND_LIST(V) \ |
4864 V(FUNCTION) \ | 4864 V(FUNCTION) \ |
4865 V(OPTIMIZED_FUNCTION) \ | 4865 V(OPTIMIZED_FUNCTION) \ |
4866 V(BYTECODE_HANDLER) \ | 4866 V(BYTECODE_HANDLER) \ |
4867 V(STUB) \ | 4867 V(STUB) \ |
4868 V(HANDLER) \ | 4868 V(HANDLER) \ |
4869 V(BUILTIN) \ | 4869 V(BUILTIN) \ |
4870 V(REGEXP) \ | 4870 V(REGEXP) \ |
4871 V(WASM_FUNCTION) \ | 4871 V(WASM_FUNCTION) \ |
4872 V(WASM_TO_JS_FUNCTION) \ | 4872 V(WASM_TO_JS_FUNCTION) \ |
4873 V(JS_TO_WASM_FUNCTION) | 4873 V(JS_TO_WASM_FUNCTION) \ |
4874 V(JS_TO_NATIVE_FUNCTION) | |
Benedikt Meurer
2016/06/21 03:26:01
Not sure this necessary. Those functions could als
ofrobots
2016/06/23 01:02:51
I think the same argument could be made for JS_TO_
Benedikt Meurer
2016/06/23 03:34:07
JS_TO_WASM is somewhat special and likely subject
| |
4874 | 4875 |
4875 #define IC_KIND_LIST(V) \ | 4876 #define IC_KIND_LIST(V) \ |
4876 V(LOAD_IC) \ | 4877 V(LOAD_IC) \ |
4877 V(LOAD_GLOBAL_IC) \ | 4878 V(LOAD_GLOBAL_IC) \ |
4878 V(KEYED_LOAD_IC) \ | 4879 V(KEYED_LOAD_IC) \ |
4879 V(CALL_IC) \ | 4880 V(CALL_IC) \ |
4880 V(STORE_IC) \ | 4881 V(STORE_IC) \ |
4881 V(KEYED_STORE_IC) \ | 4882 V(KEYED_STORE_IC) \ |
4882 V(BINARY_OP_IC) \ | 4883 V(BINARY_OP_IC) \ |
4883 V(COMPARE_IC) \ | 4884 V(COMPARE_IC) \ |
(...skipping 5922 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
10806 } | 10807 } |
10807 return value; | 10808 return value; |
10808 } | 10809 } |
10809 }; | 10810 }; |
10810 | 10811 |
10811 | 10812 |
10812 } // NOLINT, false-positive due to second-order macros. | 10813 } // NOLINT, false-positive due to second-order macros. |
10813 } // NOLINT, false-positive due to second-order macros. | 10814 } // NOLINT, false-positive due to second-order macros. |
10814 | 10815 |
10815 #endif // V8_OBJECTS_H_ | 10816 #endif // V8_OBJECTS_H_ |
OLD | NEW |