Home
last modified time | relevance | path

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

/external/swiftshader/third_party/subzero/src/
DIceInstARM32.h1335 class InstARM32Trap : public InstARM32 {
1336 InstARM32Trap() = delete;
1337 InstARM32Trap(const InstARM32Trap &) = delete;
1338 InstARM32Trap &operator=(const InstARM32Trap &) = delete;
1341 static InstARM32Trap *create(Cfg *Func) { in create()
1342 return new (Func->allocate<InstARM32Trap>()) InstARM32Trap(Func); in create()
1350 explicit InstARM32Trap(Cfg *Func);
DIceInstARM32.cpp1291 InstARM32Trap::InstARM32Trap(Cfg *Func) in InstARM32Trap() function in Ice::ARM32::InstARM32Trap
2544 void InstARM32Trap::emit(const Cfg *Func) const { in emit()
2558 void InstARM32Trap::emitIAS(const Cfg *Func) const { in emitIAS()
2564 void InstARM32Trap::dump(const Cfg *Func) const { in dump()
DIceTargetLoweringARM32.h830 void _trap() { Context.insert<InstARM32Trap>(); } in _trap()