This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from fd10033f581 Avoid creating a Constant for each value in a ConstantDataS [...] new 68d73644cd5 Use branch funnels for virtual calls when retpoline mitigat [...] new 67fe7958c82 [llvm-objdump] Support disassembling by symbol name
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/ADT/PointerUnion.h | 6 + include/llvm/CodeGen/TargetOpcodes.def | 2 + include/llvm/IR/Intrinsics.td | 4 + include/llvm/IR/ModuleSummaryIndex.h | 7 +- include/llvm/IR/ModuleSummaryIndexYAML.h | 2 + include/llvm/Target/Target.td | 6 + lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 54 ++++++ lib/IR/Verifier.cpp | 17 +- lib/Target/X86/X86ExpandPseudo.cpp | 103 ++++++++++ lib/Transforms/IPO/LowerTypeTests.cpp | 117 ++++++++++-- lib/Transforms/IPO/WholeProgramDevirt.cpp | 211 ++++++++++++++++++--- test/CodeGen/X86/icall-branch-funnel.ll | 170 +++++++++++++++++ .../LowerTypeTests/icall-branch-funnel.ll | 46 +++++ .../Inputs/import-branch-funnel.yaml | 11 ++ .../Inputs/import-vcp-branch-funnel.yaml | 23 +++ .../Transforms/WholeProgramDevirt/branch-funnel.ll | 155 +++++++++++++++ test/Transforms/WholeProgramDevirt/import.ll | 32 ++-- .../llvm-objdump/X86/disasm-specific-funcs.test | 20 ++ tools/llvm-objdump/llvm-objdump.cpp | 44 +++-- 19 files changed, 958 insertions(+), 72 deletions(-) create mode 100644 test/CodeGen/X86/icall-branch-funnel.ll create mode 100644 test/Transforms/LowerTypeTests/icall-branch-funnel.ll create mode 100644 test/Transforms/WholeProgramDevirt/Inputs/import-branch-funnel.yaml create mode 100644 test/Transforms/WholeProgramDevirt/Inputs/import-vcp-branch-fun [...] create mode 100644 test/Transforms/WholeProgramDevirt/branch-funnel.ll create mode 100644 test/tools/llvm-objdump/X86/disasm-specific-funcs.test