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.cpp8368 if (FPClassTest PartialCheck = Mask & (fcZero | fcSubnormal)) { in lowerISFPCLASS() local
8372 if (PartialCheck == (fcZero | fcSubnormal)) { in lowerISFPCLASS()
8376 Mask &= ~PartialCheck; in lowerISFPCLASS()
8381 if (FPClassTest PartialCheck = Mask & fcZero) { in lowerISFPCLASS() local
8382 if (PartialCheck == fcPosZero) in lowerISFPCLASS()
8385 else if (PartialCheck == fcZero) in lowerISFPCLASS()
8393 if (FPClassTest PartialCheck = Mask & fcSubnormal) { in lowerISFPCLASS() local
8396 auto V = (PartialCheck == fcPosSubnormal) ? AsInt : Abs; in lowerISFPCLASS()
8402 if (PartialCheck == fcNegSubnormal) in lowerISFPCLASS()
8407 if (FPClassTest PartialCheck = Mask & fcInf) { in lowerISFPCLASS() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp8710 if (FPClassTest PartialCheck = Test & (fcZero | fcSubnormal)) { in expandIS_FPCLASS() local
8713 if (PartialCheck == (fcZero | fcSubnormal)) { in expandIS_FPCLASS()
8718 Test &= ~PartialCheck & fcAllFlags; in expandIS_FPCLASS()
8724 if (unsigned PartialCheck = Test & fcZero) { in expandIS_FPCLASS() local
8725 if (PartialCheck == fcPosZero) in expandIS_FPCLASS()
8727 else if (PartialCheck == fcZero) in expandIS_FPCLASS()
8734 if (unsigned PartialCheck = Test & fcSubnormal) { in expandIS_FPCLASS() local
8737 SDValue V = (PartialCheck == fcPosSubnormal) ? OpAsInt : AbsV; in expandIS_FPCLASS()
8742 if (PartialCheck == fcNegSubnormal) in expandIS_FPCLASS()
8747 if (unsigned PartialCheck = Test & fcInf) { in expandIS_FPCLASS() local
[all …]