Home
last modified time | relevance | path

Searched refs:InstARM32Nop (Results 1 – 3 of 3) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/subzero/src/
H A DIceInstARM32.h1681 class InstARM32Nop final : public InstARM32Pred {
1682 InstARM32Nop() = delete;
1683 InstARM32Nop(const InstARM32Nop &) = delete;
1684 InstARM32Nop &operator=(const InstARM32Nop &) = delete;
1687 static InstARM32Nop *create(Cfg *Func) { in create()
1688 return new (Func->allocate<InstARM32Nop>()) InstARM32Nop(Func); in create()
1696 explicit InstARM32Nop(Cfg *Func);
H A DIceInstARM32.cpp1793 InstARM32Nop::InstARM32Nop(Cfg *Func) in InstARM32Nop() function in Ice::ARM32::InstARM32Nop
3265 void InstARM32Nop::emit(const Cfg *Func) const { in emit()
3273 void InstARM32Nop::emitIAS(const Cfg *Func) const { in emitIAS()
3278 void InstARM32Nop::dump(const Cfg *Func) const { in dump()
H A DIceTargetLoweringARM32.h465 void _nop() { Context.insert<InstARM32Nop>(); } in _nop()