Home | History | Annotate | Download | only in Analysis

Lines Matching defs:InlineCost

1 //===- InlineCost.cpp - Cost analysis for inliner -------------------------===//
14 #include "llvm/Analysis/InlineCost.h"
370 // InlineCost - This value measures how good of an inline candidate this call
374 int InlineCost = 0;
389 InlineCost -= CalleeFI->ArgumentWeights[ArgNo].AllocaWeight;
395 InlineCost -= CalleeFI->ArgumentWeights[ArgNo].ConstantWeight;
401 InlineCost -= (CS.arg_size() * InlineConstants::InstrCost);
407 InlineCost += CalleeFI->Metrics.NumCalls * InlineConstants::CallPenalty;
410 InlineCost += CalleeFI->Metrics.NumInsts*InlineConstants::InstrCost;
412 return InlineCost;
465 InlineCost InlineCostAnalyzer::getInlineCost(CallSite CS,
470 InlineCost InlineCostAnalyzer::getInlineCost(CallSite CS,
482 return llvm::InlineCost::getNever();
493 return InlineCost::getNever();
500 return InlineCost::getAlways();
519 return InlineCost::getNever();
522 // InlineCost - This value measures how good of an inline candidate this call
527 int InlineCost = getInlineSize(CS, Callee) + getInlineBonuses(CS, Callee);
528 return llvm::InlineCost::get(InlineCost);
534 InlineCost InlineCostAnalyzer::getSpecializationCost(Function *Callee,
540 return llvm::InlineCost::getNever();
560 return llvm::InlineCost::get(Cost);