Searched refs:InstARM32Vcmp (Results 1 – 3 of 3) sorted by relevance
/external/swiftshader/third_party/subzero/src/ |
D | IceInstARM32.h | 1596 class InstARM32Vcmp final : public InstARM32Pred { 1597 InstARM32Vcmp() = delete; 1598 InstARM32Vcmp(const InstARM32Vcmp &) = delete; 1599 InstARM32Vcmp &operator=(const InstARM32Vcmp &) = delete; 1602 static InstARM32Vcmp *create(Cfg *Func, Variable *Src0, Variable *Src1, in create() 1604 return new (Func->allocate<InstARM32Vcmp>()) in create() 1605 InstARM32Vcmp(Func, Src0, Src1, Predicate); in create() 1607 static InstARM32Vcmp *create(Cfg *Func, Variable *Src0, in create() 1610 return new (Func->allocate<InstARM32Vcmp>()) in create() 1611 InstARM32Vcmp(Func, Src0, Src1, Predicate); in create() [all …]
|
D | IceInstARM32.cpp | 1796 InstARM32Vcmp::InstARM32Vcmp(Cfg *Func, Variable *Src0, Operand *Src1, in InstARM32Vcmp() function in Ice::ARM32::InstARM32Vcmp 3112 void InstARM32Vcmp::emit(const Cfg *Func) const { in emit() 3125 void InstARM32Vcmp::emitIAS(const Cfg *Func) const { in emitIAS() 3158 void InstARM32Vcmp::dump(const Cfg *Func) const { in dump()
|
D | IceTargetLoweringARM32.h | 875 Context.insert<InstARM32Vcmp>(Src0, Src1, Pred); 879 Context.insert<InstARM32Vcmp>(Src0, FpZero, Pred);
|