Home
last modified time | relevance | path

Searched refs:LHSCst (Results 1 – 3 of 3) sorted by relevance

/openbsd/src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
DCombinerHelper.cpp5272 const auto LHSCst = Ty.isVector() in matchFsubToFneg() local
5275 if (!LHSCst) in matchFsubToFneg()
5279 if (LHSCst->Value.isNegZero()) in matchFsubToFneg()
5283 if (LHSCst->Value.isPosZero()) in matchFsubToFneg()
/openbsd/src/gnu/llvm/llvm/lib/Analysis/
DScalarEvolution.cpp3612 if (const auto *LHSCst = dyn_cast<SCEVConstant>(Mul->getOperand(0))) { in getUDivExactExpr() local
3613 if (LHSCst == RHSCst) { in getUDivExactExpr()
3621 APInt Factor = gcd(LHSCst, RHSCst); in getUDivExactExpr()
3623 LHSCst = in getUDivExactExpr()
3624 cast<SCEVConstant>(getConstant(LHSCst->getAPInt().udiv(Factor))); in getUDivExactExpr()
3628 Operands.push_back(LHSCst); in getUDivExactExpr()
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp381 if (auto *LHSCst = dyn_cast<ConstantSDNode>(LHS)) in matchBinaryPredicate() local
383 return Match(LHSCst, RHSCst); in matchBinaryPredicate()
397 auto *LHSCst = dyn_cast<ConstantSDNode>(LHSOp); in matchBinaryPredicate() local
399 if ((!LHSCst && !LHSUndef) || (!RHSCst && !RHSUndef)) in matchBinaryPredicate()
404 if (!Match(LHSCst, RHSCst)) in matchBinaryPredicate()