Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp9314 if (FPClassTest PartialCheck = Mask & (fcZero | fcSubnormal)) { in lowerISFPCLASS() local
9318 if (PartialCheck == (fcZero | fcSubnormal)) { in lowerISFPCLASS()
9322 Mask &= ~PartialCheck; in lowerISFPCLASS()
9327 if (FPClassTest PartialCheck = Mask & fcZero) { in lowerISFPCLASS() local
9328 if (PartialCheck == fcPosZero) in lowerISFPCLASS()
9331 else if (PartialCheck == fcZero) in lowerISFPCLASS()
9339 if (FPClassTest PartialCheck = Mask & fcSubnormal) { in lowerISFPCLASS() local
9342 auto V = (PartialCheck == fcPosSubnormal) ? AsInt : Abs; in lowerISFPCLASS()
9348 if (PartialCheck == fcNegSubnormal) in lowerISFPCLASS()
9353 if (FPClassTest PartialCheck = Mask & fcInf) { in lowerISFPCLASS() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp9115 if (FPClassTest PartialCheck = Test & (fcZero | fcSubnormal)) { in expandIS_FPCLASS() local
9118 if (PartialCheck == (fcZero | fcSubnormal)) { in expandIS_FPCLASS()
9123 Test &= ~PartialCheck & fcAllFlags; in expandIS_FPCLASS()
9129 if (unsigned PartialCheck = Test & fcZero) { in expandIS_FPCLASS() local
9130 if (PartialCheck == fcPosZero) in expandIS_FPCLASS()
9132 else if (PartialCheck == fcZero) in expandIS_FPCLASS()
9139 if (unsigned PartialCheck = Test & fcSubnormal) { in expandIS_FPCLASS() local
9142 SDValue V = (PartialCheck == fcPosSubnormal) ? OpAsInt : AbsV; in expandIS_FPCLASS()
9147 if (PartialCheck == fcNegSubnormal) in expandIS_FPCLASS()
9152 if (unsigned PartialCheck = Test & fcInf) { in expandIS_FPCLASS() local
[all …]