| OLD | NEW |
| 1 //===- subzero/src/IceAssemblerMIPS32.h - Assembler for MIPS ----*- C++ -*-===// | 1 //===- subzero/src/IceAssemblerMIPS32.h - Assembler for MIPS ----*- 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 void cvt_s_l(const Operand *OpFd, const Operand *OpFs); | 156 void cvt_s_l(const Operand *OpFd, const Operand *OpFs); |
| 157 | 157 |
| 158 void cvt_s_w(const Operand *OpFd, const Operand *OpFs); | 158 void cvt_s_w(const Operand *OpFd, const Operand *OpFs); |
| 159 | 159 |
| 160 void div(const Operand *OpRs, const Operand *OpRt); | 160 void div(const Operand *OpRs, const Operand *OpRt); |
| 161 | 161 |
| 162 void div_d(const Operand *OpFd, const Operand *OpFs, const Operand *OpFt); | 162 void div_d(const Operand *OpFd, const Operand *OpFs, const Operand *OpFt); |
| 163 | 163 |
| 164 void div_s(const Operand *OpFd, const Operand *OpFs, const Operand *OpFt); | 164 void div_s(const Operand *OpFd, const Operand *OpFs, const Operand *OpFt); |
| 165 | 165 |
| 166 void divu(const Operand *OpRs, const Operand *OpRt); |
| 167 |
| 166 void lui(const Operand *OpRt, const uint16_t Imm); | 168 void lui(const Operand *OpRt, const uint16_t Imm); |
| 167 | 169 |
| 168 void lw(const Operand *OpRt, const Operand *OpBase, const uint32_t Offset); | 170 void lw(const Operand *OpRt, const Operand *OpBase, const uint32_t Offset); |
| 169 | 171 |
| 170 void mfc1(const Operand *OpRt, const Operand *OpFs); | 172 void mfc1(const Operand *OpRt, const Operand *OpFs); |
| 171 | 173 |
| 172 void mfhi(const Operand *OpRd); | 174 void mfhi(const Operand *OpRd); |
| 173 | 175 |
| 174 void mflo(const Operand *OpRd); | 176 void mflo(const Operand *OpRd); |
| 175 | 177 |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 void emitInst(IValueT Value) { | 339 void emitInst(IValueT Value) { |
| 338 AssemblerBuffer::EnsureCapacity _(&Buffer); | 340 AssemblerBuffer::EnsureCapacity _(&Buffer); |
| 339 Buffer.emit<IValueT>(Value); | 341 Buffer.emit<IValueT>(Value); |
| 340 } | 342 } |
| 341 }; | 343 }; |
| 342 | 344 |
| 343 } // end of namespace MIPS32 | 345 } // end of namespace MIPS32 |
| 344 } // end of namespace Ice | 346 } // end of namespace Ice |
| 345 | 347 |
| 346 #endif // SUBZERO_SRC_ICEASSEMBLERMIPS32_H | 348 #endif // SUBZERO_SRC_ICEASSEMBLERMIPS32_H |
| OLD | NEW |