This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 144d4899a3c [Support] On AIX, Check ENOTSUP on posix_fallocate instead [...] new e09c4ccc48c [XCOFF] Add functionality for parsing AIX XCOFF object file [...]
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/BinaryFormat/Magic.h | 1 + include/llvm/Object/Binary.h | 3 + include/llvm/Object/ObjectFile.h | 3 + include/llvm/Object/XCOFFObjectFile.h | 110 +++++++++ include/llvm/ObjectYAML/XCOFFYAML.h | 50 ++++ lib/BinaryFormat/Magic.cpp | 7 + lib/Object/Binary.cpp | 1 + lib/Object/CMakeLists.txt | 1 + lib/Object/ObjectFile.cpp | 2 + lib/Object/SymbolicFile.cpp | 1 + lib/Object/XCOFFObjectFile.cpp | 270 +++++++++++++++++++++ lib/ObjectYAML/CMakeLists.txt | 1 + lib/ObjectYAML/XCOFFYAML.cpp | 42 ++++ test/tools/obj2yaml/Inputs/aix_xcoff.o | Bin 0 -> 588 bytes .../Inputs/aix_xcoff_truncated_file_header.o | Bin 0 -> 6 bytes test/tools/obj2yaml/aix_xcoff.test | 11 + .../obj2yaml/aix_xcoff_truncated_file_header.test | 2 + tools/obj2yaml/CMakeLists.txt | 1 + tools/obj2yaml/obj2yaml.cpp | 4 + tools/obj2yaml/obj2yaml.h | 3 + tools/obj2yaml/xcoff2yaml.cpp | 52 ++++ 21 files changed, 565 insertions(+) create mode 100644 include/llvm/Object/XCOFFObjectFile.h create mode 100644 include/llvm/ObjectYAML/XCOFFYAML.h create mode 100644 lib/Object/XCOFFObjectFile.cpp create mode 100644 lib/ObjectYAML/XCOFFYAML.cpp create mode 100644 test/tools/obj2yaml/Inputs/aix_xcoff.o create mode 100644 test/tools/obj2yaml/Inputs/aix_xcoff_truncated_file_header.o create mode 100644 test/tools/obj2yaml/aix_xcoff.test create mode 100644 test/tools/obj2yaml/aix_xcoff_truncated_file_header.test create mode 100644 tools/obj2yaml/xcoff2yaml.cpp