Searched defs:getVectorInstrCost (Results 1 - 8 of 8) sorted by relevance

/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.cpp95 int AMDGPUTTIImpl::getVectorInstrCost(unsigned Opcode, Type *ValTy, function in class:AMDGPUTTIImpl
102 return BaseT::getVectorInstrCost(Opcode, ValTy, Index);
/external/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.cpp243 int ARMTTIImpl::getVectorInstrCost(unsigned Opcode, Type *ValTy, function in class:ARMTTIImpl
264 return std::max(BaseT::getVectorInstrCost(Opcode, ValTy, Index), 2U);
267 return BaseT::getVectorInstrCost(Opcode, ValTy, Index);
/external/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.cpp294 int PPCTTIImpl::getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index) { function in class:PPCTTIImpl
305 return BaseT::getVectorInstrCost(Opcode, Val, Index);
311 return BaseT::getVectorInstrCost(Opcode, Val, Index);
328 return LHSPenalty + BaseT::getVectorInstrCost(Opcode, Val, Index);
330 return BaseT::getVectorInstrCost(Opcode, Val, Index);
385 Cost += getVectorInstrCost(Instruction::ExtractElement, Src, i);
/external/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.cpp294 int AArch64TTIImpl::getVectorInstrCost(unsigned Opcode, Type *Val, function in class:AArch64TTIImpl
/external/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp259 int TargetTransformInfo::getVectorInstrCost(unsigned Opcode, Type *Val, function in class:TargetTransformInfo
261 int Cost = TTIImpl->getVectorInstrCost(Opcode, Val, Index);
/external/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.cpp914 int X86TTIImpl::getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index) { function in class:X86TTIImpl
934 return BaseT::getVectorInstrCost(Opcode, Val, Index);
943 Cost += getVectorInstrCost(Instruction::InsertElement, Ty, i);
945 Cost += getVectorInstrCost(Instruction::ExtractElement, Ty, i);
/external/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h293 unsigned getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index) { function in class:llvm::TargetTransformInfoImplBase
/external/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h54 ->getVectorInstrCost(Instruction::InsertElement, Ty, i);
57 ->getVectorInstrCost(Instruction::ExtractElement, Ty, i);
76 ->getVectorInstrCost(Instruction::InsertElement, Ty, i);
78 ->getVectorInstrCost(Instruction::ExtractElement, Ty, i);
474 unsigned getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index) { function in class:llvm::BasicTTIImplBase
549 Cost += static_cast<T *>(this)->getVectorInstrCost(
555 InsSubCost += static_cast<T *>(this)->getVectorInstrCost(
571 ExtSubCost += static_cast<T *>(this)->getVectorInstrCost(
577 ->getVectorInstrCost(Instruction::InsertElement, VT, i);

Completed in 188 milliseconds