HomeSort by: relevance | last modified time | path
    Searched refs:GetTTI (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
CGProfile.cpp 51 function_ref<TargetTransformInfo &(Function &)> GetTTI, bool LazyBFI) {
74 TargetTransformInfo &TTI = GetTTI(F);
121 auto GetTTI = [this](Function &F) -> TargetTransformInfo & {
122 return this->getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
125 return runCGProfilePass(M, GetBFI, GetTTI, true);
146 auto GetTTI = [&FAM](Function &F) -> TargetTransformInfo & {
150 runCGProfilePass(M, GetBFI, GetTTI, false);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
HotColdSplitting.h 40 : PSI(ProfSI), GetBFI(GBFI), GetTTI(GTTI), GetORE(GORE), LookupAC(LAC) {}
55 function_ref<TargetTransformInfo &(Function &)> GetTTI;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
PartialInlining.cpp 201 GetTTI(GTTI), GetBFI(GBFI), GetTLI(GTLI), PSI(ProfSI) {}
223 function_ref<TargetTransformInfo &(Function &)> GetTTI);
227 function_ref<TargetTransformInfo &(Function &)> GetTTI);
265 function_ref<TargetTransformInfo &(Function &)> GetTTI;
272 function_ref<TargetTransformInfo &(Function &)> GetTTI;
380 auto GetTTI = [&TTIWP](Function &F) -> TargetTransformInfo & {
381 return TTIWP->getTTI(F);
388 return PartialInlinerImpl(GetAssumptionCache, LookupAssumptionCache, GetTTI,
451 TargetTransformInfo *FTTI = &GetTTI(F);
524 OutlineRegionCost += computeBBInlineCost(BB, &GetTTI(*BB->getParent()))
    [all...]
SampleProfile.cpp 357 GetTTI(std::move(GetTargetTransformInfo)), GetTLI(std::move(GetTLI)),
408 std::function<TargetTransformInfo &(Function &)> GetTTI;
484 return TTIWP->getTTI(F);
930 InlineCost Cost = getInlineCost(CallInst, getInlineParams(), GetTTI(*Callee),
1284 GetTTI(*Callee), GetAC, GetTLI);
1982 auto GetTTI = [&](Function &F) -> TargetTransformInfo & {
1993 LTOPhase, GetAssumptionCache, GetTTI, GetTLI);
GlobalOpt.cpp 1882 function_ref<TargetTransformInfo &(Function &)> GetTTI,
1961 TargetTransformInfo &TTI = GetTTI(*F);
2574 function_ref<TargetTransformInfo &(Function &)> GetTTI,
2598 LocalChange |= OptimizeFunctions(M, GetTLI, GetTTI, GetBFI, LookupDomTree,
2638 auto GetTTI = [&FAM](Function &F) -> TargetTransformInfo & {
2646 if (!optimizeGlobalsInModule(M, DL, GetTLI, GetTTI, GetBFI, LookupDomTree))
2671 auto GetTTI = [this](Function &F) -> TargetTransformInfo & {
2672 return this->getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
2679 return optimizeGlobalsInModule(M, DL, GetTLI, GetTTI, GetBFI,
HotColdSplitting.cpp 617 TargetTransformInfo &TTI = GetTTI(F);
733 return this->getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
RelLookupTableConverter.cpp 169 Module &M, function_ref<TargetTransformInfo &(Function &)> GetTTI) {
175 if (!GetTTI(*FI).shouldBuildRelLookupTables())
202 auto GetTTI = [&](Function &F) -> TargetTransformInfo & {
206 if (!convertToRelativeLookupTables(M, GetTTI))
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SeparateConstOffsetFromGEP.cpp 380 function_ref<TargetTransformInfo &(Function &)> GetTTI, bool LowerGEP)
381 : DT(DT), SE(SE), LI(LI), TLI(TLI), GetTTI(GetTTI), LowerGEP(LowerGEP) {}
471 function_ref<TargetTransformInfo &(Function &)> GetTTI;
981 TargetTransformInfo &TTI = GetTTI(*GEP->getFunction());
1153 auto GetTTI = [this](Function &F) -> TargetTransformInfo & {
1154 return this->getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
1156 SeparateConstOffsetFromGEP Impl(DT, SE, LI, TLI, GetTTI, LowerGEP);
1378 auto GetTTI = [&AM](Function &F) -> TargetTransformInfo & {
1381 SeparateConstOffsetFromGEP Impl(DT, SE, LI, TLI, GetTTI, LowerGEP)
    [all...]

Completed in 34 milliseconds