This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 3022ad0c876 Use C++14 heteregenous lookup for a couple of std::map<std: [...] new 2888b0c825a [Attributor][NFCI] Introduce tight iteration bounds in the tests new a8e86b955e3 Add FileWriter to GSYM and encode/decode functions to Addre [...] new 62899a21748 [Attributor] Fix: Gracefully handle non-instruction users
The 3 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/DebugInfo/GSYM/FileEntry.h | 7 +- include/llvm/DebugInfo/GSYM/FileWriter.h | 120 +++++++++++++++++++++ include/llvm/DebugInfo/GSYM/FunctionInfo.h | 7 +- include/llvm/DebugInfo/GSYM/InlineInfo.h | 7 +- include/llvm/DebugInfo/GSYM/LineEntry.h | 7 +- include/llvm/DebugInfo/GSYM/Range.h | 30 +++++- include/llvm/DebugInfo/GSYM/StringTable.h | 7 +- lib/DebugInfo/GSYM/CMakeLists.txt | 1 + lib/DebugInfo/GSYM/FileWriter.cpp | 78 ++++++++++++++ lib/DebugInfo/GSYM/Range.cpp | 36 +++++++ lib/Transforms/IPO/Attributor.cpp | 6 +- test/Transforms/FunctionAttrs/align.ll | 2 +- test/Transforms/FunctionAttrs/arg_nocapture.ll | 2 +- test/Transforms/FunctionAttrs/arg_returned.ll | 2 +- test/Transforms/FunctionAttrs/dereferenceable.ll | 2 +- test/Transforms/FunctionAttrs/fn_noreturn.ll | 2 +- test/Transforms/FunctionAttrs/liveness.ll | 2 +- test/Transforms/FunctionAttrs/misc.ll | 23 ++++ test/Transforms/FunctionAttrs/noalias_returned.ll | 2 +- test/Transforms/FunctionAttrs/nofree-attributor.ll | 2 +- test/Transforms/FunctionAttrs/nonnull.ll | 2 +- test/Transforms/FunctionAttrs/noreturn_async.ll | 2 +- test/Transforms/FunctionAttrs/noreturn_sync.ll | 2 +- test/Transforms/FunctionAttrs/nosync.ll | 2 +- test/Transforms/FunctionAttrs/nounwind.ll | 2 +- .../read_write_returned_arguments_scc.ll | 2 +- test/Transforms/FunctionAttrs/willreturn.ll | 2 +- unittests/DebugInfo/GSYM/GSYMTest.cpp | 120 ++++++++++++++++++++- 28 files changed, 438 insertions(+), 41 deletions(-) create mode 100644 include/llvm/DebugInfo/GSYM/FileWriter.h create mode 100644 lib/DebugInfo/GSYM/FileWriter.cpp create mode 100644 test/Transforms/FunctionAttrs/misc.ll