Searched refs:InstMIPS32Mov (Results 1 – 4 of 4) sorted by relevance
/external/swiftshader/third_party/subzero/src/ |
D | IceInstMIPS32.h | 1292 class InstMIPS32Mov final : public InstMIPS32 { 1293 InstMIPS32Mov() = delete; 1294 InstMIPS32Mov(const InstMIPS32Mov &) = delete; 1295 InstMIPS32Mov &operator=(const InstMIPS32Mov &) = delete; 1298 static InstMIPS32Mov *create(Cfg *Func, Variable *Dest, Operand *Src, in create() 1300 return new (Func->allocate<InstMIPS32Mov>()) in create() 1301 InstMIPS32Mov(Func, Dest, Src, Src2); in create() 1316 InstMIPS32Mov(Cfg *Func, Variable *Dest, Operand *Src, Operand *Src2);
|
D | IceInstMIPS32.cpp | 290 InstMIPS32Mov::InstMIPS32Mov(Cfg *Func, Variable *Dest, Operand *Src, in InstMIPS32Mov() function in Ice::MIPS32::InstMIPS32Mov 627 void InstMIPS32Mov::emit(const Cfg *Func) const { in emit() 691 void InstMIPS32Mov::emitIAS(const Cfg *Func) const { in emitIAS() 709 void InstMIPS32Mov::dump(const Cfg *Func) const { in dump()
|
D | IceTargetLoweringMIPS32.h | 376 auto *Instr = Context.insert<InstMIPS32Mov>(Dest, Src0, Src1); 390 auto *Instr = Context.insert<InstMIPS32Mov>(Dest, Src0, Src1); 827 void legalizeMov(InstMIPS32Mov *Mov);
|
D | IceTargetLoweringMIPS32.cpp | 1871 void TargetMIPS32::PostLoweringLegalizer::legalizeMov(InstMIPS32Mov *MovInstr) { in legalizeMov() 2183 if (auto *MovInstr = llvm::dyn_cast<InstMIPS32Mov>(CurInstr)) { in postLowerLegalization()
|