This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 446d7cc Cloning: Also clone global variable attached metadata. new 5a35548 [XRay] Implement `llvm-xray extract`, start of the llvm-xray tool new a25c1fd [XRay] Add llvm-xray as a dependency to test/CMakeLists.txt
The 2 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: test/CMakeLists.txt | 1 + test/lit.cfg | 1 + test/tools/llvm-xray/X86/Inputs/elf32-noxray.bin | Bin 0 -> 7294 bytes .../llvm-xray/X86/Inputs/elf64-badentrysizes.bin | Bin 0 -> 469664 bytes test/tools/llvm-xray/X86/Inputs/elf64-example.bin | Bin 0 -> 469664 bytes .../llvm-xray/X86/Inputs/elf64-noinstr-map.bin | Bin 0 -> 8479 bytes .../tools/llvm-xray/X86/Inputs/empty-file.bin | 0 test/tools/llvm-xray/X86/bad-instrmap-sizes.bin | 3 + test/tools/llvm-xray/X86/empty.txt | 4 + test/tools/llvm-xray/X86/extract-instrmap.ll | 15 ++ test/tools/llvm-xray/X86/lit.local.cfg | 1 + test/tools/llvm-xray/X86/no-instr-map.txt | 4 + test/tools/llvm-xray/X86/no-such-file.txt | 4 + test/tools/llvm-xray/X86/unsupported-elf32.txt | 3 + tools/llvm-xray/CMakeLists.txt | 10 + tools/llvm-xray/llvm-xray.cc | 42 ++++ tools/llvm-xray/xray-extract.cc | 236 +++++++++++++++++++++ tools/llvm-xray/xray-extract.h | 58 +++++ tools/llvm-xray/xray-registry.cc | 41 ++++ tools/llvm-xray/xray-registry.h | 41 ++++ tools/llvm-xray/xray-sleds.h | 32 +++ 21 files changed, 496 insertions(+) create mode 100755 test/tools/llvm-xray/X86/Inputs/elf32-noxray.bin create mode 100755 test/tools/llvm-xray/X86/Inputs/elf64-badentrysizes.bin create mode 100755 test/tools/llvm-xray/X86/Inputs/elf64-example.bin create mode 100755 test/tools/llvm-xray/X86/Inputs/elf64-noinstr-map.bin copy bindings/python/llvm/__init__.py => test/tools/llvm-xray/X86/Inputs/empty-fil [...] create mode 100644 test/tools/llvm-xray/X86/bad-instrmap-sizes.bin create mode 100644 test/tools/llvm-xray/X86/empty.txt create mode 100644 test/tools/llvm-xray/X86/extract-instrmap.ll create mode 100644 test/tools/llvm-xray/X86/lit.local.cfg create mode 100644 test/tools/llvm-xray/X86/no-instr-map.txt create mode 100644 test/tools/llvm-xray/X86/no-such-file.txt create mode 100644 test/tools/llvm-xray/X86/unsupported-elf32.txt create mode 100644 tools/llvm-xray/CMakeLists.txt create mode 100644 tools/llvm-xray/llvm-xray.cc create mode 100644 tools/llvm-xray/xray-extract.cc create mode 100644 tools/llvm-xray/xray-extract.h create mode 100644 tools/llvm-xray/xray-registry.cc create mode 100644 tools/llvm-xray/xray-registry.h create mode 100644 tools/llvm-xray/xray-sleds.h