| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| D | ISDOpcodes.h | 1368 SETUGE, // 1 0 1 1 True if unordered, greater than, or equal enumerator 1395 return Code == SETUGT || Code == SETUGE || Code == SETULT || Code == SETULE; in isUnsignedIntSetCC()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/VE/ |
| D | VEISelDAGToDAG.cpp | 49 case ISD::SETUGE: in intCondCode2Icc() 93 case ISD::SETUGE: in fpCondCode2Fcc()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/ |
| D | Analysis.cpp | 203 case FCmpInst::FCMP_UGE: return ISD::SETUGE; in getFCmpCondCode() 219 case ISD::SETOGE: case ISD::SETUGE: return ISD::SETGE; in getFCmpCodeWithoutNaN() 234 case ICmpInst::ICMP_UGE: return ISD::SETUGE; in getICmpCondCode()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| D | WebAssemblyInstrInteger.td | 83 defm GE_U : ComparisonInt<SETUGE, "ge_u", 0x4f, 0x5a>;
|
| D | WebAssemblyISelLowering.cpp | 116 ISD::SETULT, ISD::SETULE, ISD::SETUGT, ISD::SETUGE}) in WebAssemblyTargetLowering() 236 for (auto CC : {ISD::SETUGT, ISD::SETUGE, ISD::SETULT, ISD::SETULE}) in WebAssemblyTargetLowering()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| D | PPCISelDAGToDAG.cpp | 3272 case ISD::SETUGE: in get32BitZExtCompare() 3445 case ISD::SETUGE: in get32BitSExtCompare() 3604 case ISD::SETUGE: in get64BitZExtCompare() 3767 case ISD::SETUGE: in get64BitSExtCompare() 4045 case ISD::SETUGE: in SelectCC() 4072 case ISD::SETUGE: in SelectCC() 4126 case ISD::SETUGE: in getPredicateForSetCC() 4151 case ISD::SETUGE: in getCRIdxForSetCC() 4185 case ISD::SETUGE: CC = ISD::SETULE; Swap = true; break; in getVCmpInst() 4229 case ISD::SETUGE: CC = ISD::SETULE; Swap = true; break; in getVCmpInst()
|
| D | PPCInstrInfo.td | 3780 def : Pat<(i1 (setcc i1:$s1, i1:$s2, SETUGE)), 4064 defm : CRNotPat<(i1 (setcc i32:$s1, immZExt16:$imm, SETUGE)), 4081 defm : CRNotPat<(i1 (setcc i32:$s1, i32:$s2, SETUGE)), 4093 defm : CRNotPat<(i1 (setcc i64:$s1, immZExt16:$imm, SETUGE)), 4110 defm : CRNotPat<(i1 (setcc i64:$s1, i64:$s2, SETUGE)), 4123 defm : CRNotPat<(i1 (SetCC Ty:$s1, Ty:$s2, SETUGE)), 4195 defm : CRNotPat<(i1 (any_fsetccs f32:$s1, f32:$s2, SETUGE)), 4222 defm : CRNotPat<(i1 (any_fsetccs f64:$s1, f64:$s2, SETUGE)), 4261 def : Pat <(i1 (selectcc i1:$lhs, i1:$rhs, i1:$tval, i1:$fval, SETUGE)), 4287 def : Pat<(i32 (selectcc i1:$lhs, i1:$rhs, i32:$tval, i32:$fval, SETUGE)), [all …]
|
| D | PPCInstrSPE.td | 850 def : Pat<(f32 (selectcc i1:$lhs, i1:$rhs, f32:$tval, f32:$fval, SETUGE)), 871 def : Pat<(f64 (selectcc i1:$lhs, i1:$rhs, f64:$tval, f64:$fval, SETUGE)),
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| D | RISCVInstrInfoVVLPatterns.td | 745 defm : VPatIntegerSetCCVL_VV_Swappable<vti, "PseudoVMSLEU", SETULE, SETUGE>; 752 defm : VPatIntegerSetCCVL_VX_Swappable<vti, "PseudoVMSLEU", SETULE, SETUGE>; 760 defm : VPatIntegerSetCCVL_VI_Swappable<vti, "PseudoVMSLEU", SETULE, SETUGE>; 768 defm : VPatIntegerSetCCVL_VIPlus1<vti, "PseudoVMSGTU", SETUGE,
|
| D | RISCVInstrInfoVSDPatterns.td | 467 defm : VPatIntegerSetCCSDNode_VV<SETUGE, "PseudoVMSLEU", /*swap*/1>; 470 defm : VPatIntegerSetCCSDNode_VIPlus1<SETUGE, "PseudoVMSGTU",
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| D | AMDGPUISelLowering.cpp | 1484 case ISD::SETUGE: in combineFMinMaxLegacy() 1940 ISD::SETUGE); in LowerUDIVREM64() 1942 ISD::SETUGE); in LowerUDIVREM64() 1962 ISD::SETUGE); in LowerUDIVREM64() 1964 ISD::SETUGE); in LowerUDIVREM64() 2022 SDValue realBIT = DAG.getSelectCC(DL, REM, RHS, BIT, Zero, ISD::SETUGE); in LowerUDIVREM64() 2028 REM = DAG.getSelectCC(DL, REM, RHS, REM_sub, REM, ISD::SETUGE); in LowerUDIVREM64() 2076 SDValue Cond = DAG.getSetCC(DL, CCVT, R, Y, ISD::SETUGE); in LowerUDIVREM() 2083 Cond = DAG.getSetCC(DL, CCVT, R, Y, ISD::SETUGE); in LowerUDIVREM()
|
| D | AMDGPUInstructions.td | 283 def COND_UGE : PatFrag<(ops), (OtherVT SETUGE)>;
|
| D | SIWholeQuadMode.cpp | 809 case ISD::SETUGE: in lowerKillF32()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AVR/ |
| D | AVRISelLowering.cpp | 517 case ISD::SETUGE: in intCCToAVRCC() 630 CC = ISD::SETUGE; in getAVRCmp() 638 CC = ISD::SETUGE; in getAVRCmp()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/ |
| D | MipsSEISelLowering.cpp | 265 setCondCodeAction(ISD::SETUGE, MVT::f32, Expand); in MipsSETargetLowering() 270 setCondCodeAction(ISD::SETUGE, MVT::f64, Expand); in MipsSETargetLowering() 366 setCondCodeAction(ISD::SETUGE, Ty, Expand); in addMSAIntType() 402 setCondCodeAction(ISD::SETUGE, Ty, Expand); in addMSAFloatType() 963 case ISD::SETUGE: return !IsV216; in isLegalDSPCondCode()
|
| D | MipsDSPInstrInfo.td | 1431 def : DSPSetCCPatInv<PseudoCMPU_LT_QB, PseudoPICK_QB, v4i8, SETUGE>; 1444 def : DSPSelectCCPatInv<PseudoCMPU_LT_QB, PseudoPICK_QB, v4i8, SETUGE>;
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/BPF/ |
| D | BPFInstrInfo.td | 95 [{return (N->getZExtValue() == ISD::SETUGE);}]>; 115 [{return (N->getZExtValue() == ISD::SETUGE);}]>;
|
| D | BPFISelLowering.cpp | 789 SET_NEWCC(SETUGE, JUGE); in EmitInstrWithCustomInserter()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| D | TargetLowering.cpp | 386 case ISD::SETUGE: in softenSetCCOperands() 3270 } else if (Cond == ISD::CondCode::SETUGE) { in optimizeSetCCOfSignedTruncationCheck() 3735 case ISD::SETUGE: in SimplifySetCC() 3760 case ISD::SETUGE: in SimplifySetCC() 3926 if (Cond == ISD::SETGE || Cond == ISD::SETUGE) { in SimplifySetCC() 4078 (Cond == ISD::SETUGE && C1.isMinSignedValue())) in SimplifySetCC() 4154 } else if (Cond == ISD::SETULT || Cond == ISD::SETUGE || in SimplifySetCC() 4167 NewCond = (Cond == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE; in SimplifySetCC() 4216 case ISD::SETUEQ: NewCond = IsNegInf ? ISD::SETULE : ISD::SETUGE; break; in SimplifySetCC() 4385 case ISD::SETUGE: // X >=u Y --> X == 1 | Y == 0 --> ~Y | X in SimplifySetCC() [all …]
|
| D | SelectionDAGDumper.cpp | 451 case ISD::SETUGE: return "setuge"; in getOperationName()
|
| D | LegalizeIntegerTypes.cpp | 1622 case ISD::SETUGE: in PromoteSetCCOperands() 4341 case ISD::SETUGE: LowCC = ISD::SETUGE; break; in IntegerExpandSetCCOperands() 4373 CCCode == ISD::SETUGE || CCCode == ISD::SETULE); in IntegerExpandSetCCOperands() 4407 case ISD::SETULE: CCCode = ISD::SETUGE; FlipOperands = true; break; in IntegerExpandSetCCOperands()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARC/ |
| D | ARCISelLowering.cpp | 46 case ISD::SETUGE: in ISDCCtoARCCC()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/M68k/ |
| D | M68kISelLowering.cpp | 1499 case ISD::SETUGE: in TranslateIntegerM68kCC() 1549 case ISD::SETUGE: in TranslateM68kCC() 1578 case ISD::SETUGE: // flipped in TranslateM68kCC()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Target/ |
| D | TargetSelectionDAG.td | 729 def SETUGE : CondCode<"FCMP_UGE", "ICMP_UGE">; 1335 (setcc node:$lhs, node:$rhs, SETUGE)>;
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Lanai/ |
| D | LanaiISelLowering.cpp | 846 case ISD::SETUGE: in IntCondCCodeToICC()
|