Home
last modified time | relevance | path

Searched refs:InstARM32UnaryopFP (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceInstARM32.h592 class InstARM32UnaryopFP : public InstARM32Pred {
593 InstARM32UnaryopFP() = delete;
594 InstARM32UnaryopFP(const InstARM32UnaryopFP &) = delete;
595 InstARM32UnaryopFP &operator=(const InstARM32UnaryopFP &) = delete;
598 static InstARM32UnaryopFP *create(Cfg *Func, Variable *Dest, Variable *Src, in create()
600 return new (Func->allocate<InstARM32UnaryopFP>()) in create()
601 InstARM32UnaryopFP(Func, Dest, Src, Predicate); in create()
622 InstARM32UnaryopFP(Cfg *Func, Variable *Dest, Operand *Src, in InstARM32UnaryopFP() function
633 class InstARM32UnaryopSignAwareFP : public InstARM32UnaryopFP<K> {
651 : InstARM32UnaryopFP<K>(Func, Dest, Src, Predicate) {} in InstARM32UnaryopSignAwareFP()
[all …]
DIceInstARM32.cpp1869 template <> const char *InstARM32UnaryopFP<InstARM32::Vneg>::Opcode = "vneg";
2594 void InstARM32UnaryopFP<K>::emitIAS(const Cfg *Func) const { in emitIAS()
3535 template class InstARM32UnaryopFP<InstARM32::Vsqrt>; variable