reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/Analysis/TargetTransformInfo.h
  925   int getCmpSelInstrCost(unsigned Opcode, Type *ValTy,

References

lib/Analysis/TargetTransformInfo.cpp
 1193     return getCmpSelInstrCost(I->getOpcode(), I->getType(), CondTy, I);
 1198     return getCmpSelInstrCost(I->getOpcode(), ValTy, I->getType(), I);
lib/Transforms/Vectorize/LoopVectorize.cpp
 6150              TTI.getCmpSelInstrCost(
 6234     return TTI.getCmpSelInstrCost(I->getOpcode(), VectorTy, CondTy, I);
 6243     return TTI.getCmpSelInstrCost(I->getOpcode(), VectorTy, nullptr, I);
lib/Transforms/Vectorize/SLPVectorizer.cpp
 3070       int ScalarEltCost = TTI->getCmpSelInstrCost(E->getOpcode(), ScalarTy,
 3077       int VecCost = TTI->getCmpSelInstrCost(E->getOpcode(), VecTy, MaskTy, VL0);
 6559           TTI->getCmpSelInstrCost(ReductionData.getOpcode(), ScalarTy) +
 6560           TTI->getCmpSelInstrCost(Instruction::Select, ScalarTy,