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

Unified Diff: src/compiler/typer.cc

Issue 2045943002: [compiler] [wasm] Introduce Word32/64ReverseBytes as TF Optional Opcode (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: update on store and some optimization on load Created 4 years, 6 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/compiler/typer.cc
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc
index 0f6f55a80176f179551630f898eff3a84c7e3ec4..49855367b02feddaabcb459bbd1cfad8062de0d2 100644
--- a/src/compiler/typer.cc
+++ b/src/compiler/typer.cc
@@ -2119,6 +2119,13 @@ Type* Typer::Visitor::TypeWord32ReverseBits(Node* node) {
return Type::Integral32();
}
+Type* Typer::Visitor::TypeWord16ReverseBytes(Node* node) {
+ return Type::Integral32();
+}
+
+Type* Typer::Visitor::TypeWord32ReverseBytes(Node* node) {
+ return Type::Integral32();
+}
Type* Typer::Visitor::TypeWord32Popcnt(Node* node) {
return Type::Integral32();
@@ -2156,6 +2163,9 @@ Type* Typer::Visitor::TypeWord64ReverseBits(Node* node) {
return Type::Internal();
}
+Type* Typer::Visitor::TypeWord64ReverseBytes(Node* node) {
+ return Type::Internal();
+}
Type* Typer::Visitor::TypeWord64Popcnt(Node* node) { return Type::Internal(); }

Powered by Google App Engine
This is Rietveld 408576698