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

References

include/llvm/Pass.h
  213   AnalysisType &getAnalysisID(AnalysisID PI) const;
include/llvm/PassAnalysisSupport.h
   66     return addRequiredID(PassClass::ID);
  220 AnalysisType &Pass::getAnalysis() const {
  222   return getAnalysisID<AnalysisType>(&AnalysisType::ID);
  222   return getAnalysisID<AnalysisType>(&AnalysisType::ID);
include/llvm/PassSupport.h
   76 template <typename PassName> Pass *callDefaultCtor() { return new PassName(); }
lib/Analysis/ModuleSummaryAnalysis.cpp
  851   return new ModuleSummaryIndexWrapperPass();
lib/Bitcode/Writer/BitcodeWriterPass.cpp
   55               ? &(getAnalysis<ModuleSummaryIndexWrapperPass>().getIndex())
   64         AU.addRequired<ModuleSummaryIndexWrapperPass>();
lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp
  511         &(getAnalysis<ModuleSummaryIndexWrapperPass>().getIndex());
  518     AU.addRequired<ModuleSummaryIndexWrapperPass>();