HomeSort by relevance Sort by last modified time
    Searched refs:getInlineCost (Results 1 - 22 of 22) sorted by null

  /external/llvm/include/llvm/Analysis/
InlineCost.h 113 InlineCost getInlineCost(CallSite CS, int DefaultThreshold,
122 InlineCost getInlineCost(CallSite CS, Function *Callee, int DefaultThreshold,
  /external/llvm/lib/Transforms/IPO/
InlineAlways.cpp 54 InlineCost getInlineCost(CallSite CS) override;
92 InlineCost AlwaysInliner::getInlineCost(CallSite CS) {
InlineSimple.cpp 61 InlineCost getInlineCost(CallSite CS) override {
64 return llvm::getInlineCost(CS, DefaultThreshold, TTI, ACT, PSI);
Inliner.cpp 251 // FIXME: All of this logic should be sunk into getInlineCost. It relies on
272 InlineCost IC2 = getInlineCost(CS2);
290 // one is set very low by getInlineCost, in anticipation that Caller will
304 InlineCost IC = getInlineCost(CS);
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
InlineAlways.cpp 44 InlineCost getInlineCost(CallSite CS) {
45 return CA.getInlineCost(CS, NeverInline);
InlineSimple.cpp 44 InlineCost getInlineCost(CallSite CS) {
45 return CA.getInlineCost(CS, NeverInline);
Inliner.cpp 219 InlineCost IC = getInlineCost(CS);
270 InlineCost IC2 = getInlineCost(CS2);
294 // one is set very low by getInlineCost, in anticipation that Caller will
  /external/llvm/include/llvm/Transforms/IPO/
InlinerPass.h 51 /// getInlineCost - This method must be implemented by the subclass to
56 virtual InlineCost getInlineCost(CallSite CS) = 0;
  /external/swiftshader/third_party/LLVM/include/llvm/Transforms/IPO/
InlinerPass.h 61 /// getInlineCost - This method must be implemented by the subclass to
66 virtual InlineCost getInlineCost(CallSite CS) = 0;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
InlineCost.h 126 /// and pass it to \c getInlineCost. Some specialized versions of inliner
192 InlineCost getInlineCost(
204 getInlineCost(CallSite CS, Function *Callee, const InlineParams &Params,
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
InlineSimple.cpp 55 InlineCost getInlineCost(CallSite CS) override {
72 return llvm::getInlineCost(CS, Params, TTI, GetAssumptionCache,
AlwaysInliner.cpp 110 InlineCost getInlineCost(CallSite CS) override;
145 InlineCost AlwaysInlinerLegacyPass::getInlineCost(CallSite CS) {
Inliner.cpp 300 function_ref<InlineCost(CallSite CS)> GetInlineCost) {
317 // FIXME: All of this logic should be sunk into getInlineCost. It relies on
338 InlineCost IC2 = GetInlineCost(CS2);
356 // one is set very low by getInlineCost, in anticipation that Caller will
372 shouldInline(CallSite CS, function_ref<InlineCost(CallSite CS)> GetInlineCost,
376 InlineCost IC = GetInlineCost(CS);
414 if (shouldBeDeferred(Caller, CS, IC, TotalSecondaryCost, GetInlineCost)) {
469 function_ref<InlineCost(CallSite CS)> GetInlineCost,
585 Optional<InlineCost> OIC = shouldInline(CS, GetInlineCost, ORE);
701 [this](CallSite CS) { return getInlineCost(CS); }
    [all...]
PartialInlining.cpp 766 InlineCost IC = getInlineCost(CS, getInlineParams(), CalleeTTI,
    [all...]
SampleProfile.cpp 724 // set ComputeFullInlineCost, otherwise getInlineCost may return early
728 InlineCost Cost = getInlineCost(CS, Params, GetTTI(*CalledFunction), GetAC,
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
AMDGPUInline.cpp 67 InlineCost getInlineCost(CallSite CS) override;
172 InlineCost AMDGPUInliner::getInlineCost(CallSite CS) {
206 return llvm::getInlineCost(CS, Callee, LocalParams, TTI, GetAssumptionCache,
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
InlineCost.h 140 /// getInlineCost - The heuristic used to determine if we should inline the
143 InlineCost getInlineCost(CallSite CS,
150 InlineCost getInlineCost(CallSite CS,
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/IPO/
Inliner.h 55 virtual InlineCost getInlineCost(CallSite CS) = 0;
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
BasicInliner.cpp 110 InlineCost IC = CA.getInlineCost(CS, NeverInline);
  /external/swiftshader/third_party/LLVM/lib/Analysis/
InlineCost.cpp 470 // getInlineCost - The heuristic used to determine if we should inline the
473 InlineCost InlineCostAnalyzer::getInlineCost(CallSite CS,
475 return getInlineCost(CS, CS.getCalledFunction(), NeverInline);
478 InlineCost InlineCostAnalyzer::getInlineCost(CallSite CS,
  /external/llvm/lib/Analysis/
InlineCost.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
InlineCost.cpp     [all...]

Completed in 749 milliseconds