Searched refs:IsMax (Results 1 – 5 of 5) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsExpandPseudo.cpp | 342 bool IsMax = false; in expandAtomicBinOpSubword() local 409 IsMax = true; in expandAtomicBinOpSubword() 413 IsMax = true; in expandAtomicBinOpSubword() 417 IsMax = true; in expandAtomicBinOpSubword() 420 IsMax = true; in expandAtomicBinOpSubword() 435 bool NoMovnInstr = (IsMin || IsMax) && !STI->hasMips4() && !STI->hasMips32(); in expandAtomicBinOpSubword() 488 } else if (IsMin || IsMax) { in expandAtomicBinOpSubword() 495 unsigned SELIncr = IsMax ? SELNEZ : SELEQZ; in expandAtomicBinOpSubword() 496 unsigned SELOldVal = IsMax ? SELEQZ : SELNEZ; in expandAtomicBinOpSubword() 497 unsigned MOVIncr = IsMax ? MOVN : MOVZ; in expandAtomicBinOpSubword() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BPFCheckAndAdjustIR.cpp | 284 bool IsMax = IID == Intrinsic::smax || IID == Intrinsic::umax; in sinkMinMaxInBB() local 287 assert(IsMin ^ IsMax); in sinkMinMaxInBB() 293 if ((IsLess && IsMin) || (IsGreater && IsMax)) in sinkMinMaxInBB()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAG.cpp | 4326 bool IsMax = (Opcode == ISD::SMAX); in computeKnownBits() local 4329 if (Op.getOperand(0).getOpcode() == (IsMax ? ISD::SMIN : ISD::SMAX)) in computeKnownBits() 4333 if (!IsMax) in computeKnownBits() 4355 if (IsMax) in computeKnownBits() 4364 if (IsMax && CstLow) { in computeKnownBits() 4949 bool IsMax = (Opcode == ISD::SMAX); in ComputeNumSignBits() local 4952 if (Op.getOperand(0).getOpcode() == (IsMax ? ISD::SMIN : ISD::SMAX)) in ComputeNumSignBits() 4956 if (!IsMax) in ComputeNumSignBits()
|
| H A D | TargetLowering.cpp | 8711 bool IsMax = Opc == ISD::FMAXIMUM; in expandFMINIMUM_FMAXIMUM() local 8717 unsigned CompOpcIeee = IsMax ? ISD::FMAXNUM_IEEE : ISD::FMINNUM_IEEE; in expandFMINIMUM_FMAXIMUM() 8718 unsigned CompOpc = IsMax ? ISD::FMAXNUM : ISD::FMINNUM; in expandFMINIMUM_FMAXIMUM() 8735 DAG.getSetCC(DL, CCVT, LHS, RHS, IsMax ? ISD::SETOGT : ISD::SETOLT); in expandFMINIMUM_FMAXIMUM() 8754 DAG.getTargetConstant(IsMax ? fcPosZero : fcNegZero, DL, MVT::i32); in expandFMINIMUM_FMAXIMUM() 8775 bool IsMax = Opc == ISD::FMAXIMUMNUM; in expandFMINIMUMNUM_FMAXIMUMNUM() local 8830 DAG.getSelectCC(DL, LHS, RHS, LHS, RHS, IsMax ? ISD::SETGT : ISD::SETLT); in expandFMINIMUMNUM_FMAXIMUMNUM() 8840 DAG.getTargetConstant(IsMax ? fcPosZero : fcNegZero, DL, MVT::i32); in expandFMINIMUMNUM_FMAXIMUMNUM()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ScalarEvolution.cpp | 3834 bool IsMax = Kind == scSMaxExpr || Kind == scUMaxExpr; in getMinMaxExpr() local 3854 if (IsMax) in getMinMaxExpr() 3861 if (IsMax) in getMinMaxExpr() 3901 llvm::CmpInst::Predicate FirstPred = IsMax ? GEPred : LEPred; in getMinMaxExpr() 3902 llvm::CmpInst::Predicate SecondPred = IsMax ? LEPred : GEPred; in getMinMaxExpr()
|