Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/test/Analysis/BasicAA/
H A Dstore-promote.ll42 %BVal = load i32, i32* @B ; <i32> [#uses=2]
44 store i32 %BVal, i32* %C1
48 %X = sub i32 %AVal, %BVal ; <i32> [#uses=1]
/llvm-project-15.0.7/llvm/lib/IR/
H A DMetadata.cpp1069 APFloat BVal = mdconst::extract<ConstantFP>(B->getOperand(0))->getValueAPF(); in getMostGenericFPMath() local
1070 if (AVal < BVal) in getMostGenericFPMath()
1189 ConstantInt *BVal = mdconst::extract<ConstantInt>(B->getOperand(0)); in getMostGenericAlignmentOrDereferenceable() local
1190 if (AVal->getZExtValue() < BVal->getZExtValue()) in getMostGenericAlignmentOrDereferenceable()
/llvm-project-15.0.7/clang/unittests/Analysis/FlowSensitive/
H A DTransferTest.cpp2770 const auto *BVal = in TEST() local
2772 ASSERT_THAT(BVal, NotNull()); in TEST()
2800 EXPECT_EQ(&FooLeftLeftSubVal.getRightSubValue(), BVal); in TEST()
3309 auto &BVal = *cast<BoolValue>(Env.getValue(*BDecl, SkipPast::None)); in TEST() local
3311 EXPECT_TRUE(Env.flowConditionImplies(Env.makeNot(BVal))); in TEST()
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp2137 uint32_t BVal = B->getZExtValue(); in SelectS_BFEFromShifts() local
2140 if (0 < BVal && BVal <= CVal && CVal < 32) { in SelectS_BFEFromShifts()
2142 ReplaceNode(N, getBFE32(Signed, SDLoc(N), Shl.getOperand(0), CVal - BVal, in SelectS_BFEFromShifts()
/llvm-project-15.0.7/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp285 const APInt *BVal, *CVal; in maintainNoSignedWrap() local
286 if (!match(B, m_APInt(BVal)) || !match(C, m_APInt(CVal))) in maintainNoSignedWrap()
291 (void)BVal->sadd_ov(*CVal, Overflow); in maintainNoSignedWrap()
293 (void)BVal->ssub_ov(*CVal, Overflow); in maintainNoSignedWrap()
/llvm-project-15.0.7/llvm/unittests/CodeGen/
H A DInstrRefLDVTest.cpp715 ValueIDNum BVal = MTracker->readMLoc(B); in TEST_F() local
718 EXPECT_EQ(ARefVal, BVal); in TEST_F()