Home
last modified time | relevance | path

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

/external/swiftshader/third_party/subzero/src/
DIceInstARM32.h1412 class InstARM32Trap : public InstARM32 {
1413 InstARM32Trap() = delete;
1414 InstARM32Trap(const InstARM32Trap &) = delete;
1415 InstARM32Trap &operator=(const InstARM32Trap &) = delete;
1418 static InstARM32Trap *create(Cfg *Func) { in create()
1419 return new (Func->allocate<InstARM32Trap>()) InstARM32Trap(Func); in create()
1427 explicit InstARM32Trap(Cfg *Func);
DIceInstARM32.cpp1514 InstARM32Trap::InstARM32Trap(Cfg *Func) in InstARM32Trap() function in Ice::ARM32::InstARM32Trap
2939 void InstARM32Trap::emit(const Cfg *Func) const { in emit()
2953 void InstARM32Trap::emitIAS(const Cfg *Func) const { in emitIAS()
2959 void InstARM32Trap::dump(const Cfg *Func) const { in dump()
DIceTargetLoweringARM32.h823 void _trap() { Context.insert<InstARM32Trap>(); } in _trap()