This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 07836bef1a3 [InstCombine] auto-generate checks; NFC new 757fc2f38e7 Revert Enrich inline messages new f03f9e8cd4d [DebugInfo] Generate DWARF debug information for labels.
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: include/llvm/Analysis/InlineCost.h | 35 +----- include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h | 4 + include/llvm/IR/DiagnosticInfo.h | 1 - include/llvm/Transforms/Utils/Cloning.h | 18 ++- lib/Analysis/InlineCost.cpp | 93 ++++++-------- lib/CodeGen/AsmPrinter/CMakeLists.txt | 2 +- lib/CodeGen/AsmPrinter/CodeViewDebug.h | 2 +- ...lculator.cpp => DbgEntityHistoryCalculator.cpp} | 73 ++++++----- ...ryCalculator.h => DbgEntityHistoryCalculator.h} | 29 ++++- lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp | 12 +- lib/CodeGen/AsmPrinter/DebugHandlerBase.h | 5 +- lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp | 88 +++++++++---- lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | 23 ++-- lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 135 +++++++++++++------- lib/CodeGen/AsmPrinter/DwarfDebug.h | 136 +++++++++++++++++---- lib/CodeGen/AsmPrinter/DwarfFile.cpp | 5 + lib/CodeGen/AsmPrinter/DwarfFile.h | 18 ++- lib/CodeGen/AsmPrinter/DwarfUnit.cpp | 6 + lib/CodeGen/AsmPrinter/DwarfUnit.h | 1 + lib/CodeGen/GlobalISel/IRTranslator.cpp | 11 ++ lib/CodeGen/GlobalISel/MachineIRBuilder.cpp | 9 ++ lib/Target/AMDGPU/AMDGPUInline.cpp | 17 +-- lib/Transforms/IPO/AlwaysInliner.cpp | 4 +- lib/Transforms/IPO/Inliner.cpp | 120 ++++++++---------- lib/Transforms/Utils/InlineFunction.cpp | 29 ++--- test/DebugInfo/Generic/debug-label-inline.ll | 50 ++++++++ test/DebugInfo/Generic/debug-label.ll | 76 ++++++++++++ .../X86/diagnostic-handler-remarks-with-hotness.ll | 7 +- .../Resolution/X86/diagnostic-handler-remarks.ll | 5 +- .../X86/diagnostic-handler-remarks-with-hotness.ll | 5 +- test/LTO/X86/diagnostic-handler-remarks.ll | 5 +- .../X86/diagnostic-handler-remarks-with-hotness.ll | 10 +- test/ThinLTO/X86/diagnostic-handler-remarks.ll | 10 +- test/Transforms/Inline/ARM/inline-fp.ll | 24 ++-- .../optimization-remarks-hotness-threshold.ll | 2 +- .../Inline/optimization-remarks-passed-yaml.ll | 7 +- .../Inline/optimization-remarks-with-hotness.ll | 4 +- test/Transforms/Inline/optimization-remarks.ll | 4 +- test/tools/gold/X86/opt-remarks.ll | 6 +- 39 files changed, 698 insertions(+), 393 deletions(-) rename lib/CodeGen/AsmPrinter/{DbgValueHistoryCalculator.cpp => DbgEntityHistoryCa [...] rename lib/CodeGen/AsmPrinter/{DbgValueHistoryCalculator.h => DbgEntityHistoryCalc [...] create mode 100644 test/DebugInfo/Generic/debug-label-inline.ll create mode 100644 test/DebugInfo/Generic/debug-label.ll