Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp132 if (auto *ValC = dyn_cast<ConstantSDNode>(Val)) { in emitConstantSizeRepstos() local
135 if ((Size & 31) == 0 && (ValC->getZExtValue() & 255) == 0) { in emitConstantSizeRepstos()
164 if (auto *ValC = dyn_cast<ConstantSDNode>(Val)) { in emitConstantSizeRepstos() local
166 uint64_t Value = ValC->getZExtValue() & 255; in emitConstantSizeRepstos()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DInstructionSimplify.cpp5188 auto *ValC = dyn_cast<Constant>(Val); in simplifyInsertElementInst() local
5190 if (VecC && ValC && IdxC) in simplifyInsertElementInst()
5191 return ConstantExpr::getInsertElement(VecC, ValC, IdxC); in simplifyInsertElementInst()
5211 if (VecC && ValC && VecC->getSplatValue() == ValC) in simplifyInsertElementInst()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp172 const APInt &ValC = !TC.isZero() ? TC : FC; in foldSelectICmpAnd() local
173 unsigned ValZeros = ValC.logBase2(); in foldSelectICmpAnd()
206 V = Builder.CreateXor(V, ValC); in foldSelectICmpAnd()