This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 3804b7fd5f7 [DebugInfo] Add interface for pre-calculating the size of e [...] new 3ae2d8fa736 [Alignment][NFC] Remove dependency on GlobalObject::setAlig [...] new 633cd24e878 [DebugInfo] Add a DW_OP_LLVM_entry_value operation
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/LangRef.rst | 31 +++++--- include/llvm/BinaryFormat/Dwarf.h | 7 +- include/llvm/CodeGen/MachineInstr.h | 2 +- include/llvm/IR/DebugInfoMetadata.h | 2 +- include/llvm/IR/GlobalObject.h | 3 +- include/llvm/LTO/LTO.h | 2 +- lib/AsmParser/LLParser.cpp | 6 +- lib/BinaryFormat/Dwarf.cpp | 3 + lib/Bitcode/Reader/BitcodeReader.cpp | 34 ++++---- .../AsmPrinter/DbgEntityHistoryCalculator.cpp | 2 +- lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp | 2 +- lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 9 +-- lib/CodeGen/AsmPrinter/DwarfExpression.cpp | 28 ++++++- lib/CodeGen/AsmPrinter/DwarfExpression.h | 14 +++- lib/CodeGen/CodeGenPrepare.cpp | 2 +- lib/CodeGen/GlobalMerge.cpp | 8 +- lib/CodeGen/LowerEmuTLS.cpp | 7 +- lib/ExecutionEngine/Orc/Speculation.cpp | 2 +- lib/IR/Core.cpp | 2 +- lib/IR/DebugInfoMetadata.cpp | 14 ++-- lib/IR/Globals.cpp | 2 +- lib/IR/IRBuilder.cpp | 2 +- lib/IR/Verifier.cpp | 15 +++- lib/LTO/LTO.cpp | 3 +- lib/Linker/IRMover.cpp | 2 +- lib/Linker/LinkModules.cpp | 3 +- lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp | 2 +- lib/Transforms/IPO/ConstantMerge.cpp | 2 +- lib/Transforms/IPO/CrossDSOCFI.cpp | 2 +- lib/Transforms/IPO/GlobalOpt.cpp | 8 +- lib/Transforms/IPO/LowerTypeTests.cpp | 14 ++-- lib/Transforms/IPO/MergeFunctions.cpp | 4 +- lib/Transforms/IPO/WholeProgramDevirt.cpp | 11 +-- .../Instrumentation/AddressSanitizer.cpp | 8 +- .../Instrumentation/HWAddressSanitizer.cpp | 4 +- lib/Transforms/Instrumentation/InstrProfiling.cpp | 8 +- lib/Transforms/Instrumentation/Instrumentation.cpp | 3 +- .../Instrumentation/SanitizerCoverage.cpp | 5 +- lib/Transforms/Scalar/LoopIdiomRecognize.cpp | 2 +- lib/Transforms/Utils/Local.cpp | 2 +- lib/Transforms/Utils/SimplifyCFG.cpp | 2 +- test/DebugInfo/ARM/entry-value-multi-byte-expr.ll | 91 ++++++++++++++++++++++ .../live-debug-values-bundled-entry-values.mir | 4 +- .../MIR/X86/avoid-single-entry-value-location.mir | 2 +- .../MIR/X86/dbgcall-site-interpretation.mir | 4 +- test/DebugInfo/MIR/X86/dbginfo-entryvals.mir | 4 +- .../MIR/X86/multiple-param-dbg-value-entry.mir | 8 +- .../Sparc/entry-value-complex-reg-expr.ll | 79 +++++++++++++++++++ test/Verifier/diexpression-dwarf-entry-value.ll | 8 ++ test/Verifier/diexpression-entry-value-llvm-ir.ll | 31 ++++++++ test/Verifier/diexpression-entry-value.ll | 11 ++- test/Verifier/diexpression-valid-entry-value.ll | 2 +- unittests/IR/ConstantsTest.cpp | 14 ++-- unittests/IR/FunctionTest.cpp | 2 +- unittests/IR/ValueTest.cpp | 7 +- 55 files changed, 416 insertions(+), 135 deletions(-) create mode 100644 test/DebugInfo/ARM/entry-value-multi-byte-expr.ll create mode 100644 test/DebugInfo/Sparc/entry-value-complex-reg-expr.ll create mode 100644 test/Verifier/diexpression-dwarf-entry-value.ll create mode 100644 test/Verifier/diexpression-entry-value-llvm-ir.ll