HomeSort by relevance Sort by last modified time
    Searched defs:getVectorInstrCost (Results 1 - 8 of 8) sorted by null

  /external/llvm/lib/Target/AMDGPU/
AMDGPUTargetTransformInfo.cpp 95 int AMDGPUTTIImpl::getVectorInstrCost(unsigned Opcode, Type *ValTy,
102 return BaseT::getVectorInstrCost(Opcode, ValTy, Index);
  /external/llvm/lib/Target/ARM/
ARMTargetTransformInfo.cpp 243 int ARMTTIImpl::getVectorInstrCost(unsigned Opcode, Type *ValTy,
264 return std::max(BaseT::getVectorInstrCost(Opcode, ValTy, Index), 2U);
267 return BaseT::getVectorInstrCost(Opcode, ValTy, Index);
  /external/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.cpp 294 int PPCTTIImpl::getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index) {
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/
AArch64TargetTransformInfo.cpp 294 int AArch64TTIImpl::getVectorInstrCost(unsigned Opcode, Type *Val,
  /external/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h 293 unsigned getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index) {
  /external/llvm/include/llvm/CodeGen/
BasicTTIImpl.h 54 ->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) {
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);
  /external/llvm/lib/Analysis/
TargetTransformInfo.cpp 259 int TargetTransformInfo::getVectorInstrCost(unsigned Opcode, Type *Val,
261 int Cost = TTIImpl->getVectorInstrCost(Opcode, Val, Index);
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.cpp     [all...]

Completed in 220 milliseconds