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

  /external/llvm/include/llvm/Analysis/
TargetTransformInfo.h 195 int getUserCost(const User *U) const;
229 /// getUserCost values returned by this API, and the expectation is that
562 virtual int getUserCost(const User *U) = 0;
676 int getUserCost(const User *U) override { return Impl.getUserCost(U); }
    [all...]
TargetTransformInfoImpl.h 467 unsigned getUserCost(const User *U) {
  /external/llvm/lib/Analysis/
CodeMetrics.cpp 163 NumInsts += TTI.getUserCost(&*II);
TargetTransformInfo.cpp 76 int TargetTransformInfo::getUserCost(const User *U) const {
77 int Cost = TTIImpl->getUserCost(U);
InlineCost.cpp 446 return TargetTransformInfo::TCC_Free == TTI.getUserCost(&I);
477 return TargetTransformInfo::TCC_Free == TTI.getUserCost(&I);
494 return TargetTransformInfo::TCC_Free == TTI.getUserCost(&I);
    [all...]
CostModel.cpp 384 return TTI->getUserCost(I);
  /external/llvm/lib/Transforms/Scalar/
SpeculativeExecution.cpp 187 return TTI.getUserCost(I);
LoopUnrollPass.cpp 604 int InstCost = TTI.getUserCost(&I);
    [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 244 return TTI.getUserCost(I);
    [all...]

Completed in 607 milliseconds