Home
last modified time | relevance | path

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

/external/swiftshader/third_party/subzero/src/
DIceInstARM32.h1338 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,
DIceInstARM32.cpp1493 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()
DIceTargetLoweringARM32.h795 InstARM32Strex *_strex(Variable *Dest, Variable *Value, OperandARM32Mem *Addr,
801 return Context.insert<InstARM32Strex>(Dest, Value, Addr, Pred);
DIceTargetLoweringARM32.cpp2071 } else if (auto *StrexInstr = llvm::dyn_cast<InstARM32Strex>(CurInstr)) { in postLowerLegalization()