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

Side by Side 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: 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 unified diff | Download patch
OLDNEW
1 //===- subzero/src/IceInstMIPS32.h - MIPS32 machine instrs --*- C++ -*-----===// 1 //===- subzero/src/IceInstMIPS32.h - MIPS32 machine instrs --*- C++ -*-----===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 /// 9 ///
10 /// \file 10 /// \file
(...skipping 1161 matching lines...) Expand 10 before | Expand all | Expand 10 after
1172 // violations and link errors. 1172 // violations and link errors.
1173 1173
1174 template <> void InstMIPS32Mflo::emit(const Cfg *Func) const; 1174 template <> void InstMIPS32Mflo::emit(const Cfg *Func) const;
1175 template <> void InstMIPS32Mfhi::emit(const Cfg *Func) const; 1175 template <> void InstMIPS32Mfhi::emit(const Cfg *Func) const;
1176 template <> void InstMIPS32Mtlo::emit(const Cfg *Func) const; 1176 template <> void InstMIPS32Mtlo::emit(const Cfg *Func) const;
1177 template <> void InstMIPS32Mthi::emit(const Cfg *Func) const; 1177 template <> void InstMIPS32Mthi::emit(const Cfg *Func) const;
1178 template <> void InstMIPS32Mult::emit(const Cfg *Func) const; 1178 template <> void InstMIPS32Mult::emit(const Cfg *Func) const;
1179 template <> void InstMIPS32Multu::emit(const Cfg *Func) const; 1179 template <> void InstMIPS32Multu::emit(const Cfg *Func) const;
1180 template <> void InstMIPS32Lui::emit(const Cfg *Func) const; 1180 template <> void InstMIPS32Lui::emit(const Cfg *Func) const;
1181 1181
1182 template <> void InstMIPS32Add_d::emitIAS(const Cfg *Func) const;
Jim Stichnoth 2016/09/15 04:53:45 Thanks for this! :) (after learning again, the ha
obucinac 2016/09/15 13:35:06 Acknowledged.
1183 template <> void InstMIPS32Add_s::emitIAS(const Cfg *Func) const;
1184 template <> void InstMIPS32Div_d::emitIAS(const Cfg *Func) const;
1185 template <> void InstMIPS32Div_s::emitIAS(const Cfg *Func) const;
1186 template <> void InstMIPS32Mul_d::emitIAS(const Cfg *Func) const;
1187 template <> void InstMIPS32Mul_s::emitIAS(const Cfg *Func) const;
1188 template <> void InstMIPS32Sub_d::emitIAS(const Cfg *Func) const;
1189 template <> void InstMIPS32Sub_s::emitIAS(const Cfg *Func) const;
1182 template <> void InstMIPS32Addiu::emitIAS(const Cfg *Func) const; 1190 template <> void InstMIPS32Addiu::emitIAS(const Cfg *Func) const;
1183 template <> void InstMIPS32Slti::emitIAS(const Cfg *Func) const; 1191 template <> void InstMIPS32Slti::emitIAS(const Cfg *Func) const;
1184 template <> void InstMIPS32Sltiu::emitIAS(const Cfg *Func) const; 1192 template <> void InstMIPS32Sltiu::emitIAS(const Cfg *Func) const;
1185 template <> void InstMIPS32And::emitIAS(const Cfg *Func) const; 1193 template <> void InstMIPS32And::emitIAS(const Cfg *Func) const;
1186 template <> void InstMIPS32Andi::emitIAS(const Cfg *Func) const; 1194 template <> void InstMIPS32Andi::emitIAS(const Cfg *Func) const;
1187 template <> void InstMIPS32Or::emitIAS(const Cfg *Func) const; 1195 template <> void InstMIPS32Or::emitIAS(const Cfg *Func) const;
1188 template <> void InstMIPS32Ori::emitIAS(const Cfg *Func) const; 1196 template <> void InstMIPS32Ori::emitIAS(const Cfg *Func) const;
1189 template <> void InstMIPS32Xor::emitIAS(const Cfg *Func) const; 1197 template <> void InstMIPS32Xor::emitIAS(const Cfg *Func) const;
1190 template <> void InstMIPS32Xori::emitIAS(const Cfg *Func) const; 1198 template <> void InstMIPS32Xori::emitIAS(const Cfg *Func) const;
1191 template <> void InstMIPS32Sll::emitIAS(const Cfg *Func) const; 1199 template <> void InstMIPS32Sll::emitIAS(const Cfg *Func) const;
1192 template <> void InstMIPS32Srl::emitIAS(const Cfg *Func) const; 1200 template <> void InstMIPS32Srl::emitIAS(const Cfg *Func) const;
1193 template <> void InstMIPS32Sra::emitIAS(const Cfg *Func) const; 1201 template <> void InstMIPS32Sra::emitIAS(const Cfg *Func) const;
1194 template <> void InstMIPS32Addu::emitIAS(const Cfg *Func) const; 1202 template <> void InstMIPS32Addu::emitIAS(const Cfg *Func) const;
1195 template <> void InstMIPS32Slt::emitIAS(const Cfg *Func) const; 1203 template <> void InstMIPS32Slt::emitIAS(const Cfg *Func) const;
1196 template <> void InstMIPS32Sltu::emitIAS(const Cfg *Func) const; 1204 template <> void InstMIPS32Sltu::emitIAS(const Cfg *Func) const;
1197 template <> void InstMIPS32Sw::emitIAS(const Cfg *Func) const; 1205 template <> void InstMIPS32Sw::emitIAS(const Cfg *Func) const;
1198 template <> void InstMIPS32Lw::emitIAS(const Cfg *Func) const; 1206 template <> void InstMIPS32Lw::emitIAS(const Cfg *Func) const;
1199 1207
1200 } // end of namespace MIPS32 1208 } // end of namespace MIPS32
1201 } // end of namespace Ice 1209 } // end of namespace Ice
1202 1210
1203 #endif // SUBZERO_SRC_ICEINSTMIPS32_H 1211 #endif // SUBZERO_SRC_ICEINSTMIPS32_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698