This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 23ecb8f9e59 Revert "[IR][ARM] Add function pointer alignment to datalayout" new 963f36ed4af [AtomicExpand] Allow libcall expansion for non-zero address [...] new 0646a823c0c [PGO] Context sensitive PGO (part 4)
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: CMakeLists.txt | 6 + cmake/modules/HandleLLVMOptions.cmake | 14 ++ lib/CodeGen/AtomicExpandPass.cpp | 10 +- lib/ProfileData/InstrProfReader.cpp | 2 +- test/Other/Inputs/cspgo-cs.proftext | 1 + .../{new-pm-pgo.proftext => cspgo-noncs.proftext} | 0 test/Other/cspgo-O2-pipeline.ll | 13 ++ test/Other/new-pm-cspgo.ll | 32 +++++ .../AtomicExpand/X86/expand-atomic-libcall.ll | 34 +++++ test/Transforms/PGOProfile/Inputs/cspgo.proftext | 151 ++++++++++++++++++++ .../PGOProfile/Inputs/thinlto_cs.proftext | 72 ++++++++++ .../PGOProfile/Inputs/thinlto_cspgo_bar_gen.ll | 74 ++++++++++ .../PGOProfile/Inputs/thinlto_cspgo_bar_use.ll | 70 ++++++++++ .../Transforms/PGOProfile/cspgo_profile_summary.ll | 155 +++++++++++++++++++++ test/Transforms/PGOProfile/thinlto_cspgo_gen.ll | 86 ++++++++++++ test/Transforms/PGOProfile/thinlto_cspgo_use.ll | 80 +++++++++++ test/tools/gold/X86/Inputs/cspgo.proftext | 39 ++++++ test/tools/gold/X86/Inputs/thinlto_cspgo_bar.ll | 111 +++++++++++++++ test/tools/gold/X86/thinlto_cspgo.ll | 80 +++++++++++ .../llvm-profdata/Inputs/CSIR_profile.proftext | 11 ++ test/tools/llvm-profdata/Inputs/cs.proftext | 10 ++ test/tools/llvm-profdata/Inputs/noncs.proftext | 11 ++ test/tools/llvm-profdata/csprof-dump.test | 31 +++++ 23 files changed, 1090 insertions(+), 3 deletions(-) create mode 100644 test/Other/Inputs/cspgo-cs.proftext copy test/Other/Inputs/{new-pm-pgo.proftext => cspgo-noncs.proftext} (100%) create mode 100644 test/Other/cspgo-O2-pipeline.ll create mode 100644 test/Other/new-pm-cspgo.ll create mode 100644 test/Transforms/AtomicExpand/X86/expand-atomic-libcall.ll create mode 100644 test/Transforms/PGOProfile/Inputs/cspgo.proftext create mode 100644 test/Transforms/PGOProfile/Inputs/thinlto_cs.proftext create mode 100644 test/Transforms/PGOProfile/Inputs/thinlto_cspgo_bar_gen.ll create mode 100644 test/Transforms/PGOProfile/Inputs/thinlto_cspgo_bar_use.ll create mode 100644 test/Transforms/PGOProfile/cspgo_profile_summary.ll create mode 100644 test/Transforms/PGOProfile/thinlto_cspgo_gen.ll create mode 100644 test/Transforms/PGOProfile/thinlto_cspgo_use.ll create mode 100644 test/tools/gold/X86/Inputs/cspgo.proftext create mode 100644 test/tools/gold/X86/Inputs/thinlto_cspgo_bar.ll create mode 100644 test/tools/gold/X86/thinlto_cspgo.ll create mode 100644 test/tools/llvm-profdata/Inputs/CSIR_profile.proftext create mode 100644 test/tools/llvm-profdata/Inputs/cs.proftext create mode 100644 test/tools/llvm-profdata/Inputs/noncs.proftext create mode 100644 test/tools/llvm-profdata/csprof-dump.test