This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 03e629a1a43 Fix a couple of mangling canonicalizer corner case bugs. new 61be1ad26c0 Add flag to llvm-profdata to allow symbols in profile data [...] new 3def5002f7b Revert "[cmake] Fix a unittest when `LLVM_LINK_LLVM_DYLIB` [...]
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: docs/CommandGuide/index.rst | 1 + docs/CommandGuide/llvm-cxxmap.rst | 91 ++++++++++++ docs/CommandGuide/llvm-profdata.rst | 10 ++ test/tools/llvm-cxxmap/Inputs/after.sym | 2 + test/tools/llvm-cxxmap/Inputs/ambiguous.sym | 2 + test/tools/llvm-cxxmap/Inputs/before.sym | 2 + test/tools/llvm-cxxmap/Inputs/expected | 2 + test/tools/llvm-cxxmap/Inputs/incomplete.sym | 1 + test/tools/llvm-cxxmap/Inputs/remap.map | 8 ++ test/tools/llvm-cxxmap/ambiguous.test | 2 + test/tools/llvm-cxxmap/incomplete.test | 2 + test/tools/llvm-cxxmap/remap.test | 5 + .../llvm-profdata/Inputs/instr-remap.expected | 29 ++++ .../llvm-profdata/Inputs/instr-remap.proftext | 25 ++++ test/tools/llvm-profdata/Inputs/instr-remap.remap | 1 + .../llvm-profdata/Inputs/sample-remap.expected | 16 +++ .../llvm-profdata/Inputs/sample-remap.proftext | 18 +++ test/tools/llvm-profdata/Inputs/sample-remap.remap | 2 + test/tools/llvm-profdata/instr-remap.test | 2 + test/tools/llvm-profdata/sample-remap.test | 2 + tools/llvm-cxxmap/CMakeLists.txt | 8 ++ tools/llvm-cxxmap/LLVMBuild.txt | 22 +++ tools/llvm-cxxmap/llvm-cxxmap.cpp | 155 +++++++++++++++++++++ tools/llvm-profdata/llvm-profdata.cpp | 108 ++++++++++++-- unittests/Passes/CMakeLists.txt | 10 +- 25 files changed, 511 insertions(+), 15 deletions(-) create mode 100644 docs/CommandGuide/llvm-cxxmap.rst create mode 100644 test/tools/llvm-cxxmap/Inputs/after.sym create mode 100644 test/tools/llvm-cxxmap/Inputs/ambiguous.sym create mode 100644 test/tools/llvm-cxxmap/Inputs/before.sym create mode 100644 test/tools/llvm-cxxmap/Inputs/expected create mode 100644 test/tools/llvm-cxxmap/Inputs/incomplete.sym create mode 100644 test/tools/llvm-cxxmap/Inputs/remap.map create mode 100644 test/tools/llvm-cxxmap/ambiguous.test create mode 100644 test/tools/llvm-cxxmap/incomplete.test create mode 100644 test/tools/llvm-cxxmap/remap.test create mode 100644 test/tools/llvm-profdata/Inputs/instr-remap.expected create mode 100644 test/tools/llvm-profdata/Inputs/instr-remap.proftext create mode 100644 test/tools/llvm-profdata/Inputs/instr-remap.remap create mode 100644 test/tools/llvm-profdata/Inputs/sample-remap.expected create mode 100644 test/tools/llvm-profdata/Inputs/sample-remap.proftext create mode 100644 test/tools/llvm-profdata/Inputs/sample-remap.remap create mode 100644 test/tools/llvm-profdata/instr-remap.test create mode 100644 test/tools/llvm-profdata/sample-remap.test create mode 100644 tools/llvm-cxxmap/CMakeLists.txt create mode 100644 tools/llvm-cxxmap/LLVMBuild.txt create mode 100644 tools/llvm-cxxmap/llvm-cxxmap.cpp