Searched refs:getInlineCost (Results 1 - 6 of 6) sorted by relevance

/external/llvm/include/llvm/Analysis/
H A DInlineCost.h124 InlineCost getInlineCost(CallSite CS, int Threshold);
133 InlineCost getInlineCost(CallSite CS, Function *Callee, int Threshold);
/external/llvm/lib/Transforms/IPO/
H A DInlineAlways.cpp52 InlineCost getInlineCost(CallSite CS) override;
91 InlineCost AlwaysInliner::getInlineCost(CallSite CS) { function in class:AlwaysInliner
H A DInlineSimple.cpp52 InlineCost getInlineCost(CallSite CS) override {
53 return ICA->getInlineCost(CS, getInlineThreshold(CS));
H A DInliner.cpp314 InlineCost IC = getInlineCost(CS);
357 // FIXME: All of this logic should be sunk into getInlineCost. It relies on
380 InlineCost IC2 = getInlineCost(CS2);
398 // one is set very low by getInlineCost, in anticipation that Caller will
/external/llvm/include/llvm/Transforms/IPO/
H A DInlinerPass.h62 /// getInlineCost - This method must be implemented by the subclass to
67 virtual InlineCost getInlineCost(CallSite CS) = 0;
/external/llvm/lib/Analysis/IPA/
H A DInlineCost.cpp1240 InlineCost InlineCostAnalysis::getInlineCost(CallSite CS, int Threshold) { function in class:InlineCostAnalysis
1241 return getInlineCost(CS, CS.getCalledFunction(), Threshold);
1260 InlineCost InlineCostAnalysis::getInlineCost(CallSite CS, Function *Callee, function in class:InlineCostAnalysis

Completed in 251 milliseconds