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

Unified Diff: src/IceInstMIPS32.cpp

Issue 2047043002: Subzero, MIPS32: Floating point comparison (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addressing review comments Created 4 years, 3 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/IceInstMIPS32.h ('k') | src/IceTargetLoweringMIPS32.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceInstMIPS32.cpp
diff --git a/src/IceInstMIPS32.cpp b/src/IceInstMIPS32.cpp
index a1de83564d7c6866883fb3fd214f617418bbf0e2..c25fbe1ca8a63ce1ebebf0f2ce868c7b4f11cd1f 100644
--- a/src/IceInstMIPS32.cpp
+++ b/src/IceInstMIPS32.cpp
@@ -69,6 +69,20 @@ template <> const char *InstMIPS32Addiu::Opcode = "addiu";
template <> const char *InstMIPS32Addu::Opcode = "addu";
template <> const char *InstMIPS32And::Opcode = "and";
template <> const char *InstMIPS32Andi::Opcode = "andi";
+template <> const char *InstMIPS32C_eq_d::Opcode = "c.eq.d";
+template <> const char *InstMIPS32C_eq_s::Opcode = "c.eq.s";
+template <> const char *InstMIPS32C_ole_d::Opcode = "c.ole.d";
+template <> const char *InstMIPS32C_ole_s::Opcode = "c.ole.s";
+template <> const char *InstMIPS32C_olt_d::Opcode = "c.olt.d";
+template <> const char *InstMIPS32C_olt_s::Opcode = "c.olt.s";
+template <> const char *InstMIPS32C_ueq_d::Opcode = "c.ueq.d";
+template <> const char *InstMIPS32C_ueq_s::Opcode = "c.ueq.s";
+template <> const char *InstMIPS32C_ule_d::Opcode = "c.ule.d";
+template <> const char *InstMIPS32C_ule_s::Opcode = "c.ule.s";
+template <> const char *InstMIPS32C_ult_d::Opcode = "c.ult.d";
+template <> const char *InstMIPS32C_ult_s::Opcode = "c.ult.s";
+template <> const char *InstMIPS32C_un_d::Opcode = "c.un.d";
+template <> const char *InstMIPS32C_un_s::Opcode = "c.un.s";
template <> const char *InstMIPS32Cvt_d_l::Opcode = "cvt.d.l";
template <> const char *InstMIPS32Cvt_d_s::Opcode = "cvt.d.s";
template <> const char *InstMIPS32Cvt_d_w::Opcode = "cvt.d.w";
@@ -89,6 +103,8 @@ template <> const char *InstMIPS32Mfhi::Opcode = "mfhi";
template <> const char *InstMIPS32Mflo::Opcode = "mflo";
template <> const char *InstMIPS32Mov_d::Opcode = "mov.d";
template <> const char *InstMIPS32Mov_s::Opcode = "mov.s";
+template <> const char *InstMIPS32Movf::Opcode = "movf";
+template <> const char *InstMIPS32Movt::Opcode = "movt";
template <> const char *InstMIPS32Mtc1::Opcode = "mtc1";
template <> const char *InstMIPS32Mthi::Opcode = "mthi";
template <> const char *InstMIPS32Mtlo::Opcode = "mtlo";
« no previous file with comments | « src/IceInstMIPS32.h ('k') | src/IceTargetLoweringMIPS32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698