Home
last modified time | relevance | path

Searched refs:getAddressComputationCost (Results 1 – 13 of 13) sorted by relevance

/external/llvm/include/llvm/Analysis/
DTargetTransformInfo.h506 int getAddressComputationCost(Type *Ty, bool IsComplex = false) const;
629 virtual int getAddressComputationCost(Type *Ty, bool IsComplex) = 0;
815 int getAddressComputationCost(Type *Ty, bool IsComplex) override { in getAddressComputationCost() function
816 return Impl.getAddressComputationCost(Ty, IsComplex); in getAddressComputationCost()
DTargetTransformInfoImpl.h326 unsigned getAddressComputationCost(Type *Tp, bool) { return 0; } in getAddressComputationCost() function
/external/llvm/lib/Target/ARM/
DARMTargetTransformInfo.h105 int getAddressComputationCost(Type *Val, bool IsComplex);
DARMTargetTransformInfo.cpp298 int ARMTTIImpl::getAddressComputationCost(Type *Ty, bool IsComplex) { in getAddressComputationCost() function in ARMTTIImpl
/external/llvm/lib/Target/X86/
DX86TargetTransformInfo.h80 int getAddressComputationCost(Type *PtrTy, bool IsComplex);
DX86TargetTransformInfo.cpp1046 int X86TTIImpl::getAddressComputationCost(Type *Ty, bool IsComplex) { in getAddressComputationCost() function in X86TTIImpl
1056 return BaseT::getAddressComputationCost(Ty, IsComplex); in getAddressComputationCost()
/external/llvm/lib/Target/AArch64/
DAArch64TargetTransformInfo.h111 int getAddressComputationCost(Type *Ty, bool IsComplex);
DAArch64TargetTransformInfo.cpp365 int AArch64TTIImpl::getAddressComputationCost(Type *Ty, bool IsComplex) { in getAddressComputationCost() function in AArch64TTIImpl
/external/llvm/lib/Analysis/
DTargetTransformInfo.cpp310 int TargetTransformInfo::getAddressComputationCost(Type *Tp, in getAddressComputationCost() function in TargetTransformInfo
312 int Cost = TTIImpl->getAddressComputationCost(Tp, IsComplex); in getAddressComputationCost()
/external/llvm/include/llvm/CodeGen/
DBasicTTIImpl.h768 unsigned getAddressComputationCost(Type *Ty, bool IsComplex) { return 0; } in getAddressComputationCost() function
/external/llvm/lib/Transforms/Vectorize/
DBBVectorize.cpp1018 ICost += TTI->getAddressComputationCost(aTypeI); in areInstsCompatible()
1019 JCost += TTI->getAddressComputationCost(aTypeJ); in areInstsCompatible()
1020 VCost += TTI->getAddressComputationCost(VType); in areInstsCompatible()
DLoopVectorize.cpp5439 return TTI.getAddressComputationCost(VectorTy) + in getInstructionCost()
5506 Cost += VF * TTI.getAddressComputationCost(PtrTy, IsComplexComputation); in getInstructionCost()
5513 unsigned Cost = TTI.getAddressComputationCost(VectorTy); in getInstructionCost()
/external/llvm/lib/Transforms/Scalar/
DRewriteStatepointsForGC.cpp2141 Cost += TTI.getAddressComputationCost(ValTy); in chainToBasePointerCost()