This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 0a5dcd6 [CodeGen] Implement the SUnit::print() method new 6e1f066 [XRay] Implement `llvm-xray convert` -- trace file conversion
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: .../X86/Inputs/elf64-objcopied-instrmap.bin | Bin 0 -> 144070 bytes .../tools/llvm-xray/X86/Inputs/elf64-sample-o2.bin | Bin 0 -> 478375 bytes .../llvm-xray/X86/Inputs/naive-log-simple.xray | Bin 0 -> 224 bytes .../llvm-xray/X86/Inputs/simple-xray-instrmap.yaml | 14 ++ ...d-instrmap-sizes.bin => bad-instrmap-sizes.txt} | 0 test/tools/llvm-xray/X86/convert-roundtrip.yaml | 28 +++ test/tools/llvm-xray/X86/convert-to-yaml.txt | 23 +++ .../llvm-xray/X86/convert-with-debug-syms.txt | 23 +++ .../X86/convert-with-standalone-instrmap.txt | 23 +++ .../llvm-xray/X86/convert-with-yaml-instrmap.txt | 23 +++ tools/llvm-xray/CMakeLists.txt | 8 +- tools/llvm-xray/func-id-helper.cc | 60 ++++++ tools/llvm-xray/func-id-helper.h | 49 +++++ tools/llvm-xray/xray-converter.cc | 222 +++++++++++++++++++++ tools/llvm-xray/xray-converter.h | 39 ++++ tools/llvm-xray/xray-extract.cc | 63 +++++- tools/llvm-xray/xray-log-reader.cc | 165 +++++++++++++++ tools/llvm-xray/xray-log-reader.h | 57 ++++++ tools/llvm-xray/xray-record-yaml.h | 102 ++++++++++ tools/llvm-xray/xray-record.h | 55 +++++ 20 files changed, 947 insertions(+), 7 deletions(-) create mode 100755 test/tools/llvm-xray/X86/Inputs/elf64-objcopied-instrmap.bin create mode 100755 test/tools/llvm-xray/X86/Inputs/elf64-sample-o2.bin create mode 100644 test/tools/llvm-xray/X86/Inputs/naive-log-simple.xray create mode 100644 test/tools/llvm-xray/X86/Inputs/simple-xray-instrmap.yaml rename test/tools/llvm-xray/X86/{bad-instrmap-sizes.bin => bad-instrmap-sizes.txt} (100%) create mode 100644 test/tools/llvm-xray/X86/convert-roundtrip.yaml create mode 100644 test/tools/llvm-xray/X86/convert-to-yaml.txt create mode 100644 test/tools/llvm-xray/X86/convert-with-debug-syms.txt create mode 100644 test/tools/llvm-xray/X86/convert-with-standalone-instrmap.txt create mode 100644 test/tools/llvm-xray/X86/convert-with-yaml-instrmap.txt create mode 100644 tools/llvm-xray/func-id-helper.cc create mode 100644 tools/llvm-xray/func-id-helper.h create mode 100644 tools/llvm-xray/xray-converter.cc create mode 100644 tools/llvm-xray/xray-converter.h create mode 100644 tools/llvm-xray/xray-log-reader.cc create mode 100644 tools/llvm-xray/xray-log-reader.h create mode 100644 tools/llvm-xray/xray-record-yaml.h create mode 100644 tools/llvm-xray/xray-record.h