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

Unified Diff: src/compiler/mips/instruction-selector-mips.cc

Issue 2874403002: [wasm] Swap the implementation of SIMD compare ops using Gt/Ge insteas of Lt/Le (Closed)
Patch Set: Add Todo with bug reference Created 3 years, 7 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/mips/instruction-codes-mips.h ('k') | src/compiler/mips64/code-generator-mips64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/mips/instruction-selector-mips.cc
diff --git a/src/compiler/mips/instruction-selector-mips.cc b/src/compiler/mips/instruction-selector-mips.cc
index 1058833a432c8e3a15ff760439444f319fd61be9..28df902a88a697ac42aa5d8858121c28ac097ac2 100644
--- a/src/compiler/mips/instruction-selector-mips.cc
+++ b/src/compiler/mips/instruction-selector-mips.cc
@@ -2109,20 +2109,20 @@ void InstructionSelector::VisitI32x4Neg(Node* node) {
VisitRR(this, kMipsI32x4Neg, node);
}
-void InstructionSelector::VisitI32x4LtS(Node* node) {
- VisitRRR(this, kMipsI32x4LtS, node);
+void InstructionSelector::VisitI32x4GtS(Node* node) {
+ VisitRRR(this, kMipsI32x4GtS, node);
}
-void InstructionSelector::VisitI32x4LeS(Node* node) {
- VisitRRR(this, kMipsI32x4LeS, node);
+void InstructionSelector::VisitI32x4GeS(Node* node) {
+ VisitRRR(this, kMipsI32x4GeS, node);
}
-void InstructionSelector::VisitI32x4LtU(Node* node) {
- VisitRRR(this, kMipsI32x4LtU, node);
+void InstructionSelector::VisitI32x4GtU(Node* node) {
+ VisitRRR(this, kMipsI32x4GtU, node);
}
-void InstructionSelector::VisitI32x4LeU(Node* node) {
- VisitRRR(this, kMipsI32x4LeU, node);
+void InstructionSelector::VisitI32x4GeU(Node* node) {
+ VisitRRR(this, kMipsI32x4GeU, node);
}
void InstructionSelector::VisitI16x8Splat(Node* node) {
@@ -2189,12 +2189,12 @@ void InstructionSelector::VisitI16x8Ne(Node* node) {
VisitRRR(this, kMipsI16x8Ne, node);
}
-void InstructionSelector::VisitI16x8LtS(Node* node) {
- VisitRRR(this, kMipsI16x8LtS, node);
+void InstructionSelector::VisitI16x8GtS(Node* node) {
+ VisitRRR(this, kMipsI16x8GtS, node);
}
-void InstructionSelector::VisitI16x8LeS(Node* node) {
- VisitRRR(this, kMipsI16x8LeS, node);
+void InstructionSelector::VisitI16x8GeS(Node* node) {
+ VisitRRR(this, kMipsI16x8GeS, node);
}
void InstructionSelector::VisitI16x8AddSaturateU(Node* node) {
@@ -2213,12 +2213,12 @@ void InstructionSelector::VisitI16x8MinU(Node* node) {
VisitRRR(this, kMipsI16x8MinU, node);
}
-void InstructionSelector::VisitI16x8LtU(Node* node) {
- VisitRRR(this, kMipsI16x8LtU, node);
+void InstructionSelector::VisitI16x8GtU(Node* node) {
+ VisitRRR(this, kMipsI16x8GtU, node);
}
-void InstructionSelector::VisitI16x8LeU(Node* node) {
- VisitRRR(this, kMipsI16x8LeU, node);
+void InstructionSelector::VisitI16x8GeU(Node* node) {
+ VisitRRR(this, kMipsI16x8GeU, node);
}
void InstructionSelector::VisitI8x16Splat(Node* node) {
« no previous file with comments | « src/compiler/mips/instruction-codes-mips.h ('k') | src/compiler/mips64/code-generator-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698