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

Unified Diff: src/compiler/simplified-operator.h

Issue 1693563004: Convert between tagged and untagged kSimd128 values. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 4 years, 9 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
« no previous file with comments | « src/compiler/representation-change.cc ('k') | src/compiler/simplified-operator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/simplified-operator.h
diff --git a/src/compiler/simplified-operator.h b/src/compiler/simplified-operator.h
index 6b8ea4bbe19c58cde847dd5d47ed6fb95e0877ea..413bff90dab38409ade00267f3d3d791908216a9 100644
--- a/src/compiler/simplified-operator.h
+++ b/src/compiler/simplified-operator.h
@@ -164,6 +164,11 @@ class SimplifiedOperatorBuilder final : public ZoneObject {
const Operator* ChangeFloat64ToTagged();
const Operator* ChangeBoolToBit();
const Operator* ChangeBitToBool();
+#define SIMD128_CHANGE(TYPE, Type, type, lane_count, lane_type) \
+ const Operator* ChangeTaggedTo##Type(); \
+ const Operator* Change##Type##ToTagged();
+ SIMD128_TYPES(SIMD128_CHANGE)
+#undef SIMD128_CHANGE
const Operator* ObjectIsNumber();
const Operator* ObjectIsReceiver();
« no previous file with comments | « src/compiler/representation-change.cc ('k') | src/compiler/simplified-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698