reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Analysis/InlineCost.cpp
 1027       accumulateSROACost(CostIt, InlineConstants::InstrCost);
 1130       accumulateSROACost(CostIt, InlineConstants::InstrCost);
 1142     LoadEliminationCost += InlineConstants::InstrCost;
 1154       accumulateSROACost(CostIt, InlineConstants::InstrCost);
 1257         addCost(3 * InlineConstants::InstrCost);
 1286       addCost(Call.arg_size() * InlineConstants::InstrCost);
 1305   addCost(Call.arg_size() * InlineConstants::InstrCost);
 1456   int CostUpperBound = INT_MAX - InlineConstants::InstrCost - 1;
 1465     int64_t JTCost = (int64_t)JumpTableSize * InlineConstants::InstrCost +
 1466                      4 * InlineConstants::InstrCost;
 1489     addCost(NumCaseCluster * 2 * InlineConstants::InstrCost);
 1495       ExpectedNumberOfCompare * 2 * InlineConstants::InstrCost;
 1590       addCost(InlineConstants::InstrCost);
 1991       Cost += 2 * NumStores * InlineConstants::InstrCost;
 1995       Cost += InlineConstants::InstrCost;
 1999   Cost += InlineConstants::InstrCost + InlineConstants::CallPenalty;
lib/Transforms/IPO/PartialInlining.cpp
  882       InlineCost += (SI->getNumCases() + 1) * InlineConstants::InstrCost;
  885     InlineCost += InlineConstants::InstrCost;
  911       2 * InlineConstants::InstrCost * Cloner.OutlinedFunctions.size();