Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(496)

Side by Side Diff: src/objects.h

Issue 2250863002: WIP: prototype ffi support (from 2084663004) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/log.cc ('k') | src/runtime/runtime.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 5351 matching lines...) Expand 10 before | Expand all | Expand 10 after
5362 #define NON_IC_KIND_LIST(V) \ 5362 #define NON_IC_KIND_LIST(V) \
5363 V(FUNCTION) \ 5363 V(FUNCTION) \
5364 V(OPTIMIZED_FUNCTION) \ 5364 V(OPTIMIZED_FUNCTION) \
5365 V(BYTECODE_HANDLER) \ 5365 V(BYTECODE_HANDLER) \
5366 V(STUB) \ 5366 V(STUB) \
5367 V(HANDLER) \ 5367 V(HANDLER) \
5368 V(BUILTIN) \ 5368 V(BUILTIN) \
5369 V(REGEXP) \ 5369 V(REGEXP) \
5370 V(WASM_FUNCTION) \ 5370 V(WASM_FUNCTION) \
5371 V(WASM_TO_JS_FUNCTION) \ 5371 V(WASM_TO_JS_FUNCTION) \
5372 V(JS_TO_WASM_FUNCTION) 5372 V(JS_TO_WASM_FUNCTION) \
5373 V(JS_TO_NATIVE_FUNCTION)
5373 5374
5374 #define IC_KIND_LIST(V) \ 5375 #define IC_KIND_LIST(V) \
5375 V(LOAD_IC) \ 5376 V(LOAD_IC) \
5376 V(LOAD_GLOBAL_IC) \ 5377 V(LOAD_GLOBAL_IC) \
5377 V(KEYED_LOAD_IC) \ 5378 V(KEYED_LOAD_IC) \
5378 V(CALL_IC) \ 5379 V(CALL_IC) \
5379 V(STORE_IC) \ 5380 V(STORE_IC) \
5380 V(KEYED_STORE_IC) \ 5381 V(KEYED_STORE_IC) \
5381 V(BINARY_OP_IC) \ 5382 V(BINARY_OP_IC) \
5382 V(COMPARE_IC) \ 5383 V(COMPARE_IC) \
(...skipping 6639 matching lines...) Expand 10 before | Expand all | Expand 10 after
12022 } 12023 }
12023 return value; 12024 return value;
12024 } 12025 }
12025 }; 12026 };
12026 12027
12027 12028
12028 } // NOLINT, false-positive due to second-order macros. 12029 } // NOLINT, false-positive due to second-order macros.
12029 } // NOLINT, false-positive due to second-order macros. 12030 } // NOLINT, false-positive due to second-order macros.
12030 12031
12031 #endif // V8_OBJECTS_H_ 12032 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/log.cc ('k') | src/runtime/runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698