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

  /external/llvm/lib/CodeGen/
BasicTargetTransformInfo.cpp 33 unsigned getScalarizationOverhead(Type *Ty, bool Insert, bool Extract) const;
191 unsigned BasicTTI::getScalarizationOverhead(Type *Ty, bool Insert,
255 return getScalarizationOverhead(Ty, true, true) + Num * Cost;
342 return getScalarizationOverhead(Dst, true, true) + Num * Cost;
350 return (Src->isVectorTy()? getScalarizationOverhead(Src, false, true):0) +
351 (Dst->isVectorTy()? getScalarizationOverhead(Dst, true, false):0);
392 return getScalarizationOverhead(ValTy, true, false) + Num * Cost;
423 ScalarizationCost = getScalarizationOverhead(RetTy, true, false);
428 ScalarizationCost += getScalarizationOverhead(Tys[i], false, true);
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.cpp 41 unsigned getScalarizationOverhead(Type *Ty, bool Insert, bool Extract) const;
543 unsigned X86TTI::getScalarizationOverhead(Type *Ty, bool Insert,
581 unsigned SplitCost = getScalarizationOverhead(Src,

Completed in 570 milliseconds