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

/freebsd-10.2-release/contrib/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp222 unsigned TargetTransformInfo::getAddressComputationCost(Type *Tp, function in class:TargetTransformInfo
224 return PrevTTI->getAddressComputationCost(Tp, IsComplex);
597 unsigned getAddressComputationCost(Type *Tp, bool) const { function in struct:__anon2227::NoTTI
H A DCostModel.cpp375 return TTI->getAddressComputationCost(ValTy);
/freebsd-10.2-release/contrib/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h402 virtual unsigned getAddressComputationCost(Type *Ty,
/freebsd-10.2-release/contrib/llvm/lib/CodeGen/
H A DBasicTargetTransformInfo.cpp115 virtual unsigned getAddressComputationCost(Type *Ty, bool IsComplex) const;
511 unsigned BasicTTI::getAddressComputationCost(Type *Ty, bool IsComplex) const { function in class:BasicTTI
/freebsd-10.2-release/contrib/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.cpp103 virtual unsigned getAddressComputationCost(Type *PtrTy, bool IsComplex) const;
602 unsigned X86TTI::getAddressComputationCost(Type *Ty, bool IsComplex) const { function in class:X86TTI
612 return TargetTransformInfo::getAddressComputationCost(Ty, IsComplex);
/freebsd-10.2-release/contrib/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.cpp127 unsigned getAddressComputationCost(Type *Val, bool IsComplex) const;
428 unsigned ARMTTI::getAddressComputationCost(Type *Ty, bool IsComplex) const { function in class:ARMTTI
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp986 ICost += TTI->getAddressComputationCost(aTypeI);
987 JCost += TTI->getAddressComputationCost(aTypeJ);
988 VCost += TTI->getAddressComputationCost(VType);
H A DLoopVectorize.cpp4950 return TTI.getAddressComputationCost(VectorTy) +
4976 Cost += VF * TTI.getAddressComputationCost(PtrTy, IsComplexComputation);
4983 unsigned Cost = TTI.getAddressComputationCost(VectorTy);

Completed in 102 milliseconds