This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 97d7bcd5c02 [Local] Make DoesKMove required for combineMetadata. new 77a17afc92d Find PLT entries for x86, x86_64, and AArch64. new e47abe79613 [llvm-objdump] Label calls to the PLT. new ff323c38f13 [cfi-verify] Support cross-DSO
The 3 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/MC/MCInstrAnalysis.h | 8 +++ include/llvm/Object/ELFObjectFile.h | 2 + lib/Object/ELFObjectFile.cpp | 65 +++++++++++++++++++++ .../AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp | 26 +++++++++ lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp | 61 +++++++++++++++++++ .../AArch64/Inputs/function-only-check.o | Bin 0 -> 68360 bytes .../llvm-cfi-verify/AArch64/function-only-check.s | 9 +++ .../X86/Inputs/function-only-check.o | Bin 0 -> 15112 bytes .../llvm-cfi-verify/X86/function-only-check.s | 8 +++ .../llvm-objdump/AArch64/Inputs/cfi.elf-aarch64 | Bin 0 -> 68360 bytes test/tools/llvm-objdump/AArch64/plt.test | 5 ++ .../llvm-objdump/X86/Inputs/hello.exe.elf-i386 | Bin 0 -> 7248 bytes .../X86/Inputs/hello.exe.nopie.elf-i386 | Bin 0 -> 7080 bytes test/tools/llvm-objdump/X86/plt.test | 14 +++++ tools/llvm-cfi-verify/lib/FileAnalysis.cpp | 56 +++++++++++++++++- tools/llvm-cfi-verify/lib/FileAnalysis.h | 12 ++++ tools/llvm-cfi-verify/lib/GraphBuilder.cpp | 18 ++++++ tools/llvm-objdump/llvm-objdump.cpp | 36 ++++++++++++ 18 files changed, 319 insertions(+), 1 deletion(-) create mode 100644 test/tools/llvm-cfi-verify/AArch64/Inputs/function-only-check.o create mode 100644 test/tools/llvm-cfi-verify/AArch64/function-only-check.s create mode 100644 test/tools/llvm-cfi-verify/X86/Inputs/function-only-check.o create mode 100644 test/tools/llvm-cfi-verify/X86/function-only-check.s create mode 100644 test/tools/llvm-objdump/AArch64/Inputs/cfi.elf-aarch64 create mode 100644 test/tools/llvm-objdump/AArch64/plt.test create mode 100644 test/tools/llvm-objdump/X86/Inputs/hello.exe.elf-i386 create mode 100644 test/tools/llvm-objdump/X86/Inputs/hello.exe.nopie.elf-i386 create mode 100644 test/tools/llvm-objdump/X86/plt.test