This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from e83906e393f [llvm-readobj] - Repair the test case. new 6595d587b7f [llvm-objcopy] Implement IHEX writer new d80696cb37b [MCA] Refactor class LSUnit. NFCI
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: include/llvm/MCA/HardwareUnits/LSUnit.h | 284 ++++++++++++++++----- include/llvm/MCA/HardwareUnits/Scheduler.h | 6 +- include/llvm/MCA/Instruction.h | 22 +- include/llvm/Support/Error.h | 27 +- lib/MCA/HardwareUnits/LSUnit.cpp | 241 ++++++++--------- lib/MCA/HardwareUnits/Scheduler.cpp | 87 ++----- .../llvm-objcopy/ELF/Inputs/ihex-elf-pt-null.yaml | 20 ++ .../llvm-objcopy/ELF/Inputs/ihex-elf-sections.yaml | 60 +++++ .../ELF/Inputs/ihex-elf-sections2.yaml | 39 +++ .../llvm-objcopy/ELF/Inputs/ihex-elf-segments.yaml | 60 +++++ test/tools/llvm-objcopy/ELF/ihex-writer.test | 81 ++++++ tools/llvm-objcopy/CopyConfig.cpp | 3 +- tools/llvm-objcopy/ELF/ELFObjcopy.cpp | 45 ++-- tools/llvm-objcopy/ELF/Object.cpp | 264 ++++++++++++++++++- tools/llvm-objcopy/ELF/Object.h | 140 ++++++++++ 15 files changed, 1100 insertions(+), 279 deletions(-) create mode 100644 test/tools/llvm-objcopy/ELF/Inputs/ihex-elf-pt-null.yaml create mode 100644 test/tools/llvm-objcopy/ELF/Inputs/ihex-elf-sections.yaml create mode 100644 test/tools/llvm-objcopy/ELF/Inputs/ihex-elf-sections2.yaml create mode 100644 test/tools/llvm-objcopy/ELF/Inputs/ihex-elf-segments.yaml create mode 100644 test/tools/llvm-objcopy/ELF/ihex-writer.test