HomeSort by: relevance | last modified time | path
    Searched refs:BaseCost (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMTargetTransformInfo.cpp 793 int BaseCost = ST->hasMVEIntegerOps() && Src->isVectorTy()
797 BaseCost * BaseT::getCastInstrCost(Opcode, Dst, Src, CCH, CostKind, I));
958 int BaseCost = ST->getMVEVectorCostFactor(CostKind);
966 return LT.first * BaseCost +
968 return BaseCost;
974 int BaseCost = 1;
976 BaseCost = ST->getMVEVectorCostFactor(CostKind);
978 return BaseCost *
1238 int BaseCost = ST->hasMVEIntegerOps() && Tp->isVectorTy()
1241 return BaseCost * BaseT::getShuffleCost(Kind, Tp, Mask, Index, SubTp)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZTargetTransformInfo.cpp 727 auto BaseCost = BaseT::getCastInstrCost(Opcode, Dst, Src, CCH, CostKind, I);
728 return BaseCost == 0 ? BaseCost : 1;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineBlockPlacement.cpp 873 BlockFrequency BaseCost = P + V;
875 return greaterWithBias(BaseCost, DupCost, EntryFreq);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp 7145 InstructionCost BaseCost = TTI.getArithmeticReductionCost(
7167 if (RedCost.isValid() && RedCost < BaseCost + ExtCost)
7190 if (RedCost.isValid() && RedCost < ExtCost * 2 + MulCost + BaseCost)
7200 if (RedCost.isValid() && RedCost < MulCost + BaseCost)
7205 return I == RetI ? BaseCost : InstructionCost::getInvalid();

Completed in 27 milliseconds