[PATCH] D84473: Dump Accumulator
Kazu Hirata via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 23 16:12:33 PDT 2020
kazu created this revision.
kazu added reviewers: davidxl, mtrofin, wmi.
kazu added a project: LLVM.
Herald added subscribers: cfe-commits, rupprecht, MaskRay, hiraditya, mgorny.
Herald added a reviewer: jhenderson.
Herald added a project: clang.
This patch adds a utility called DumpAccumulator.
DumpAccumulator allows you to dump arbitrary text messages into a special
section called .llvm_dump. The linker then concatenates these messages into
the identically named section in the final executable.
This utility makes it easy to collect information from optimization
passes of interest in a build environment that caches compilation.
See llvm/include/llvm/Analysis/DumpAccumulator.h for usage.
The original implementation is from Mircea Trofin, and I generalized it.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D84473
Files:
clang/lib/CodeGen/BackendUtil.cpp
llvm/include/llvm/Analysis/DumpAccumulator.h
llvm/include/llvm/InitializePasses.h
llvm/lib/Analysis/CMakeLists.txt
llvm/lib/Analysis/DumpAccumulator.cpp
llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
llvm/lib/Passes/PassBuilder.cpp
llvm/lib/Passes/PassRegistry.def
llvm/test/Other/new-pm-defaults.ll
llvm/tools/llvm-readobj/ObjDumper.cpp
llvm/tools/llvm-readobj/ObjDumper.h
llvm/tools/llvm-readobj/llvm-readobj.cpp
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D84473.280285.patch
Type: text/x-patch
Size: 14494 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200723/eb84f3d6/attachment.bin>
More information about the llvm-commits
mailing list