Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceInstARM32.h591 class InstARM32UnaryopFP : public InstARM32Pred {
592 InstARM32UnaryopFP() = delete;
593 InstARM32UnaryopFP(const InstARM32UnaryopFP &) = delete;
594 InstARM32UnaryopFP &operator=(const InstARM32UnaryopFP &) = delete;
597 static InstARM32UnaryopFP *create(Cfg *Func, Variable *Dest, Variable *Src, in create()
599 return new (Func->allocate<InstARM32UnaryopFP>()) in create()
600 InstARM32UnaryopFP(Func, Dest, Src, Predicate); in create()
621 InstARM32UnaryopFP(Cfg *Func, Variable *Dest, Operand *Src, in InstARM32UnaryopFP() function
632 class InstARM32UnaryopSignAwareFP : public InstARM32UnaryopFP<K> {
650 : InstARM32UnaryopFP<K>(Func, Dest, Src, Predicate) {} in InstARM32UnaryopSignAwareFP()
[all …]
DIceInstARM32.cpp2513 void InstARM32UnaryopFP<K>::emitIAS(const Cfg *Func) const { in emitIAS()
3454 template class InstARM32UnaryopFP<InstARM32::Vsqrt>; variable