Home
last modified time | relevance | path

Searched refs:getRegUsageForType (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h712 InstructionCost getRegUsageForType(Type *Ty) const;
1531 virtual InstructionCost getRegUsageForType(Type *Ty) = 0;
1925 InstructionCost getRegUsageForType(Type *Ty) override { in getRegUsageForType() function
1926 return Impl.getRegUsageForType(Ty); in getRegUsageForType()
H A DTargetTransformInfoImpl.h294 InstructionCost getRegUsageForType(Type *Ty) const { return 1; } in getRegUsageForType() function
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp452 InstructionCost TargetTransformInfo::getRegUsageForType(Type *Ty) const { in getRegUsageForType() function in TargetTransformInfo
453 return TTIImpl->getRegUsageForType(Ty); in getRegUsageForType()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h359 InstructionCost getRegUsageForType(Type *Ty) { in getRegUsageForType() function
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp6572 return *TTICapture.getRegUsageForType(VectorType::get(Ty, VF)).getValue(); in calculateRegisterUsage()