This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 209c4e345a7 llvm-dwarfdump: Cache CU low_pc when computing statistics. new 5f1543dfbd7 [SampleFDO] Add profile symbol list section to discriminate [...]
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/ProfileData/SampleProf.h | 49 +++++++- include/llvm/ProfileData/SampleProfReader.h | 10 ++ include/llvm/ProfileData/SampleProfWriter.h | 11 +- lib/ProfileData/SampleProf.cpp | 81 +++++++++++++ lib/ProfileData/SampleProfReader.cpp | 28 +++++ lib/ProfileData/SampleProfWriter.cpp | 7 +- lib/Transforms/IPO/SampleProfile.cpp | 15 ++- .../SampleProfile/Inputs/profile-symbol-list.ll | 134 +++++++++++++++++++++ .../SampleProfile/Inputs/profile-symbol-list.text | 9 ++ .../compressed-profile-symbol-list.ll | 5 + .../uncompressed-profile-symbol-list.ll | 4 + .../Inputs/profile-symbol-list-1.text | 5 + .../Inputs/profile-symbol-list-2.text | 4 + .../Inputs/profile-symbol-list.expected | 42 +++++++ test/tools/llvm-profdata/profile-symbol-list.test | 5 + tools/llvm-profdata/llvm-profdata.cpp | 87 ++++++++++--- unittests/ProfileData/SampleProfTest.cpp | 14 +++ 17 files changed, 484 insertions(+), 26 deletions(-) create mode 100644 test/Transforms/SampleProfile/Inputs/profile-symbol-list.ll create mode 100644 test/Transforms/SampleProfile/Inputs/profile-symbol-list.text create mode 100644 test/Transforms/SampleProfile/compressed-profile-symbol-list.ll create mode 100644 test/Transforms/SampleProfile/uncompressed-profile-symbol-list.ll create mode 100644 test/tools/llvm-profdata/Inputs/profile-symbol-list-1.text create mode 100644 test/tools/llvm-profdata/Inputs/profile-symbol-list-2.text create mode 100644 test/tools/llvm-profdata/Inputs/profile-symbol-list.expected create mode 100644 test/tools/llvm-profdata/profile-symbol-list.test