Home
last modified time | relevance | path

Searched refs:C1Val (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DConstantFold.cpp1585 int64_t C1Val = cast<ConstantInt>(C1)->getSExtValue(); in IdxCompare() local
1588 if (C1Val == C2Val) return 0; // They are equal in IdxCompare()
1597 if (C1Val < C2Val) in IdxCompare()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp1818 const uint64_t C1Val = MaybeImmVal->Value.getZExtValue(); in matchShiftOfShiftedLogic() local
1852 MatchInfo.ValSum = C0Val + C1Val; in matchShiftOfShiftedLogic()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPULegalizerInfo.cpp1893 APFloat C1Val(APFloat::IEEEdouble(), "0x1.0p+52"); in legalizeFrint() local
1896 auto C1 = B.buildFConstant(Ty, C1Val); in legalizeFrint()
H A DAMDGPUISelLowering.cpp2207 APFloat C1Val(APFloat::IEEEdouble(), "0x1.0p+52"); in LowerFRINT() local
2208 SDValue C1 = DAG.getConstantFP(C1Val, SL, MVT::f64); in LowerFRINT()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp7958 const APInt &C1Val = C1Node->getAPIntValue(); in combineShiftOfShiftedLogic() local
7974 if (ShiftAmtVal->getBitWidth() != C1Val.getBitWidth()) in combineShiftOfShiftedLogic()
7978 if ((*ShiftAmtVal + C1Val).uge(V.getScalarValueSizeInBits())) in combineShiftOfShiftedLogic()
7998 SDValue ShiftSumC = DAG.getConstant(*C0Val + C1Val, DL, ShiftAmtVT); in combineShiftOfShiftedLogic()
9311 const APInt &C1Val = C1->getAPIntValue(); in foldSelectOfConstants() local
9313 if (C1Val - 1 == C2Val) { in foldSelectOfConstants()
9319 if (C1Val + 1 == C2Val) { in foldSelectOfConstants()
9327 if (C1Val.isPowerOf2() && C2Val.isNullValue()) { in foldSelectOfConstants()
9330 SDValue ShAmtC = DAG.getConstant(C1Val.exactLogBase2(), DL, VT); in foldSelectOfConstants()