This is an automated email from the git hooks/post-receive script.
Peter Smith pushed a change to branch linaro-local/InterworkVeneers in repository toolchain/llvm/lld.
discards 739d3d1 First implementation of new Thunk interface for MIPS and ARM. discards be6394d First implementation of Thunks module discards d06ab14 Add support for relocations to PLT entries. We need to accoun [...] discards e10486b Add basic ARM/Thumb interworking veneer support for non-PLT e [...] discards af834c3 Initial support for interworking veneers add support for movt [...] adds bb2213b [lld][MachO] Remove SimpleFile::definedAtoms(). adds 7814d48 Don't check the section index, it is not relevant for this test. adds 75edc46 Handle empty versions. adds 01fac1d Refactor ELF type inference functions. adds 4dfdcb7 [ELF] Support for wildcard in version scripts. adds 5c15d6d Make SymbolTable::findAll to return only defined symbols. adds d36769d Rename matchStr -> globMatch. adds 44beced [LTO] Infer ELFKind/EMachine from Bitcode files adds 918a54e Create Strings.cpp and move string manipulation functions to [...] adds 9bdbd6e [ELF] - Updated comments. NFC. adds cbe9851 Move isValidCIdentifier to Strings.cpp. adds 4371250 [ELF] - Check the input bitcode files for compatibility. adds 7afe2b6 Convert DOS-style newlines. adds b752e4b [ELF] - Added support for --unresolved-symbols option. new 616a191 Add Thunk support framework for ARM and Mips
This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this:
* -- * -- B -- O -- O -- O (739d3d1) \ N -- N -- N refs/heads/linaro-local/InterworkVeneers (616a191)
You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B.
Any revisions marked "omits" are not gone; other references still refer to them. Any revisions marked "discards" are gone forever.
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: ELF/CMakeLists.txt | 1 + ELF/Config.h | 5 +- ELF/Driver.cpp | 45 +++++- ELF/DriverUtils.cpp | 16 -- ELF/InputFiles.cpp | 98 +++++++----- ELF/InputFiles.h | 7 +- ELF/InputSection.cpp | 17 +-- ELF/InputSection.h | 6 +- ELF/LinkerScript.cpp | 31 +--- ELF/Options.td | 3 + ELF/OutputSections.cpp | 13 +- ELF/Relocations.cpp | 19 +-- ELF/Relocations.h | 2 +- ELF/ScriptParser.cpp | 15 -- ELF/ScriptParser.h | 2 - ELF/Strings.cpp | 70 +++++++++ ELF/{EhFrame.h => Strings.h} | 12 +- ELF/SymbolListFile.cpp | 7 +- ELF/SymbolTable.cpp | 49 ++++-- ELF/SymbolTable.h | 1 + ELF/Symbols.cpp | 4 +- ELF/Symbols.h | 4 - ELF/Thunks.cpp | 169 ++++++++++----------- ELF/Thunks.h | 19 +-- ELF/Writer.cpp | 17 ++- include/lld/Core/Simple.h | 3 - lib/ReaderWriter/MachO/LayoutPass.cpp | 14 +- lib/ReaderWriter/MachO/LayoutPass.h | 10 +- test/ELF/Inputs/empty-ver.ver | 2 + ...llow-shlib-undefined.s => unresolved-symbols.s} | 2 +- test/ELF/arm-thumb-interwork-thunk.s | 90 ++++++----- test/ELF/empty-ver.s | 25 +++ test/ELF/lto/mix-platforms.ll | 10 ++ test/ELF/lto/pic.ll | 2 +- test/ELF/unresolved-symbols.s | 63 ++++++++ test/ELF/version-script.s | 6 +- test/ELF/version-wildcard.test | 65 ++++++++ 37 files changed, 578 insertions(+), 346 deletions(-) create mode 100644 ELF/Strings.cpp copy ELF/{EhFrame.h => Strings.h} (56%) create mode 100644 test/ELF/Inputs/empty-ver.ver copy test/ELF/Inputs/{allow-shlib-undefined.s => unresolved-symbols.s} (50%) create mode 100644 test/ELF/empty-ver.s create mode 100644 test/ELF/lto/mix-platforms.ll create mode 100644 test/ELF/unresolved-symbols.s create mode 100644 test/ELF/version-wildcard.test