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

Unified Diff: src/IceInstMIPS32.h

Issue 2341713003: Subzero, MIPS32: Floating point support in ELF output (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addressing review comments, tests added, more instructions added 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
Index: src/IceInstMIPS32.h
diff --git a/src/IceInstMIPS32.h b/src/IceInstMIPS32.h
index a4660592747bed11cde48086a3f3338e1c19dbcf..4bb94b81c9bd4e3ecb0bce183adec60a95580c34 100644
--- a/src/IceInstMIPS32.h
+++ b/src/IceInstMIPS32.h
@@ -1179,6 +1179,24 @@ template <> void InstMIPS32Mult::emit(const Cfg *Func) const;
template <> void InstMIPS32Multu::emit(const Cfg *Func) const;
template <> void InstMIPS32Lui::emit(const Cfg *Func) const;
+template <> void InstMIPS32Abs_d::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Abs_s::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Add_d::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Add_s::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Div_d::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Div_s::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Mov_d::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Mov_s::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Movn_d::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Movn_s::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Movz_d::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Movz_s::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Mul_d::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Mul_s::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Sqrt_d::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Sqrt_s::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Sub_d::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Sub_s::emitIAS(const Cfg *Func) const;
template <> void InstMIPS32Addiu::emitIAS(const Cfg *Func) const;
template <> void InstMIPS32Slti::emitIAS(const Cfg *Func) const;
template <> void InstMIPS32Sltiu::emitIAS(const Cfg *Func) const;

Powered by Google App Engine
This is Rietveld 408576698