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

Unified Diff: src/machine-type.cc

Issue 1693963004: Add a kSimd128 machine type for Turbofan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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/machine-type.cc
diff --git a/src/machine-type.cc b/src/machine-type.cc
index 1fb886ca5254897f908c85e490318b62dc3e5705..fcc3e9797375bccd8b4c6b7a3c3e67a3d095d7db 100644
--- a/src/machine-type.cc
+++ b/src/machine-type.cc
@@ -26,6 +26,8 @@ std::ostream& operator<<(std::ostream& os, MachineRepresentation rep) {
return os << "kRepFloat32";
case MachineRepresentation::kFloat64:
return os << "kRepFloat64";
+ case MachineRepresentation::kSimd128:
+ return os << "kRepSimd128";
case MachineRepresentation::kTagged:
return os << "kRepTagged";
}

Powered by Google App Engine
This is Rietveld 408576698