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

Declarations

include/llvm/Analysis/TargetTransformInfo.h
  920   int getCFInstrCost(unsigned Opcode) const;

References

lib/Analysis/TargetTransformInfo.cpp
 1152     return getCFInstrCost(I->getOpcode());
lib/Transforms/Vectorize/LoopVectorize.cpp
 5619       ScalarCost += VF * TTI.getCFInstrCost(Instruction::PHI);
 6125               (TTI.getCFInstrCost(Instruction::Br) * VF));
 6128       return TTI.getCFInstrCost(Instruction::Br);
 6154     return TTI.getCFInstrCost(Instruction::PHI);
 6171       Cost += VF * TTI.getCFInstrCost(Instruction::PHI);