Home
last modified time | relevance | path

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

12

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DLowerExpectIntrinsic.cpp197 MDBuilder MDB(PhiDef->getContext()); in handlePhiDef() local
224 MDB.createBranchWeights(LikelyBranchWeight, UnlikelyBranchWeight)); in handlePhiDef()
228 MDB.createBranchWeights(UnlikelyBranchWeight, LikelyBranchWeight)); in handlePhiDef()
282 MDBuilder MDB(CI->getContext()); in handleBrSelExpect() local
287 Node = MDB.createBranchWeights(LikelyBranchWeight, UnlikelyBranchWeight); in handleBrSelExpect()
289 Node = MDB.createBranchWeights(UnlikelyBranchWeight, LikelyBranchWeight); in handleBrSelExpect()
DLowerGuardIntrinsic.cpp70 MDBuilder MDB(CI->getContext()); in MakeGuardControlFlowExplicit() local
72 MDB.createBranchWeights(PredicatePassBranchWeight, 1)); in MakeGuardControlFlowExplicit()
DLoopVersioningLICM.cpp562 MDBuilder MDB(I->getContext()); in setNoAliasToLoop() local
563 MDNode *NewDomain = MDB.createAnonymousAliasScopeDomain("LVDomain"); in setNoAliasToLoop()
566 MDNode *NewScope = MDB.createAnonymousAliasScope(NewDomain, Name); in setNoAliasToLoop()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/
DProfileSummaryInfoTest.cpp173 MDBuilder MDB(M->getContext()); in TEST_F() local
174 CI2->setMetadata(llvm::LLVMContext::MD_prof, MDB.createBranchWeights({400})); in TEST_F()
201 MDBuilder MDB(M->getContext()); in TEST_F() local
202 CI2->setMetadata(LLVMContext::MD_prof, MDB.createBranchWeights(Weights)); in TEST_F()
210 CI2->setMetadata(llvm::LLVMContext::MD_prof, MDB.createBranchWeights({400})); in TEST_F()
/external/swiftshader/third_party/llvm-7.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()
DAMDGPUSubtarget.cpp402 MDBuilder MDB(I->getContext()); in makeLIDRangeMetadata() local
403 MDNode *MaxWorkGroupSizeRange = MDB.createRange(APInt(32, MinSize), in makeLIDRangeMetadata()
/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/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/swiftshader/third_party/llvm-7.0/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/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DLoopUnrollPeel.cpp377 MDBuilder MDB(LatchBR->getContext()); in updateBranchWeights() local
379 HeaderIdx ? MDB.createBranchWeights(ExitWeight, FallThruWeight) in updateBranchWeights()
380 : MDB.createBranchWeights(FallThruWeight, ExitWeight); in updateBranchWeights()
655 MDBuilder MDB(LatchBR->getContext()); in peelLoop() local
657 HeaderIdx ? MDB.createBranchWeights(ExitWeight, BackEdgeWeight) in peelLoop()
658 : MDB.createBranchWeights(BackEdgeWeight, ExitWeight); in peelLoop()
DLoopVersioning.cpp184 MDBuilder MDB(Context); in prepareNoAliasMetadata() local
185 MDNode *Domain = MDB.createAnonymousAliasScopeDomain("LVerDomain"); in prepareNoAliasMetadata()
188 GroupToScope[&Group] = MDB.createAnonymousAliasScope(Domain); in prepareNoAliasMetadata()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/
DIndirectCallPromotion.cpp305 MDBuilder MDB(Inst->getContext()); in promoteIndirectCall() local
306 MDNode *BranchWeights = MDB.createBranchWeights( in promoteIndirectCall()
315 MDBuilder MDB(NewInst->getContext()); in promoteIndirectCall() local
316 NewInst->setMetadata(LLVMContext::MD_prof, MDB.createBranchWeights(Weights)); in promoteIndirectCall()
DCGProfile.cpp87 MDBuilder MDB(Context); in addModuleFlags() local
94 Vals.push_back(MDB.createConstant( in addModuleFlags()
DPGOInstrumentation.cpp1583 MDBuilder MDB(M->getContext()); in setProfMetadata() local
1594 TI->setMetadata(LLVMContext::MD_prof, MDB.createBranchWeights(Weights)); in setProfMetadata()
1626 MDBuilder MDB(M->getContext()); in setIrrLoopHeaderMetadata() local
1628 MDB.createIrrLoopHeaderWeight(Count)); in setIrrLoopHeaderMetadata()
/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/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DInstruction.cpp690 MDBuilder MDB(getContext()); in updateProfWeight() local
702 Vals.push_back(MDB.createConstant( in updateProfWeight()
716 Vals.push_back(MDB.createConstant( in updateProfWeight()
728 MDBuilder MDB(getContext()); in setProfWeight() local
729 setMetadata(LLVMContext::MD_prof, MDB.createBranchWeights(Weights)); in setProfWeight()
DFunction.cpp1359 MDBuilder MDB(getContext()); in setEntryCount() local
1362 MDB.createFunctionEntryCount(Count.getCount(), Count.isSynthetic(), S)); in setEntryCount()
1404 MDBuilder MDB(getContext()); in setSectionPrefix() local
1406 MDB.createFunctionSectionPrefix(Prefix)); in setSectionPrefix()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
DCalledValuePropagation.cpp386 MDBuilder MDB(M.getContext()); in runCVP() local
393 MDNode *Callees = MDB.createCallees(LV.getFunctions()); in runCVP()
/external/llvm/unittests/IR/
DIRBuilderTest.cpp307 MDBuilder MDB(M->getContext()); in TEST_F() local
309 MDNode *FPMathA = MDB.createFPMath(0.01f); in TEST_F()
310 MDNode *FPMathB = MDB.createFPMath(0.1f); in TEST_F()
/external/llvm/lib/Transforms/IPO/
DSampleProfile.cpp987 MDBuilder MDB(Ctx); in propagateWeights() local
998 MDB.createBranchWeights(Weights)); in propagateWeights()
1040 MDB.createBranchWeights(Weights)); in propagateWeights()
/external/llvm/lib/Transforms/Instrumentation/
DIndirectCallPromotion.cpp330 MDBuilder MDB(Inst->getContext()); in createIfThenElse() local
331 MDNode *BranchWeights = MDB.createBranchWeights( in createIfThenElse()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
DIRBuilderTest.cpp391 MDBuilder MDB(M->getContext()); in TEST_F() local
393 MDNode *FPMathA = MDB.createFPMath(0.01f); in TEST_F()
394 MDNode *FPMathB = MDB.createFPMath(0.1f); in TEST_F()
/external/skqp/site/dev/sheriffing/
Dtrooper.md46 …[MDB group chrome-skia-ninja](https://ganpati.corp.google.com/#Group_Info?name=chrome-skia-ninja@p…

12