Home
last modified time | relevance | path

Searched refs:MDB (Results 1 – 25 of 71) sorted by relevance

123

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLowerExpectIntrinsic.cpp203 MDBuilder MDB(PhiDef->getContext()); in handlePhiDef() local
230 MDB.createBranchWeights(LikelyBranchWeight, UnlikelyBranchWeight)); in handlePhiDef()
234 MDB.createBranchWeights(UnlikelyBranchWeight, LikelyBranchWeight)); in handlePhiDef()
288 MDBuilder MDB(CI->getContext()); in handleBrSelExpect() local
294 Node = MDB.createBranchWeights(LikelyBranchWeight, UnlikelyBranchWeight); in handleBrSelExpect()
295 ExpNode = MDB.createMisExpect(0, LikelyBranchWeight, UnlikelyBranchWeight); in handleBrSelExpect()
297 Node = MDB.createBranchWeights(UnlikelyBranchWeight, LikelyBranchWeight); in handleBrSelExpect()
298 ExpNode = MDB.createMisExpect(1, LikelyBranchWeight, UnlikelyBranchWeight); in handleBrSelExpect()
DLoopVersioningLICM.cpp540 MDBuilder MDB(I->getContext()); in setNoAliasToLoop() local
541 MDNode *NewDomain = MDB.createAnonymousAliasScopeDomain("LVDomain"); in setNoAliasToLoop()
544 MDNode *NewScope = MDB.createAnonymousAliasScope(NewDomain, Name); in setNoAliasToLoop()
/external/llvm-project/llvm/lib/Transforms/Scalar/
DLowerExpectIntrinsic.cpp221 MDBuilder MDB(PhiDef->getContext()); in handlePhiDef() local
250 MDB.createBranchWeights(LikelyBranchWeightVal, in handlePhiDef()
254 MDB.createBranchWeights(UnlikelyBranchWeightVal, in handlePhiDef()
310 MDBuilder MDB(CI->getContext()); in handleBrSelExpect() local
320 MDB.createBranchWeights(LikelyBranchWeightVal, UnlikelyBranchWeightVal); in handleBrSelExpect()
323 MDB.createBranchWeights(UnlikelyBranchWeightVal, LikelyBranchWeightVal); in handleBrSelExpect()
DLoopVersioningLICM.cpp553 MDBuilder MDB(I->getContext()); in setNoAliasToLoop() local
554 MDNode *NewDomain = MDB.createAnonymousAliasScopeDomain("LVDomain"); in setNoAliasToLoop()
556 MDNode *NewScope = MDB.createAnonymousAliasScope(NewDomain, Name); in setNoAliasToLoop()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPULowerKernelArguments.cpp166 MDBuilder MDB(Ctx); in runOnFunction() local
177 MDB.createConstant( in runOnFunction()
186 MDB.createConstant(ConstantInt::get(Builder.getInt64Ty(), in runOnFunction()
195 MDB.createConstant(ConstantInt::get(Builder.getInt64Ty(), in runOnFunction()
/external/llvm/lib/Transforms/Scalar/
DLowerExpectIntrinsic.cpp122 MDBuilder MDB(CI->getContext()); in handleBranchExpect() local
128 Node = MDB.createBranchWeights(LikelyBranchWeight, UnlikelyBranchWeight); in handleBranchExpect()
130 Node = MDB.createBranchWeights(UnlikelyBranchWeight, LikelyBranchWeight); in handleBranchExpect()
DLowerGuardIntrinsic.cpp68 MDBuilder MDB(CI->getContext()); in MakeGuardControlFlowExplicit() local
70 MDB.createBranchWeights(PredicatePassBranchWeight, 1)); in MakeGuardControlFlowExplicit()
DLoopVersioningLICM.cpp479 MDBuilder MDB(I->getContext()); in setNoAliasToLoop() local
480 MDNode *NewDomain = MDB.createAnonymousAliasScopeDomain("LVDomain"); in setNoAliasToLoop()
483 MDNode *NewScope = MDB.createAnonymousAliasScope(NewDomain, Name); in setNoAliasToLoop()
/external/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPULowerKernelArguments.cpp198 MDBuilder MDB(Ctx); in runOnFunction() local
209 MDB.createConstant( in runOnFunction()
218 MDB.createConstant(ConstantInt::get(Builder.getInt64Ty(), in runOnFunction()
227 MDB.createConstant(ConstantInt::get(Builder.getInt64Ty(), in runOnFunction()
/external/llvm/test/CodeGen/SystemZ/
Dfp-mul-03.ll18 ; Check the low end of the MDB range.
28 ; Check the high end of the aligned MDB range.
64 ; Check that MDB allows indices.
77 ; Check that multiplications of spilled values can use MDB rather than MDBR.
/external/llvm-project/llvm/test/CodeGen/SystemZ/
Dfp-mul-03.ll18 ; Check the low end of the MDB range.
28 ; Check the high end of the aligned MDB range.
64 ; Check that MDB allows indices.
77 ; Check that multiplications of spilled values can use MDB rather than MDBR.
Dfp-strict-mul-03.ll22 ; Check the low end of the MDB range.
35 ; Check the high end of the aligned MDB range.
80 ; Check that MDB allows indices.
96 ; Check that multiplications of spilled values can use MDB rather than MDBR.
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DCGProfile.cpp86 MDBuilder MDB(Context); in addModuleFlags() local
92 MDB.createConstant(ConstantInt::get( in addModuleFlags()
DIndirectCallPromotion.cpp306 MDBuilder MDB(Inst->getContext()); in promoteIndirectCall() local
307 MDNode *BranchWeights = MDB.createBranchWeights( in promoteIndirectCall()
314 MDBuilder MDB(NewInst->getContext()); in promoteIndirectCall() local
317 MDB.createBranchWeights({static_cast<uint32_t>(Count)})); in promoteIndirectCall()
/external/llvm-project/llvm/lib/Transforms/Instrumentation/
DIndirectCallPromotion.cpp311 MDBuilder MDB(CB.getContext()); in promoteIndirectCall() local
312 MDNode *BranchWeights = MDB.createBranchWeights( in promoteIndirectCall()
319 MDBuilder MDB(NewInst.getContext()); in promoteIndirectCall() local
322 MDB.createBranchWeights({static_cast<uint32_t>(Count)})); in promoteIndirectCall()
DCGProfile.cpp34 MDBuilder MDB(Context); in addModuleFlags() local
40 MDB.createConstant(ConstantInt::get( in addModuleFlags()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DLoopUnrollPeel.cpp431 MDBuilder MDB(LatchBR->getContext()); in updateBranchWeights() local
433 HeaderIdx ? MDB.createBranchWeights(ExitWeight, FallThroughWeight) in updateBranchWeights()
434 : MDB.createBranchWeights(FallThroughWeight, ExitWeight); in updateBranchWeights()
472 MDBuilder MDB(LatchBR->getContext()); in fixupBranchWeights() local
475 HeaderIdx ? MDB.createBranchWeights(ExitWeight, FallThroughWeight) in fixupBranchWeights()
476 : MDB.createBranchWeights(FallThroughWeight, ExitWeight); in fixupBranchWeights()
DGuardUtils.cpp51 MDBuilder MDB(Guard->getContext()); in makeGuardControlFlowExplicit() local
53 MDB.createBranchWeights(PredicatePassBranchWeight, 1)); in makeGuardControlFlowExplicit()
DLoopVersioning.cpp185 MDBuilder MDB(Context); in prepareNoAliasMetadata() local
186 MDNode *Domain = MDB.createAnonymousAliasScopeDomain("LVerDomain"); in prepareNoAliasMetadata()
189 GroupToScope[&Group] = MDB.createAnonymousAliasScope(Domain); in prepareNoAliasMetadata()
/external/llvm-project/llvm/lib/Transforms/Utils/
DGuardUtils.cpp51 MDBuilder MDB(Guard->getContext()); in makeGuardControlFlowExplicit() local
53 MDB.createBranchWeights(PredicatePassBranchWeight, 1)); in makeGuardControlFlowExplicit()
DLoopPeel.cpp443 MDBuilder MDB(LatchBR->getContext()); in updateBranchWeights() local
445 HeaderIdx ? MDB.createBranchWeights(ExitWeight, FallThroughWeight) in updateBranchWeights()
446 : MDB.createBranchWeights(FallThroughWeight, ExitWeight); in updateBranchWeights()
484 MDBuilder MDB(LatchBR->getContext()); in fixupBranchWeights() local
487 HeaderIdx ? MDB.createBranchWeights(ExitWeight, FallThroughWeight) in fixupBranchWeights()
488 : MDB.createBranchWeights(FallThroughWeight, ExitWeight); in fixupBranchWeights()
DLoopVersioning.cpp187 MDBuilder MDB(Context); in prepareNoAliasMetadata() local
188 MDNode *Domain = MDB.createAnonymousAliasScopeDomain("LVerDomain"); in prepareNoAliasMetadata()
191 GroupToScope[&Group] = MDB.createAnonymousAliasScope(Domain); in prepareNoAliasMetadata()
/external/llvm-project/llvm/unittests/Analysis/
DProfileSummaryInfoTest.cpp252 MDBuilder MDB(M->getContext()); in TEST_F() local
253 CI2->setMetadata(llvm::LLVMContext::MD_prof, MDB.createBranchWeights({400})); in TEST_F()
344 MDBuilder MDB(M->getContext()); in TEST_F() local
345 CI2->setMetadata(LLVMContext::MD_prof, MDB.createBranchWeights(Weights)); in TEST_F()
353 CI2->setMetadata(llvm::LLVMContext::MD_prof, MDB.createBranchWeights({400})); in TEST_F()
/external/llvm/lib/Transforms/Utils/
DLoopVersioning.cpp181 MDBuilder MDB(Context); in prepareNoAliasMetadata() local
182 MDNode *Domain = MDB.createAnonymousAliasScopeDomain("LVerDomain"); in prepareNoAliasMetadata()
185 GroupToScope[&Group] = MDB.createAnonymousAliasScope(Domain); in prepareNoAliasMetadata()
/external/oss-fuzz/projects/clamav/
Dbuild.sh86 for type in CDB CFG CRB FP FTM HDB HSB IDB IGN IGN2 LDB MDB MSB NDB PDB WDB YARA; do

123