Searched refs:InstARM32Strex (Results 1 – 4 of 4) sorted by relevance
/external/swiftshader/third_party/subzero/src/ |
D | IceInstARM32.h | 1338 class InstARM32Strex final : public InstARM32Pred { 1339 InstARM32Strex() = delete; 1340 InstARM32Strex(const InstARM32Strex &) = delete; 1341 InstARM32Strex &operator=(const InstARM32Strex &) = delete; 1345 static InstARM32Strex *create(Cfg *Func, Variable *Dest, Variable *Value, in create() 1348 return new (Func->allocate<InstARM32Strex>()) in create() 1349 InstARM32Strex(Func, Dest, Value, Mem, Predicate); in create() 1357 InstARM32Strex(Cfg *Func, Variable *Dest, Variable *Value,
|
D | IceInstARM32.cpp | 1493 InstARM32Strex::InstARM32Strex(Cfg *Func, Variable *Dest, Variable *Value, in InstARM32Strex() function in Ice::ARM32::InstARM32Strex 2816 void InstARM32Strex::emit(const Cfg *Func) const { in emit() 2832 void InstARM32Strex::emitIAS(const Cfg *Func) const { in emitIAS() 2842 void InstARM32Strex::dump(const Cfg *Func) const { in dump()
|
D | IceTargetLoweringARM32.h | 795 InstARM32Strex *_strex(Variable *Dest, Variable *Value, OperandARM32Mem *Addr, 801 return Context.insert<InstARM32Strex>(Dest, Value, Addr, Pred);
|
D | IceTargetLoweringARM32.cpp | 2071 } else if (auto *StrexInstr = llvm::dyn_cast<InstARM32Strex>(CurInstr)) { in postLowerLegalization()
|