This is an automated email from the git hooks/post-receive script.
Peter Smith pushed a change to branch linaro-local/tls in repository toolchain/llvm/lld.
discards dfa9efd Support for standard model ARM TLS adds 9ed3250 -Bsymbolic should not make symbols more preemptable. adds cf64318 Move demangle() from Symbols.cpp to Strings.cpp. adds dbd7307 [ELF] Ignore --demangle. We already demangle symbols by default. adds 5c4ea8e Test --demangle feature. adds 9eb1a44 [ELF] - Do not error out when version declaration not found w [...] adds 4ebaa70 Add Thunk support framework for ARM and Mips adds 317d2a2 Revert R274836 Add Thunk support framework for ARM and Mips adds 287b179 Recommit R274836 Add Thunk support framework for ARM and Mips new 2913fd9 Support for standard model ARM TLS
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 (dfa9efd) \ N -- N -- N refs/heads/linaro-local/tls (2913fd9)
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 | 1 + ELF/Driver.cpp | 1 + ELF/InputSection.cpp | 25 ++- ELF/InputSection.h | 7 +- ELF/Options.td | 1 + ELF/Relocations.cpp | 26 ++- ELF/Relocations.h | 4 +- ELF/Strings.cpp | 28 +++ ELF/Strings.h | 5 + ELF/SymbolTable.cpp | 18 +- ELF/Symbols.cpp | 71 +++---- ELF/Symbols.h | 15 +- ELF/Target.cpp | 88 ++++++-- ELF/Target.h | 15 +- ELF/Thunks.cpp | 251 +++++++++++++++++++++++ ELF/Thunks.h | 55 +++++ test/ELF/arm-mov-relocs.s | 37 ++++ test/ELF/arm-thumb-interwork-thunk.s | 375 +++++++++++++++++++++++++++++++++++ test/ELF/bsymbolic.s | 4 + test/ELF/conflict.s | 4 +- test/ELF/verdef-executable.s | 269 +++++++++++++++++++++++++ 22 files changed, 1193 insertions(+), 108 deletions(-) create mode 100644 ELF/Thunks.cpp create mode 100644 ELF/Thunks.h create mode 100644 test/ELF/arm-thumb-interwork-thunk.s create mode 100644 test/ELF/verdef-executable.s