Searched refs:BVal (Results 1 – 6 of 6) sorted by relevance
/external/swiftshader/third_party/LLVM/test/Analysis/BasicAA/ |
D | store-promote.ll | 41 %BVal = load i32* @B ; <i32> [#uses=2] 43 store i32 %BVal, i32* %C1 47 %X = sub i32 %AVal, %BVal ; <i32> [#uses=1]
|
/external/llvm/test/Analysis/BasicAA/ |
D | store-promote.ll | 41 %BVal = load i32, i32* @B ; <i32> [#uses=2] 43 store i32 %BVal, i32* %C1 47 %X = sub i32 %AVal, %BVal ; <i32> [#uses=1]
|
/external/llvm/lib/IR/ |
D | Metadata.cpp | 908 APFloat BVal = mdconst::extract<ConstantFP>(B->getOperand(0))->getValueAPF(); in getMostGenericFPMath() local 909 if (AVal.compare(BVal) == APFloat::cmpLessThan) in getMostGenericFPMath() 1028 ConstantInt *BVal = mdconst::extract<ConstantInt>(B->getOperand(0)); in getMostGenericAlignmentOrDereferenceable() local 1029 if (AVal->getZExtValue() < BVal->getZExtValue()) in getMostGenericAlignmentOrDereferenceable()
|
/external/llvm/lib/Target/AMDGPU/ |
D | AMDGPUISelDAGToDAG.cpp | 1239 uint32_t BVal = B->getZExtValue(); in SelectS_BFEFromShifts() local 1242 if (0 < BVal && BVal <= CVal && CVal < 32) { in SelectS_BFEFromShifts() 1246 ReplaceNode(N, getS_BFE(Opcode, SDLoc(N), Shl.getOperand(0), CVal - BVal, in SelectS_BFEFromShifts()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
D | InstructionCombining.cpp | 137 const APInt &BVal = CB->getValue(); in MaintainNoSignedWrap() local 142 BVal.sadd_ov(CVal, Overflow); in MaintainNoSignedWrap() 144 BVal.ssub_ov(CVal, Overflow); in MaintainNoSignedWrap()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstructionCombining.cpp | 137 const APInt *BVal, *CVal; in MaintainNoSignedWrap() local 138 if (!match(B, m_APInt(BVal)) || !match(C, m_APInt(CVal))) in MaintainNoSignedWrap() 143 BVal->sadd_ov(*CVal, Overflow); in MaintainNoSignedWrap() 145 BVal->ssub_ov(*CVal, Overflow); in MaintainNoSignedWrap()
|