| 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 void sltiu(const Operand *OpRt, const Operand *OpRs, const uint32_t Imm); | 230 void sltiu(const Operand *OpRt, const Operand *OpRs, const uint32_t Imm); |
| 231 | 231 |
| 232 void sltu(const Operand *OpRd, const Operand *OpRs, const Operand *OpRt); | 232 void sltu(const Operand *OpRd, const Operand *OpRs, const Operand *OpRt); |
| 233 | 233 |
| 234 void sqrt_d(const Operand *OpFd, const Operand *OpFs); | 234 void sqrt_d(const Operand *OpFd, const Operand *OpFs); |
| 235 | 235 |
| 236 void sqrt_s(const Operand *OpFd, const Operand *OpFs); | 236 void sqrt_s(const Operand *OpFd, const Operand *OpFs); |
| 237 | 237 |
| 238 void sra(const Operand *OpRd, const Operand *OpRt, const uint32_t Sa); | 238 void sra(const Operand *OpRd, const Operand *OpRt, const uint32_t Sa); |
| 239 | 239 |
| 240 void srav(const Operand *OpRd, const Operand *OpRt, const Operand *OpRs); |
| 241 |
| 240 void srl(const Operand *OpRd, const Operand *OpRt, const uint32_t Sa); | 242 void srl(const Operand *OpRd, const Operand *OpRt, const uint32_t Sa); |
| 241 | 243 |
| 242 void srlv(const Operand *OpRd, const Operand *OpRt, const Operand *OpRs); | 244 void srlv(const Operand *OpRd, const Operand *OpRt, const Operand *OpRs); |
| 243 | 245 |
| 244 void sub_d(const Operand *OpFd, const Operand *OpFs, const Operand *OpFt); | 246 void sub_d(const Operand *OpFd, const Operand *OpFs, const Operand *OpFt); |
| 245 | 247 |
| 246 void sub_s(const Operand *OpFd, const Operand *OpFs, const Operand *OpFt); | 248 void sub_s(const Operand *OpFd, const Operand *OpFs, const Operand *OpFt); |
| 247 | 249 |
| 248 void subu(const Operand *OpRd, const Operand *OpRs, const Operand *OpRt); | 250 void subu(const Operand *OpRd, const Operand *OpRs, const Operand *OpRt); |
| 249 | 251 |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 void emitInst(IValueT Value) { | 343 void emitInst(IValueT Value) { |
| 342 AssemblerBuffer::EnsureCapacity _(&Buffer); | 344 AssemblerBuffer::EnsureCapacity _(&Buffer); |
| 343 Buffer.emit<IValueT>(Value); | 345 Buffer.emit<IValueT>(Value); |
| 344 } | 346 } |
| 345 }; | 347 }; |
| 346 | 348 |
| 347 } // end of namespace MIPS32 | 349 } // end of namespace MIPS32 |
| 348 } // end of namespace Ice | 350 } // end of namespace Ice |
| 349 | 351 |
| 350 #endif // SUBZERO_SRC_ICEASSEMBLERMIPS32_H | 352 #endif // SUBZERO_SRC_ICEASSEMBLERMIPS32_H |
| OLD | NEW |