reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
include/llvm/Support/TargetRegistry.h
  355   ///
  356   MCInstrAnalysis *createMCInstrAnalysis(const MCInstrInfo *Info) const {
  357     if (!MCInstrAnalysisCtorFn)
include/llvm/Support/TargetRegistry.h
  353 
  354   /// createMCInstrAnalysis - Create a MCInstrAnalysis implementation.
  355   ///
include/llvm/Support/TargetRegistry.h
  355   ///
  356   MCInstrAnalysis *createMCInstrAnalysis(const MCInstrInfo *Info) const {
  357     if (!MCInstrAnalysisCtorFn)
lib/Object/ELFObjectFile.cpp
  404   std::unique_ptr<const MCInstrAnalysis> MIA(
  405       T->createMCInstrAnalysis(MII.get()));
  406   if (!MIA)
tools/llvm-cfi-verify/lib/FileAnalysis.cpp
  415 
  416   MIA.reset(ObjectTarget->createMCInstrAnalysis(MII.get()));
  417 
tools/llvm-mca/llvm-mca.cpp
  375   std::unique_ptr<MCInstrAnalysis> MCIA(
  376       TheTarget->createMCInstrAnalysis(MCII.get()));
  377 
tools/llvm-objdump/llvm-objdump.cpp
 1584   std::unique_ptr<const MCInstrAnalysis> MIA(
 1585       TheTarget->createMCInstrAnalysis(MII.get()));
 1586 
tools/sancov/sancov.cpp
  735   std::unique_ptr<const MCInstrAnalysis> MIA(
  736       TheTarget->createMCInstrAnalysis(MII.get()));
  737   failIfEmpty(MIA, "no instruction analysis info for target " + TripleName);