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

Unified Diff: src/code-factory.h

Issue 1706053002: Add Simd128Value code stubs. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: All types on all platforms. Created 4 years, 10 months 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 side-by-side diff with in-line comments
Download patch
Index: src/code-factory.h
diff --git a/src/code-factory.h b/src/code-factory.h
index 65bf2c0dfc838f4afae702cb8ffd29b70c2f9713..b1a1b6a486ad995e0dcb7b860e99c645afa04f73 100644
--- a/src/code-factory.h
+++ b/src/code-factory.h
@@ -95,6 +95,10 @@ class CodeFactory final {
static Callable AllocateHeapNumber(Isolate* isolate);
static Callable AllocateMutableHeapNumber(Isolate* isolate);
+#define SIMD128_ALLOC(TYPE, Type, type, lane_count, lane_type) \
+ static Callable Allocate##Type(Isolate* isolate);
+ SIMD128_TYPES(SIMD128_ALLOC)
+#undef SIMD128_ALLOC
static Callable AllocateInNewSpace(Isolate* isolate);
static Callable ArgumentAdaptor(Isolate* isolate);

Powered by Google App Engine
This is Rietveld 408576698