/external/llvm/include/llvm/Analysis/ |
D | TargetTransformInfo.h | 506 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()
|
D | TargetTransformInfoImpl.h | 326 unsigned getAddressComputationCost(Type *Tp, bool) { return 0; } in getAddressComputationCost() function
|
/external/llvm/lib/Target/ARM/ |
D | ARMTargetTransformInfo.h | 105 int getAddressComputationCost(Type *Val, bool IsComplex);
|
D | ARMTargetTransformInfo.cpp | 298 int ARMTTIImpl::getAddressComputationCost(Type *Ty, bool IsComplex) { in getAddressComputationCost() function in ARMTTIImpl
|
/external/llvm/lib/Target/X86/ |
D | X86TargetTransformInfo.h | 80 int getAddressComputationCost(Type *PtrTy, bool IsComplex);
|
D | X86TargetTransformInfo.cpp | 1046 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/ |
D | AArch64TargetTransformInfo.h | 111 int getAddressComputationCost(Type *Ty, bool IsComplex);
|
D | AArch64TargetTransformInfo.cpp | 365 int AArch64TTIImpl::getAddressComputationCost(Type *Ty, bool IsComplex) { in getAddressComputationCost() function in AArch64TTIImpl
|
/external/llvm/lib/Analysis/ |
D | TargetTransformInfo.cpp | 310 int TargetTransformInfo::getAddressComputationCost(Type *Tp, in getAddressComputationCost() function in TargetTransformInfo 312 int Cost = TTIImpl->getAddressComputationCost(Tp, IsComplex); in getAddressComputationCost()
|
/external/llvm/include/llvm/CodeGen/ |
D | BasicTTIImpl.h | 768 unsigned getAddressComputationCost(Type *Ty, bool IsComplex) { return 0; } in getAddressComputationCost() function
|
/external/llvm/lib/Transforms/Vectorize/ |
D | BBVectorize.cpp | 1018 ICost += TTI->getAddressComputationCost(aTypeI); in areInstsCompatible() 1019 JCost += TTI->getAddressComputationCost(aTypeJ); in areInstsCompatible() 1020 VCost += TTI->getAddressComputationCost(VType); in areInstsCompatible()
|
D | LoopVectorize.cpp | 5439 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/ |
D | RewriteStatepointsForGC.cpp | 2141 Cost += TTI.getAddressComputationCost(ValTy); in chainToBasePointerCost()
|