Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DMetadata.cpp972 APFloat BVal = mdconst::extract<ConstantFP>(B->getOperand(0))->getValueAPF(); in getMostGenericFPMath() local
973 if (AVal < BVal) in getMostGenericFPMath()
1092 ConstantInt *BVal = mdconst::extract<ConstantInt>(B->getOperand(0)); in getMostGenericAlignmentOrDereferenceable() local
1093 if (AVal->getZExtValue() < BVal->getZExtValue()) in getMostGenericAlignmentOrDereferenceable()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp2144 uint32_t BVal = B->getZExtValue(); in SelectS_BFEFromShifts() local
2147 if (0 < BVal && BVal <= CVal && CVal < 32) { in SelectS_BFEFromShifts()
2151 ReplaceNode(N, getS_BFE(Opcode, SDLoc(N), Shl.getOperand(0), CVal - BVal, in SelectS_BFEFromShifts()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp268 const APInt *BVal, *CVal; in maintainNoSignedWrap() local
269 if (!match(B, m_APInt(BVal)) || !match(C, m_APInt(CVal))) in maintainNoSignedWrap()
274 (void)BVal->sadd_ov(*CVal, Overflow); in maintainNoSignedWrap()
276 (void)BVal->ssub_ov(*CVal, Overflow); in maintainNoSignedWrap()