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

  /external/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 61 /// getInlineCost - This method must be implemented by the subclass to
66 virtual InlineCost getInlineCost(CallSite CS) = 0;
  /external/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/llvm/lib/Transforms/Utils/
BasicInliner.cpp 110 InlineCost IC = CA.getInlineCost(CS, NeverInline);
  /external/llvm/lib/Analysis/
InlineCost.cpp 469 // getInlineCost - The heuristic used to determine if we should inline the
472 InlineCost InlineCostAnalyzer::getInlineCost(CallSite CS,
474 return getInlineCost(CS, CS.getCalledFunction(), NeverInline);
477 InlineCost InlineCostAnalyzer::getInlineCost(CallSite CS,

Completed in 286 milliseconds