Searched refs:getAddressComputationCost (Results 1 - 9 of 9) sorted by relevance

/external/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h416 virtual unsigned getAddressComputationCost(Type *Ty,
/external/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp223 unsigned TargetTransformInfo::getAddressComputationCost(Type *Tp, function in class:TargetTransformInfo
225 return PrevTTI->getAddressComputationCost(Tp, IsComplex);
608 unsigned getAddressComputationCost(Type *Tp, bool) const override {
H A DCostModel.cpp387 return TTI->getAddressComputationCost(ValTy);
/external/llvm/lib/CodeGen/
H A DBasicTargetTransformInfo.cpp120 unsigned getAddressComputationCost( Type *Ty, bool IsComplex) const override;
624 unsigned BasicTTI::getAddressComputationCost(Type *Ty, bool IsComplex) const { function in class:BasicTTI
/external/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.cpp120 unsigned getAddressComputationCost(Type *Ty, bool IsComplex) const override;
426 unsigned AArch64TTI::getAddressComputationCost(Type *Ty, bool IsComplex) const { function in class:AArch64TTI
/external/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.cpp99 unsigned getAddressComputationCost(Type *PtrTy,
824 unsigned X86TTI::getAddressComputationCost(Type *Ty, bool IsComplex) const { function in class:X86TTI
834 return TargetTransformInfo::getAddressComputationCost(Ty, IsComplex);
/external/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.cpp126 unsigned getAddressComputationCost(Type *Val,
429 unsigned ARMTTI::getAddressComputationCost(Type *Ty, bool IsComplex) const { function in class:ARMTTI
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp1014 ICost += TTI->getAddressComputationCost(aTypeI);
1015 JCost += TTI->getAddressComputationCost(aTypeJ);
1016 VCost += TTI->getAddressComputationCost(VType);
H A DLoopVectorize.cpp5752 return TTI.getAddressComputationCost(VectorTy) +
5778 Cost += VF * TTI.getAddressComputationCost(PtrTy, IsComplexComputation);
5785 unsigned Cost = TTI.getAddressComputationCost(VectorTy);

Completed in 126 milliseconds