Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DMetadata.cpp1163 APFloat BVal = mdconst::extract<ConstantFP>(B->getOperand(0))->getValueAPF(); in getMostGenericFPMath() local
1164 if (AVal < BVal) in getMostGenericFPMath()
1347 ConstantInt *BVal = mdconst::extract<ConstantInt>(B->getOperand(0)); in getMostGenericAlignmentOrDereferenceable() local
1348 if (AVal->getZExtValue() < BVal->getZExtValue()) in getMostGenericAlignmentOrDereferenceable()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp2233 uint32_t BVal = B->getZExtValue(); in SelectS_BFEFromShifts() local
2236 if (0 < BVal && BVal <= CVal && CVal < 32) { in SelectS_BFEFromShifts()
2238 ReplaceNode(N, getBFE32(Signed, SDLoc(N), Shl.getOperand(0), CVal - BVal, in SelectS_BFEFromShifts()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp275 const APInt *BVal, *CVal; in maintainNoSignedWrap() local
276 if (!match(B, m_APInt(BVal)) || !match(C, m_APInt(CVal))) in maintainNoSignedWrap()
281 (void)BVal->sadd_ov(*CVal, Overflow); in maintainNoSignedWrap()
283 (void)BVal->ssub_ov(*CVal, Overflow); in maintainNoSignedWrap()