This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 01568d51f08 [X86] Use a MOVSX instruction instead of a MOVZX instructio [...] new 10c84a8f35c [ThinLTO] Internalize readonly globals
The 1 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/IR/ModuleSummaryIndex.h | 50 +++++++--- include/llvm/Transforms/IPO/FunctionImport.h | 8 ++ .../llvm/Transforms/Utils/FunctionImportUtils.h | 1 - lib/Analysis/ModuleSummaryAnalysis.cpp | 75 +++++++++++---- lib/AsmParser/LLParser.cpp | 3 +- lib/Bitcode/Reader/BitcodeReader.cpp | 51 ++++++++-- lib/Bitcode/Writer/BitcodeWriter.cpp | 22 ++++- lib/IR/ModuleSummaryIndex.cpp | 107 +++++++++++++++++++-- lib/LTO/LTO.cpp | 5 +- lib/LTO/ThinLTOCodeGenerator.cpp | 3 +- lib/Linker/IRMover.cpp | 5 - lib/Transforms/IPO/FunctionImport.cpp | 45 ++++++++- lib/Transforms/Utils/FunctionImportUtils.cpp | 21 +++- test/Bitcode/summary_version.ll | 2 +- test/Bitcode/thinlto-alias.ll | 4 +- test/Bitcode/thinlto-alias2.ll | 2 +- .../thinlto-function-summary-callgraph-cast.ll | 4 +- .../thinlto-function-summary-callgraph-pgo.ll | 4 +- ...o-function-summary-callgraph-profile-summary.ll | 4 +- .../thinlto-function-summary-callgraph-relbf.ll | 2 +- ...ion-summary-callgraph-sample-profile-summary.ll | 4 +- test/Bitcode/thinlto-function-summary-callgraph.ll | 4 +- test/Bitcode/thinlto-function-summary-refgraph.ll | 12 +-- test/ThinLTO/X86/Inputs/index-const-prop-alias.ll | 5 + test/ThinLTO/X86/Inputs/index-const-prop-comdat.ll | 5 + .../X86/Inputs/index-const-prop-define-g.ll | 4 + .../X86/Inputs/index-const-prop-full-lto.ll | 12 +++ test/ThinLTO/X86/Inputs/index-const-prop-gvref.ll | 5 + .../ThinLTO/X86/Inputs/index-const-prop-linkage.ll | 15 +++ test/ThinLTO/X86/Inputs/index-const-prop.ll | 64 ++++++++++++ test/ThinLTO/X86/dot-dumper.ll | 10 +- test/ThinLTO/X86/globals-import-const-fold.ll | 4 +- test/ThinLTO/X86/index-const-prop-O0.ll | 18 ++++ test/ThinLTO/X86/index-const-prop-alias.ll | 42 ++++++++ test/ThinLTO/X86/index-const-prop-comdat.ll | 17 ++++ test/ThinLTO/X86/index-const-prop-dead.ll | 26 +++++ test/ThinLTO/X86/index-const-prop-full-lto.ll | 24 +++++ test/ThinLTO/X86/index-const-prop-gvref.ll | 27 ++++++ test/ThinLTO/X86/index-const-prop-ldst.ll | 21 ++++ test/ThinLTO/X86/index-const-prop-linkage.ll | 27 ++++++ test/ThinLTO/X86/index-const-prop.ll | 40 ++++++++ test/ThinLTO/X86/index-const-prop2.ll | 59 ++++++++++++ 42 files changed, 774 insertions(+), 89 deletions(-) create mode 100644 test/ThinLTO/X86/Inputs/index-const-prop-alias.ll create mode 100644 test/ThinLTO/X86/Inputs/index-const-prop-comdat.ll create mode 100644 test/ThinLTO/X86/Inputs/index-const-prop-define-g.ll create mode 100644 test/ThinLTO/X86/Inputs/index-const-prop-full-lto.ll create mode 100644 test/ThinLTO/X86/Inputs/index-const-prop-gvref.ll create mode 100644 test/ThinLTO/X86/Inputs/index-const-prop-linkage.ll create mode 100644 test/ThinLTO/X86/Inputs/index-const-prop.ll create mode 100644 test/ThinLTO/X86/index-const-prop-O0.ll create mode 100644 test/ThinLTO/X86/index-const-prop-alias.ll create mode 100644 test/ThinLTO/X86/index-const-prop-comdat.ll create mode 100644 test/ThinLTO/X86/index-const-prop-dead.ll create mode 100644 test/ThinLTO/X86/index-const-prop-full-lto.ll create mode 100644 test/ThinLTO/X86/index-const-prop-gvref.ll create mode 100644 test/ThinLTO/X86/index-const-prop-ldst.ll create mode 100644 test/ThinLTO/X86/index-const-prop-linkage.ll create mode 100644 test/ThinLTO/X86/index-const-prop.ll create mode 100644 test/ThinLTO/X86/index-const-prop2.ll