This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from a83a0234ccb Add REQUIRES line to machine-size-remarks new dd24af18f68 [XRay] Add the `llvm-xray fdr-dump` implementation
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/llvm/XRay/BlockPrinter.h | 60 ++++++++ lib/XRay/BlockPrinter.cpp | 96 +++++++++++++ lib/XRay/CMakeLists.txt | 1 + .../llvm-xray/X86/fdr-dump-arg1-version-3.txt | 25 ++++ test/tools/llvm-xray/X86/fdr-dump-arg1.txt | 16 +++ tools/llvm-xray/CMakeLists.txt | 1 + tools/llvm-xray/xray-fdr-dump.cpp | 119 ++++++++++++++++ unittests/XRay/CMakeLists.txt | 3 +- unittests/XRay/FDRRecordsTest.cpp | 156 +++++++++++++++++++++ 9 files changed, 476 insertions(+), 1 deletion(-) create mode 100644 include/llvm/XRay/BlockPrinter.h create mode 100644 lib/XRay/BlockPrinter.cpp create mode 100644 test/tools/llvm-xray/X86/fdr-dump-arg1-version-3.txt create mode 100644 test/tools/llvm-xray/X86/fdr-dump-arg1.txt create mode 100644 tools/llvm-xray/xray-fdr-dump.cpp create mode 100644 unittests/XRay/FDRRecordsTest.cpp