Searched refs:InstARM32UnaryopGPR (Results 1 – 2 of 2) sorted by relevance
/external/swiftshader/third_party/subzero/src/ |
D | IceInstARM32.h | 551 class InstARM32UnaryopGPR : public InstARM32Pred { 552 InstARM32UnaryopGPR() = delete; 553 InstARM32UnaryopGPR(const InstARM32UnaryopGPR &) = delete; 554 InstARM32UnaryopGPR &operator=(const InstARM32UnaryopGPR &) = delete; 557 static InstARM32UnaryopGPR *create(Cfg *Func, Variable *Dest, Operand *Src, in create() 559 return new (Func->allocate<InstARM32UnaryopGPR>()) in create() 560 InstARM32UnaryopGPR(Func, Dest, Src, Predicate); in create() 581 InstARM32UnaryopGPR(Cfg *Func, Variable *Dest, Operand *Src, in InstARM32UnaryopGPR() function 1053 using InstARM32Movw = InstARM32UnaryopGPR<InstARM32::Movw, false>; 1054 using InstARM32Clz = InstARM32UnaryopGPR<InstARM32::Clz, false>; [all …]
|
D | IceInstARM32.cpp | 2484 void InstARM32UnaryopGPR<K, Nws>::emitIAS(const Cfg *Func) const { in emitIAS() 3528 template class InstARM32UnaryopGPR<InstARM32::Movw, false>; variable 3529 template class InstARM32UnaryopGPR<InstARM32::Clz, false>; variable 3530 template class InstARM32UnaryopGPR<InstARM32::Mvn, false>; variable 3531 template class InstARM32UnaryopGPR<InstARM32::Rbit, false>; variable 3532 template class InstARM32UnaryopGPR<InstARM32::Rev, false>; variable 3533 template class InstARM32UnaryopGPR<InstARM32::Sxt, true>; variable 3534 template class InstARM32UnaryopGPR<InstARM32::Uxt, true>; variable
|