HomeSort by: relevance | last modified time | path
    Searched refs:getUserCost (Results 1 - 18 of 18) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
CodeMetrics.cpp 186 NumInstsProxy += TTI.getUserCost(&I, TargetTransformInfo::TCK_CodeSize);
InlineCost.cpp 1036 return TTI.getUserCost(&GEP, Operands,
1306 return TTI.getUserCost(&I, TargetTransformInfo::TCK_SizeAndLatency) ==
1331 return TTI.getUserCost(&I, TargetTransformInfo::TCK_SizeAndLatency) ==
1363 return TTI.getUserCost(&I, TargetTransformInfo::TCK_SizeAndLatency) ==
2060 if (TTI.getUserCost(&I, TargetTransformInfo::TCK_SizeAndLatency) ==
TargetTransformInfo.cpp 223 TargetTransformInfo::getUserCost(const User *U,
226 InstructionCost Cost = TTIImpl->getUserCost(U, Operands, CostKind);
1392 return getUserCost(I, CostKind);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonTargetTransformInfo.cpp 343 InstructionCost HexagonTTIImpl::getUserCost(const User *U,
367 return BaseT::getUserCost(U, Operands, CostKind);
HexagonTargetTransformInfo.h 169 InstructionCost getUserCost(const User *U, ArrayRef<const Value *> Operands,
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.h 62 InstructionCost getUserCost(const User *U, ArrayRef<const Value *> Operands,
PPCTargetTransformInfo.cpp 321 InstructionCost PPCTTIImpl::getUserCost(const User *U,
327 return BaseT::getUserCost(U, Operands, CostKind);
333 return LT.first * BaseT::getUserCost(U, Operands, CostKind);
336 return BaseT::getUserCost(U, Operands, CostKind);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SpeculativeExecution.cpp 255 return TTI.getUserCost(I, TargetTransformInfo::TCK_SizeAndLatency);
LoopFlatten.cpp 317 TTI->getUserCost(&I, TargetTransformInfo::TCK_SizeAndLatency);
SpeculateAroundPHIs.cpp 474 Cost += TTI.getUserCost(I, TargetTransformInfo::TCK_SizeAndLatency);
LoopUnrollPass.cpp 436 UnrolledCost += TTI.getUserCost(I, CostKind);
532 RolledDynamicCost += TTI.getUserCost(&I, CostKind);
LICM.cpp 1390 if (TTI->getUserCost(GEP, TargetTransformInfo::TCK_SizeAndLatency) !=
1393 // For a GEP, we cannot simply use getUserCost because currently it
1406 return TTI->getUserCost(&I, TargetTransformInfo::TCK_SizeAndLatency) ==
SimpleLoopUnswitch.cpp 2738 Cost += TTI.getUserCost(&I, CostKind);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
TargetTransformInfo.h 236 Cost = getUserCost(I, kind);
320 InstructionCost getUserCost(const User *U, ArrayRef<const Value *> Operands,
323 /// This is a helper function which calls the two-argument getUserCost
325 InstructionCost getUserCost(const User *U, TargetCostKind CostKind) const {
327 return getUserCost(U, Operands, CostKind);
425 /// getUserCost values returned by this API, and the expectation is that
1454 virtual InstructionCost getUserCost(const User *U,
1759 InstructionCost getUserCost(const User *U, ArrayRef<const Value *> Operands,
1761 return Impl.getUserCost(U, Operands, CostKind);
TargetTransformInfoImpl.h 920 InstructionCost getUserCost(const User *U, ArrayRef<const Value *> Operands,
1143 if (getUserCost(I, Operands, TTI::TCK_Latency) == TTI::TCC_Free)
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMTargetTransformInfo.cpp 2187 getUserCost(&I, Operands, TargetTransformInfo::TCK_SizeAndLatency);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 346 return TTI.getUserCost(I, TargetTransformInfo::TCK_SizeAndLatency);
3428 Cost += TTI.getUserCost(&I, TargetTransformInfo::TCK_SizeAndLatency);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
CodeGenPrepare.cpp 6568 TTI->getUserCost(I, TargetTransformInfo::TCK_SizeAndLatency) >=

Completed in 58 milliseconds