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

  /external/llvm/include/llvm/CodeGen/PBQP/
CostAllocator.h 39 CostT& getCost() { return cost; }
40 const CostT& getCost() const { return cost; }
74 CostT& operator*() { return entry->getCost(); }
75 const CostT& operator*() const { return entry->getCost(); }
76 CostT* operator->() { return &entry->getCost(); }
77 const CostT* operator->() const { return &entry->getCost(); }
91 return compare(a->getCost(), b);
94 return compare(a->getCost(), b->getCost());
109 PoolRef getCost(CostKeyT costKey)
    [all...]
  /external/llvm/include/llvm/Analysis/
InlineCost.h 89 int getCost() const {
97 int getCostDelta() const { return Threshold - getCost(); }
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 334 DEBUG(dbgs() << " NOT Inlining: cost=" << IC.getCost()
335 << ", thres=" << (IC.getCostDelta() + IC.getCost())
339 Twine(IC.getCost()) + ", threshold=" +
340 Twine(IC.getCostDelta() + IC.getCost()) + ")");
364 int CandidateCost = IC.getCost() - (InlineConstants::CallPenalty + 1);
394 TotalSecondaryCost += IC2.getCost();
404 if (inliningPreventsSomeOuterInline && TotalSecondaryCost < IC.getCost()) {
406 " Cost = " << IC.getCost() <<
417 DEBUG(dbgs() << " Inlining: cost=" << IC.getCost()
418 << ", thres=" << (IC.getCostDelta() + IC.getCost())
    [all...]
  /external/llvm/utils/PerfectShuffle/
PerfectShuffle.cpp 125 unsigned getCost() const { return Cost; }
309 unsigned Cost = ShufTab[LHS].Cost + Op->getCost();
347 unsigned Cost = NumVals + Op->getCost();
  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp 159 int getCost() { return Cost; }
785 Cost -= std::max(0, InlineConstants::IndirectCallThreshold - CA.getCost());
    [all...]
  /external/chromium_org/third_party/closure_compiler/compiler/
compiler.jar 

Completed in 303 milliseconds