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

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

Issue 2798853003: MIPS[64]: Support for some SIMD operations (7) (Closed)
Patch Set: Rebase, change Lt/Le with Gt/Ge 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/mips64/instruction-codes-mips64.h ('k') | test/cctest/wasm/test-run-wasm-simd.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/mips64/instruction-selector-mips64.cc
diff --git a/src/compiler/mips64/instruction-selector-mips64.cc b/src/compiler/mips64/instruction-selector-mips64.cc
index 36da8b80872dd58c96eec9a3239085314de1b6f5..8126621bae242ea10b1aba8389173b276ccccb1a 100644
--- a/src/compiler/mips64/instruction-selector-mips64.cc
+++ b/src/compiler/mips64/instruction-selector-mips64.cc
@@ -3005,6 +3005,94 @@ void InstructionSelector::VisitS8x16Select(Node* node) {
VisitRRRR(this, kMips64S8x16Select, node);
}
+void InstructionSelector::VisitI8x16Add(Node* node) {
+ VisitRRR(this, kMips64I8x16Add, node);
+}
+
+void InstructionSelector::VisitI8x16AddSaturateS(Node* node) {
+ VisitRRR(this, kMips64I8x16AddSaturateS, node);
+}
+
+void InstructionSelector::VisitI8x16Sub(Node* node) {
+ VisitRRR(this, kMips64I8x16Sub, node);
+}
+
+void InstructionSelector::VisitI8x16SubSaturateS(Node* node) {
+ VisitRRR(this, kMips64I8x16SubSaturateS, node);
+}
+
+void InstructionSelector::VisitI8x16Mul(Node* node) {
+ VisitRRR(this, kMips64I8x16Mul, node);
+}
+
+void InstructionSelector::VisitI8x16MaxS(Node* node) {
+ VisitRRR(this, kMips64I8x16MaxS, node);
+}
+
+void InstructionSelector::VisitI8x16MinS(Node* node) {
+ VisitRRR(this, kMips64I8x16MinS, node);
+}
+
+void InstructionSelector::VisitI8x16Eq(Node* node) {
+ VisitRRR(this, kMips64I8x16Eq, node);
+}
+
+void InstructionSelector::VisitI8x16Ne(Node* node) {
+ VisitRRR(this, kMips64I8x16Ne, node);
+}
+
+void InstructionSelector::VisitI8x16GtS(Node* node) {
+ VisitRRR(this, kMips64I8x16GtS, node);
+}
+
+void InstructionSelector::VisitI8x16GeS(Node* node) {
+ VisitRRR(this, kMips64I8x16GeS, node);
+}
+
+void InstructionSelector::VisitI8x16ShrU(Node* node) {
+ VisitRRI(this, kMips64I8x16ShrU, node);
+}
+
+void InstructionSelector::VisitI8x16AddSaturateU(Node* node) {
+ VisitRRR(this, kMips64I8x16AddSaturateU, node);
+}
+
+void InstructionSelector::VisitI8x16SubSaturateU(Node* node) {
+ VisitRRR(this, kMips64I8x16SubSaturateU, node);
+}
+
+void InstructionSelector::VisitI8x16MaxU(Node* node) {
+ VisitRRR(this, kMips64I8x16MaxU, node);
+}
+
+void InstructionSelector::VisitI8x16MinU(Node* node) {
+ VisitRRR(this, kMips64I8x16MinU, node);
+}
+
+void InstructionSelector::VisitI8x16GtU(Node* node) {
+ VisitRRR(this, kMips64I8x16GtU, node);
+}
+
+void InstructionSelector::VisitI8x16GeU(Node* node) {
+ VisitRRR(this, kMips64I8x16GeU, node);
+}
+
+void InstructionSelector::VisitS128And(Node* node) {
+ VisitRRR(this, kMips64S128And, node);
+}
+
+void InstructionSelector::VisitS128Or(Node* node) {
+ VisitRRR(this, kMips64S128Or, node);
+}
+
+void InstructionSelector::VisitS128Xor(Node* node) {
+ VisitRRR(this, kMips64S128Xor, node);
+}
+
+void InstructionSelector::VisitS128Not(Node* node) {
+ VisitRR(this, kMips64S128Not, node);
+}
+
// static
MachineOperatorBuilder::Flags
InstructionSelector::SupportedMachineOperatorFlags() {
« no previous file with comments | « src/compiler/mips64/instruction-codes-mips64.h ('k') | test/cctest/wasm/test-run-wasm-simd.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698