[clang] Add source file name for template instantiations in -ftime-trace (PR #98320)
Ilya Biryukov via cfe-commits
cfe-commits at lists.llvm.org
Thu Jul 11 07:32:12 PDT 2024
================
@@ -3430,6 +3430,7 @@ Sema::InstantiateClass(SourceLocation PointOfInstantiation,
llvm::raw_string_ostream OS(Name);
Instantiation->getNameForDiagnostic(OS, getPrintingPolicy(),
/*Qualified=*/true);
+ OS << ", file:" << SourceMgr.getFilename(Instantiation->getLocation());
----------------
ilya-biryukov wrote:
Would it be possible to add it in a structured manner rather than as a substring?
We are outputting JSON after all, it would be much more convenient to keep `args.detail` as is and add another one (e.g. `args.detail_file`)?
https://github.com/llvm/llvm-project/pull/98320
More information about the cfe-commits
mailing list