This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from e1d3f2e65 Cut and paste error from r23162. new aceac352c Tool for using Intel(R) Processor Trace hardware feature
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: tools/CMakeLists.txt | 2 +- tools/intel-features/CMakeLists.txt | 66 ++ tools/intel-features/README.txt | 73 ++ tools/intel-features/cli-wrapper.cpp | 37 + tools/intel-features/intel-mpx/CMakeLists.txt | 9 + .../intel-mpx/cli-wrapper-mpxtable.cpp} | 22 +- .../intel-mpx/cli-wrapper-mpxtable.h | 10 +- tools/{ => intel-features}/intel-mpx/test/Makefile | 0 .../{ => intel-features}/intel-mpx/test/README.txt | 2 +- .../intel-mpx/test/TestMPXTable.py | 11 +- tools/{ => intel-features}/intel-mpx/test/main.cpp | 3 +- tools/intel-features/intel-pt/CMakeLists.txt | 31 + tools/intel-features/intel-pt/Decoder.cpp | 904 +++++++++++++++++++++ tools/intel-features/intel-pt/Decoder.h | 327 ++++++++ tools/intel-features/intel-pt/PTDecoder.cpp | 175 ++++ tools/intel-features/intel-pt/PTDecoder.h | 310 +++++++ tools/intel-features/intel-pt/README_CLI.txt | 123 +++ tools/intel-features/intel-pt/README_TOOL.txt | 311 +++++++ .../intel-features/intel-pt/interface/PTDecoder.i | 10 + tools/intel-features/scripts/CMakeLists.txt | 37 + .../scripts/lldb-intel-features.swig | 16 + tools/intel-features/scripts/python-typemaps.txt | 31 + tools/intel-mpx/CMakeLists.txt | 15 - 23 files changed, 2483 insertions(+), 42 deletions(-) create mode 100644 tools/intel-features/CMakeLists.txt create mode 100644 tools/intel-features/README.txt create mode 100644 tools/intel-features/cli-wrapper.cpp create mode 100644 tools/intel-features/intel-mpx/CMakeLists.txt rename tools/{intel-mpx/IntelMPXTablePlugin.cpp => intel-features/intel-mpx/cli-wr [...] copy packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/a.cpp => tools/ [...] rename tools/{ => intel-features}/intel-mpx/test/Makefile (100%) rename tools/{ => intel-features}/intel-mpx/test/README.txt (74%) rename tools/{ => intel-features}/intel-mpx/test/TestMPXTable.py (94%) rename tools/{ => intel-features}/intel-mpx/test/main.cpp (90%) create mode 100644 tools/intel-features/intel-pt/CMakeLists.txt create mode 100644 tools/intel-features/intel-pt/Decoder.cpp create mode 100644 tools/intel-features/intel-pt/Decoder.h create mode 100644 tools/intel-features/intel-pt/PTDecoder.cpp create mode 100644 tools/intel-features/intel-pt/PTDecoder.h create mode 100644 tools/intel-features/intel-pt/README_CLI.txt create mode 100644 tools/intel-features/intel-pt/README_TOOL.txt create mode 100644 tools/intel-features/intel-pt/interface/PTDecoder.i create mode 100644 tools/intel-features/scripts/CMakeLists.txt create mode 100644 tools/intel-features/scripts/lldb-intel-features.swig create mode 100644 tools/intel-features/scripts/python-typemaps.txt delete mode 100644 tools/intel-mpx/CMakeLists.txt