| OLD | NEW |
| 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 1149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1160 // violations and link errors. | 1160 // violations and link errors. |
| 1161 | 1161 |
| 1162 template <> void InstMIPS32Mflo::emit(const Cfg *Func) const; | 1162 template <> void InstMIPS32Mflo::emit(const Cfg *Func) const; |
| 1163 template <> void InstMIPS32Mfhi::emit(const Cfg *Func) const; | 1163 template <> void InstMIPS32Mfhi::emit(const Cfg *Func) const; |
| 1164 template <> void InstMIPS32Mtlo::emit(const Cfg *Func) const; | 1164 template <> void InstMIPS32Mtlo::emit(const Cfg *Func) const; |
| 1165 template <> void InstMIPS32Mthi::emit(const Cfg *Func) const; | 1165 template <> void InstMIPS32Mthi::emit(const Cfg *Func) const; |
| 1166 template <> void InstMIPS32Mult::emit(const Cfg *Func) const; | 1166 template <> void InstMIPS32Mult::emit(const Cfg *Func) const; |
| 1167 template <> void InstMIPS32Multu::emit(const Cfg *Func) const; | 1167 template <> void InstMIPS32Multu::emit(const Cfg *Func) const; |
| 1168 template <> void InstMIPS32Lui::emit(const Cfg *Func) const; | 1168 template <> void InstMIPS32Lui::emit(const Cfg *Func) const; |
| 1169 | 1169 |
| 1170 template <> void InstMIPS32Addiu::emitIAS(const Cfg *Func) const; |
| 1171 template <> void InstMIPS32Slti::emitIAS(const Cfg *Func) const; |
| 1172 template <> void InstMIPS32Sltiu::emitIAS(const Cfg *Func) const; |
| 1173 template <> void InstMIPS32And::emitIAS(const Cfg *Func) const; |
| 1174 template <> void InstMIPS32Andi::emitIAS(const Cfg *Func) const; |
| 1175 template <> void InstMIPS32Or::emitIAS(const Cfg *Func) const; |
| 1176 template <> void InstMIPS32Ori::emitIAS(const Cfg *Func) const; |
| 1177 template <> void InstMIPS32Xor::emitIAS(const Cfg *Func) const; |
| 1178 template <> void InstMIPS32Xori::emitIAS(const Cfg *Func) const; |
| 1179 template <> void InstMIPS32Sll::emitIAS(const Cfg *Func) const; |
| 1180 template <> void InstMIPS32Srl::emitIAS(const Cfg *Func) const; |
| 1181 template <> void InstMIPS32Sra::emitIAS(const Cfg *Func) const; |
| 1182 template <> void InstMIPS32Addu::emitIAS(const Cfg *Func) const; |
| 1183 template <> void InstMIPS32Slt::emitIAS(const Cfg *Func) const; |
| 1184 template <> void InstMIPS32Sltu::emitIAS(const Cfg *Func) const; |
| 1185 template <> void InstMIPS32Sw::emitIAS(const Cfg *Func) const; |
| 1186 template <> void InstMIPS32Lw::emitIAS(const Cfg *Func) const; |
| 1187 |
| 1170 } // end of namespace MIPS32 | 1188 } // end of namespace MIPS32 |
| 1171 } // end of namespace Ice | 1189 } // end of namespace Ice |
| 1172 | 1190 |
| 1173 #endif // SUBZERO_SRC_ICEINSTMIPS32_H | 1191 #endif // SUBZERO_SRC_ICEINSTMIPS32_H |
| OLD | NEW |