Searched refs:CSrc (Results 1 – 2 of 2) sorted by relevance
265 if (auto *CSrc = dyn_cast<CastInst>(Src)) { // A->B->C cast in commonCastTransforms() local266 if (Instruction::CastOps NewOpc = isEliminableCastPair(CSrc, &CI)) { in commonCastTransforms()270 auto *Res = CastInst::Create(NewOpc, CSrc->getOperand(0), Ty); in commonCastTransforms()272 if (CSrc->hasOneUse()) in commonCastTransforms()273 replaceAllDbgUsesWith(*CSrc, *Res, CI, DT); in commonCastTransforms()1142 if (TruncInst *CSrc = dyn_cast<TruncInst>(Src)) { // A->B->C cast in visitZExt() local1147 Value *A = CSrc->getOperand(0); in visitZExt()1149 unsigned MidSize = CSrc->getType()->getScalarSizeInBits(); in visitZExt()1158 Value *And = Builder.CreateAnd(A, AndConst, CSrc->getName() + ".mask"); in visitZExt()
9960 ConstantFPSDNode *CSrc = dyn_cast<ConstantFPSDNode>(N->getOperand(0)); in performClampCombine() local9961 if (!CSrc) in performClampCombine()9965 const APFloat &F = CSrc->getValueAPF(); in performClampCombine()9979 return SDValue(CSrc, 0); in performClampCombine()