This is an automated email from the git hooks/post-receive script.
Peter Smith pushed a change to branch linaro-local/ARMportforupstream in repository toolchain/llvm/lld.
discards 5cc31da ARM should define _GLOBAL_OFFSET_TABLE_ to base of .got discards 426599b Initial support for ARM in lld. adds 7492842 Delete dead code. adds 6287d68 Stort lines. NFC. adds 793dada Simplify. NFC. adds e645e41 Simplify mask computation. adds 2356470 Start adding tlsdesc support for aarch64. adds b2b14c1 [LTO] Add --lto-aa-pipeline. adds 3f33116 Apply clang-tidy's misc-move-constructor-init to lld. adds 6d976bb Fix implicit plt creation on aarch64. adds 41561f4 Add missing REQUIRES. adds 869ed69 Rename adjustRelaxGotExpr. adds 6996ef8 Rename TlsGdToLeSkip. adds f7fa63f Use adjustRelaxExpr for tls relaxations too. adds 812fef1 Implement gd to ie relaxation for aarch64. adds 627d409 Attempt to fix non-determinism in test. adds 5c72653 Include version in --reproduce. adds 3c151fb Move GlobalDynIndex to SymbolBody. adds 9879ad4 Add a missing REQUIRES. adds 98c8d97 add missing REQUIRES adds 232cce9 [ELF] - Assign sh_link field of SHT_GNU_versym section to Dyn [...] new 0e36a56 Initial support for ARM in lld. new 8d0eada ARM should define _GLOBAL_OFFSET_TABLE_ to base of .got
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 (5cc31da) \ N -- N -- N refs/heads/linaro-local/ARMportforupstream (8d0eada)
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 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: COFF/Chunks.h | 3 +- ELF/Config.h | 1 + ELF/Driver.cpp | 13 +-- ELF/InputSection.cpp | 46 ++++------ ELF/LTO.cpp | 7 ++ ELF/Options.td | 2 + ELF/OutputSections.cpp | 11 ++- ELF/Relocations.cpp | 47 +++++++--- ELF/Relocations.h | 7 ++ ELF/ScriptParser.h | 3 +- ELF/Symbols.h | 3 +- ELF/Target.cpp | 163 +++++++++++++++++++++++----------- ELF/Target.h | 7 +- ELF/Writer.cpp | 13 +-- lib/ReaderWriter/MachO/LayoutPass.cpp | 3 +- test/ELF/Inputs/aarch64-copy2.s | 5 ++ test/ELF/Inputs/aarch64-tls-gdie.s | 4 + test/ELF/aarch64-copy2.s | 27 ++++++ test/ELF/aarch64-tls-gdie.s | 34 +++++++ test/ELF/aarch64-tls-ie.s | 1 + test/ELF/aarch64-tls-static.s | 37 ++++++++ test/ELF/aarch64-tlsdesc.s | 24 +++++ test/ELF/arm-got-relative.s | 5 +- test/ELF/lto/ltopasses-custom.ll | 3 +- test/ELF/lto/save-temps.ll | 1 + test/ELF/reproduce.s | 10 ++- test/ELF/verneed.s | 20 ++++- 27 files changed, 371 insertions(+), 129 deletions(-) create mode 100644 test/ELF/Inputs/aarch64-copy2.s create mode 100644 test/ELF/Inputs/aarch64-tls-gdie.s create mode 100644 test/ELF/aarch64-copy2.s create mode 100644 test/ELF/aarch64-tls-gdie.s create mode 100644 test/ELF/aarch64-tls-static.s create mode 100644 test/ELF/aarch64-tlsdesc.s