This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 4a9bb285e14 [MachineOutliner] Drop candidates that require fixups if it [...] new bab257c102e [llvm-tapi] initial commit, supports ELF text stubs new dda0ca0e1ac [Hexagon] Change instruction type field in TSFlags to 7 bits
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: include/llvm/TextAPI/ELF/ELFStub.h | 69 +++++++ include/llvm/TextAPI/ELF/TBEHandler.h | 46 +++++ lib/CMakeLists.txt | 1 + lib/LLVMBuild.txt | 1 + lib/Target/Hexagon/HexagonDepITypes.h | 86 +++++---- lib/Target/Hexagon/HexagonDepITypes.td | 88 +++++---- lib/Target/Hexagon/HexagonInstrFormats.td | 72 ++++---- lib/Target/Hexagon/HexagonInstrFormatsV5.td | 30 +-- lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h | 83 ++++----- lib/TextAPI/CMakeLists.txt | 7 + lib/TextAPI/ELF/ELFStub.cpp | 29 +++ lib/TextAPI/ELF/TBEHandler.cpp | 176 ++++++++++++++++++ lib/{ => TextAPI}/LLVMBuild.txt | 41 +--- unittests/CMakeLists.txt | 1 + unittests/TextAPI/CMakeLists.txt | 7 + unittests/TextAPI/ELFYAMLTest.cpp | 216 ++++++++++++++++++++++ 16 files changed, 735 insertions(+), 218 deletions(-) create mode 100644 include/llvm/TextAPI/ELF/ELFStub.h create mode 100644 include/llvm/TextAPI/ELF/TBEHandler.h create mode 100644 lib/TextAPI/CMakeLists.txt create mode 100644 lib/TextAPI/ELF/ELFStub.cpp create mode 100644 lib/TextAPI/ELF/TBEHandler.cpp copy lib/{ => TextAPI}/LLVMBuild.txt (56%) create mode 100644 unittests/TextAPI/CMakeLists.txt create mode 100644 unittests/TextAPI/ELFYAMLTest.cpp