This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from d27a39a [PM] Rewrite the loop pass manager to use a worklist and augm [...] new 14cdbca [XRay] Define the library for XRay trace logs
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/Trace.h | 71 ++++++++++++ include/llvm/XRay/XRayRecord.h | 76 +++++++++++++ .../llvm/XRay/YAMLXRayRecord.h | 15 +-- lib/CMakeLists.txt | 1 + lib/XRay/CMakeLists.txt | 13 +++ .../xray-log-reader.cc => lib/XRay/Trace.cpp | 123 +++++++++++++-------- test/tools/llvm-xray/X86/convert-roundtrip.yaml | 2 +- tools/llvm-xray/CMakeLists.txt | 4 +- tools/llvm-xray/xray-converter.cc | 59 ++++------ tools/llvm-xray/xray-converter.h | 8 +- tools/llvm-xray/xray-log-reader.h | 57 ---------- tools/llvm-xray/xray-record.h | 55 --------- 12 files changed, 272 insertions(+), 212 deletions(-) create mode 100644 include/llvm/XRay/Trace.h create mode 100644 include/llvm/XRay/XRayRecord.h rename tools/llvm-xray/xray-record-yaml.h => include/llvm/XRay/YAMLXRayRecord.h (86%) create mode 100644 lib/XRay/CMakeLists.txt rename tools/llvm-xray/xray-log-reader.cc => lib/XRay/Trace.cpp (65%) delete mode 100644 tools/llvm-xray/xray-log-reader.h delete mode 100644 tools/llvm-xray/xray-record.h