reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
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())); 417tools/llvm-mca/llvm-mca.cpp
375 std::unique_ptr<MCInstrAnalysis> MCIA( 376 TheTarget->createMCInstrAnalysis(MCII.get())); 377tools/llvm-objdump/llvm-objdump.cpp
1584 std::unique_ptr<const MCInstrAnalysis> MIA( 1585 TheTarget->createMCInstrAnalysis(MII.get())); 1586tools/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);