Home
last modified time | relevance | path

Searched refs:getUserCost (Results 1 – 25 of 50) sorted by relevance

12

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUTargetTransformInfo.cpp758 unsigned GCNTTIImpl::getUserCost(const User *U, in getUserCost() function in GCNTTIImpl
762 return BaseT::getUserCost(U, Operands); in getUserCost()
789 return BaseT::getUserCost(U, Operands); in getUserCost()
803 return BaseT::getUserCost(U, Operands); in getUserCost()
868 return BaseT::getUserCost(U, Operands); in getUserCost()
DAMDGPUTargetTransformInfo.h230 unsigned getUserCost(const User *U, ArrayRef<const Value *> Operands);
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonTargetTransformInfo.cpp295 int HexagonTTIImpl::getUserCost(const User *U, in getUserCost() function in HexagonTTIImpl
318 return BaseT::getUserCost(U, Operands); in getUserCost()
DHexagonTargetTransformInfo.h148 int getUserCost(const User *U, ArrayRef<const Value *> Operands);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DTargetTransformInfo.h176 return getUserCost(I); in getInstructionCost()
328 int getUserCost(const User *U, ArrayRef<const Value *> Operands) const;
332 int getUserCost(const User *U) const { in getUserCost() function
335 return getUserCost(U, Operands); in getUserCost()
1199 getUserCost(const User *U, ArrayRef<const Value *> Operands) = 0;
1451 int getUserCost(const User *U, ArrayRef<const Value *> Operands) override { in getUserCost() function
1452 return Impl.getUserCost(U, Operands); in getUserCost()
/external/llvm-project/llvm/lib/Target/Hexagon/
DHexagonTargetTransformInfo.cpp320 HexagonTTIImpl::getUserCost(const User *U, in getUserCost() function in HexagonTTIImpl
344 return BaseT::getUserCost(U, Operands, CostKind); in getUserCost()
DHexagonTargetTransformInfo.h164 int getUserCost(const User *U, ArrayRef<const Value *> Operands,
/external/llvm/include/llvm/Analysis/
DTargetTransformInfo.h204 int getUserCost(const User *U) const;
644 virtual int getUserCost(const User *U) = 0;
782 int getUserCost(const User *U) override { return Impl.getUserCost(U); } in getUserCost() function
/external/llvm/lib/Analysis/
DCodeMetrics.cpp165 NumInsts += TTI.getUserCost(&I); in analyzeBasicBlock()
DTargetTransformInfo.cpp86 int TargetTransformInfo::getUserCost(const User *U) const { in getUserCost() function in TargetTransformInfo
87 int Cost = TTIImpl->getUserCost(U); in getUserCost()
DInlineCost.cpp492 return TargetTransformInfo::TCC_Free == TTI.getUserCost(&I); in visitPtrToInt()
523 return TargetTransformInfo::TCC_Free == TTI.getUserCost(&I); in visitIntToPtr()
540 return TargetTransformInfo::TCC_Free == TTI.getUserCost(&I); in visitCastInst()
1057 if (TargetTransformInfo::TCC_Free == TTI.getUserCost(&I)) in visitInstruction()
/external/llvm-project/llvm/lib/Analysis/
DCodeMetrics.cpp173 NumInsts += TTI.getUserCost(&I, TargetTransformInfo::TCK_CodeSize); in analyzeBasicBlock()
DInlineCost.cpp850 TTI.getUserCost(&GEP, Operands, in isGEPFree()
1122 TTI.getUserCost(&I, TargetTransformInfo::TCK_SizeAndLatency); in visitPtrToInt()
1147 TTI.getUserCost(&I, TargetTransformInfo::TCK_SizeAndLatency); in visitIntToPtr()
1179 TTI.getUserCost(&I, TargetTransformInfo::TCK_SizeAndLatency); in visitCastInst()
1882 TTI.getUserCost(&I, TargetTransformInfo::TCK_SizeAndLatency)) in visitInstruction()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DCodeMetrics.cpp174 NumInsts += TTI.getUserCost(&I); in analyzeBasicBlock()
DInlineCost.cpp714 return TargetTransformInfo::TCC_Free == TTI.getUserCost(&GEP, Operands); in isGEPFree()
962 return TargetTransformInfo::TCC_Free == TTI.getUserCost(&I); in visitPtrToInt()
986 return TargetTransformInfo::TCC_Free == TTI.getUserCost(&I); in visitIntToPtr()
1016 return TargetTransformInfo::TCC_Free == TTI.getUserCost(&I); in visitCastInst()
1719 if (TargetTransformInfo::TCC_Free == TTI.getUserCost(&I)) in visitInstruction()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCTargetTransformInfo.h54 unsigned getUserCost(const User *U, ArrayRef<const Value *> Operands);
DPPCTargetTransformInfo.cpp205 unsigned PPCTTIImpl::getUserCost(const User *U, in getUserCost() function in PPCTTIImpl
210 return LT.first * BaseT::getUserCost(U, Operands); in getUserCost()
213 return BaseT::getUserCost(U, Operands); in getUserCost()
/external/llvm/lib/Transforms/Scalar/
DSpeculativeExecution.cpp223 return TTI.getUserCost(I); in ComputeSpeculationCost()
/external/llvm-project/llvm/include/llvm/Analysis/
DTargetTransformInfo.h244 return getUserCost(I, kind); in getInstructionCost()
323 int getUserCost(const User *U, ArrayRef<const Value *> Operands,
328 int getUserCost(const User *U, TargetCostKind CostKind) const { in getUserCost() function
331 return getUserCost(U, Operands, CostKind); in getUserCost()
1377 virtual int getUserCost(const User *U, ArrayRef<const Value *> Operands,
1655 int getUserCost(const User *U, ArrayRef<const Value *> Operands, in getUserCost() function
1657 return Impl.getUserCost(U, Operands, CostKind); in getUserCost()
/external/llvm-project/llvm/test/Analysis/CostModel/SystemZ/
Dext-of-icmp-cost.ll4 ; Check that getUserCost() does not return TCC_Free for extensions of
/external/llvm-project/llvm/lib/Target/PowerPC/
DPPCTargetTransformInfo.h60 unsigned getUserCost(const User *U, ArrayRef<const Value *> Operands,
DPPCTargetTransformInfo.cpp322 PPCTTIImpl::getUserCost(const User *U, ArrayRef<const Value *> Operands, in getUserCost() function in PPCTTIImpl
327 return BaseT::getUserCost(U, Operands, CostKind); in getUserCost()
332 return LT.first * BaseT::getUserCost(U, Operands, CostKind); in getUserCost()
335 return BaseT::getUserCost(U, Operands, CostKind); in getUserCost()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DSpeculativeExecution.cpp247 return TTI.getUserCost(I); in ComputeSpeculationCost()
/external/llvm-project/llvm/lib/Transforms/Scalar/
DSpeculativeExecution.cpp255 return TTI.getUserCost(I, TargetTransformInfo::TCK_SizeAndLatency); in ComputeSpeculationCost()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86TargetTransformInfo.h180 unsigned getUserCost(const User *U, ArrayRef<const Value *> Operands);

12