Home
last modified time | relevance | path

Searched refs:Cst2 (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp5127 Constant *Cst1, *Cst2; in foldICmpBinOp() local
5128 if (match(B, m_ImmConstant(Cst1)) && match(D, m_ImmConstant(Cst2)) && in foldICmpBinOp()
5130 Constant *Diff = ConstantExpr::getSub(Cst2, Cst1); in foldICmpBinOp()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp2539 auto Cst2 = in select() local
2541 assert(Cst2 && "Should have gotten a constant for src 2?"); in select()
2543 auto Width = Cst2->Value.getZExtValue(); in select()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp4520 auto Cst2 = B.buildConstant(ExtractTy, Width); in matchBitfieldExtractFromSExtInReg() local
4521 B.buildSbfx(Dst, ShiftSrc, Cst1, Cst2); in matchBitfieldExtractFromSExtInReg()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp29566 auto *Cst2 = dyn_cast<ConstantSDNode>(Amt2); in LowerShift() local
29567 if (Cst1 && Cst2 && Cst1->getAPIntValue().ult(EltSizeInBits) && in LowerShift()
29568 Cst2->getAPIntValue().ult(EltSizeInBits)) { in LowerShift()
29572 Cst2->getZExtValue(), DAG); in LowerShift()