This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lld.
from 2c7050826 [ELF] Pre-create ThunkSections at Target specific intervals new b1c943436 [ELF] Introduce range extension thunks for ARM new 3cec2ef8c [ELF] Add support for multiple passes to createThunks()
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: ELF/Arch/ARM.cpp | 16 +- ELF/Arch/Mips.cpp | 4 +- ELF/LinkerScript.h | 7 +- ELF/Relocations.cpp | 242 +++++++++++++++++++++++++----- ELF/Relocations.h | 11 +- ELF/Target.cpp | 2 +- ELF/Target.h | 10 +- ELF/Thunks.cpp | 18 ++- ELF/Thunks.h | 6 +- ELF/Writer.cpp | 11 +- test/ELF/arm-branch-error.s | 19 --- test/ELF/arm-branch-rangethunk.s | 34 +++++ test/ELF/arm-thumb-branch-error.s | 19 --- test/ELF/arm-thumb-branch-rangethunk.s | 36 +++++ test/ELF/arm-thumb-condbranch-thunk.s | 117 +++++++++++++++ test/ELF/arm-thumb-mix-range-thunk-os.s | 195 ++++++++++++++++++++++++ test/ELF/arm-thumb-plt-range-thunk-os.s | 88 +++++++++++ test/ELF/arm-thumb-range-thunk-os.s | 159 ++++++++++++++++++++ test/ELF/arm-thumb-thunk-empty-pass.s | 32 ++++ test/ELF/arm-thunk-largesection.s | 42 ++++++ test/ELF/arm-thunk-linkerscript-dotexpr.s | 76 ++++++++++ test/ELF/arm-thunk-linkerscript-large.s | 176 ++++++++++++++++++++++ test/ELF/arm-thunk-linkerscript-orphan.s | 63 ++++++++ test/ELF/arm-thunk-linkerscript-sort.s | 71 +++++++++ test/ELF/arm-thunk-linkerscript.s | 78 ++++++++++ test/ELF/arm-thunk-multipass.s | 96 ++++++++++++ test/ELF/arm-thunk-re-add.s | 119 +++++++++++++++ test/ELF/arm-thunk-toolargesection.s | 19 +++ 28 files changed, 1650 insertions(+), 116 deletions(-) delete mode 100644 test/ELF/arm-branch-error.s create mode 100644 test/ELF/arm-branch-rangethunk.s delete mode 100644 test/ELF/arm-thumb-branch-error.s create mode 100644 test/ELF/arm-thumb-branch-rangethunk.s create mode 100644 test/ELF/arm-thumb-condbranch-thunk.s create mode 100644 test/ELF/arm-thumb-mix-range-thunk-os.s create mode 100644 test/ELF/arm-thumb-plt-range-thunk-os.s create mode 100644 test/ELF/arm-thumb-range-thunk-os.s create mode 100644 test/ELF/arm-thumb-thunk-empty-pass.s create mode 100644 test/ELF/arm-thunk-largesection.s create mode 100644 test/ELF/arm-thunk-linkerscript-dotexpr.s create mode 100644 test/ELF/arm-thunk-linkerscript-large.s create mode 100644 test/ELF/arm-thunk-linkerscript-orphan.s create mode 100644 test/ELF/arm-thunk-linkerscript-sort.s create mode 100644 test/ELF/arm-thunk-linkerscript.s create mode 100644 test/ELF/arm-thunk-multipass.s create mode 100644 test/ELF/arm-thunk-re-add.s create mode 100644 test/ELF/arm-thunk-toolargesection.s