Home
last modified time | relevance | path

Searched refs:InstARM32Mov (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceInstARM32.h1497 class InstARM32Mov final : public InstARM32Pred {
1498 InstARM32Mov() = delete;
1499 InstARM32Mov(const InstARM32Mov &) = delete;
1500 InstARM32Mov &operator=(const InstARM32Mov &) = delete;
1503 static InstARM32Mov *create(Cfg *Func, Variable *Dest, Operand *Src, in create()
1505 return new (Func->allocate<InstARM32Mov>()) in create()
1506 InstARM32Mov(Func, Dest, Src, Predicate); in create()
1529 InstARM32Mov(Cfg *Func, Variable *Dest, Operand *Src,
DIceInstARM32.cpp1534 InstARM32Mov::InstARM32Mov(Cfg *Func, Variable *Dest, Operand *Src, in InstARM32Mov() function in Ice::ARM32::InstARM32Mov
1900 void InstARM32Mov::emitMultiDestSingleSource(const Cfg *Func) const { in emitMultiDestSingleSource()
1922 void InstARM32Mov::emitSingleDestMultiSource(const Cfg *Func) const { in emitSingleDestMultiSource()
1966 void InstARM32Mov::emitSingleDestSingleSource(const Cfg *Func) const { in emitSingleDestSingleSource()
2007 void InstARM32Mov::emit(const Cfg *Func) const { in emit()
2024 void InstARM32Mov::emitIAS(const Cfg *Func) const { in emitIAS()
2146 void InstARM32Mov::dump(const Cfg *Func) const { in dump()
DIceTargetLoweringARM32.h436 auto *Instr = Context.insert<InstARM32Mov>(Dest, Src0, Pred);
448 auto *Instr = Context.insert<InstARM32Mov>(Dest, Src0, Pred);
1193 void legalizeMov(InstARM32Mov *Mov);
DIceTargetLoweringARM32.cpp1851 void TargetARM32::PostLoweringLegalizer::legalizeMov(InstARM32Mov *MovInstr) { in legalizeMov()
2046 if (auto *MovInstr = llvm::dyn_cast<InstARM32Mov>(CurInstr)) { in postLowerLegalization()