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

Unified Diff: src/IceAssemblerMIPS32.h

Issue 2350833002: Subzero, MIPS32: Encoding of FP comparison instructions (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 | « no previous file | src/IceAssemblerMIPS32.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceAssemblerMIPS32.h
diff --git a/src/IceAssemblerMIPS32.h b/src/IceAssemblerMIPS32.h
index ff67904c9fab03693be9b04887d0888c99afbff2..01fe7f5872102bc2403f82d336cb44081f813c5c 100644
--- a/src/IceAssemblerMIPS32.h
+++ b/src/IceAssemblerMIPS32.h
@@ -72,6 +72,10 @@ public:
void emitRdRsRt(IValueT Opcode, const Operand *OpRd, const Operand *OpRs,
const Operand *OpRt, const char *InsnName);
+ void emitCOP1Fcmp(IValueT Opcode, FPInstDataFormat Format,
+ const Operand *OpFs, const Operand *OpFt, IValueT CC,
+ const char *InsnName);
+
void emitCOP1FmtFsFd(IValueT Opcode, FPInstDataFormat Format,
const Operand *OpFd, const Operand *OpFs,
const char *InsnName);
@@ -108,6 +112,34 @@ public:
void b(Label *TargetLabel);
+ void c_eq_d(const Operand *OpFd, const Operand *OpFs);
+
+ void c_eq_s(const Operand *OpFd, const Operand *OpFs);
+
+ void c_ole_d(const Operand *OpFd, const Operand *OpFs);
+
+ void c_ole_s(const Operand *OpFd, const Operand *OpFs);
+
+ void c_olt_d(const Operand *OpFd, const Operand *OpFs);
+
+ void c_olt_s(const Operand *OpFd, const Operand *OpFs);
+
+ void c_ueq_d(const Operand *OpFd, const Operand *OpFs);
+
+ void c_ueq_s(const Operand *OpFd, const Operand *OpFs);
+
+ void c_ule_d(const Operand *OpFd, const Operand *OpFs);
+
+ void c_ule_s(const Operand *OpFd, const Operand *OpFs);
+
+ void c_ult_d(const Operand *OpFd, const Operand *OpFs);
+
+ void c_ult_s(const Operand *OpFd, const Operand *OpFs);
+
+ void c_un_d(const Operand *OpFd, const Operand *OpFs);
+
+ void c_un_s(const Operand *OpFd, const Operand *OpFs);
+
void cvt_d_l(const Operand *OpFd, const Operand *OpFs);
void cvt_d_s(const Operand *OpFd, const Operand *OpFs);
@@ -134,10 +166,14 @@ public:
void move(const Operand *OpRd, const Operand *OpRs);
+ void movf(const Operand *OpRd, const Operand *OpRs, const Operand *OpCc);
+
void movn_d(const Operand *OpFd, const Operand *OpFs, const Operand *OpFt);
void movn_s(const Operand *OpFd, const Operand *OpFs, const Operand *OpFt);
+ void movt(const Operand *OpRd, const Operand *OpRs, const Operand *OpCc);
+
void movz_d(const Operand *OpFd, const Operand *OpFs, const Operand *OpFt);
void movz_s(const Operand *OpFd, const Operand *OpFs, const Operand *OpFt);
« no previous file with comments | « no previous file | src/IceAssemblerMIPS32.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698