[PATCH] D20147: [WIP] DebugInfo: New metadata representation for global variables.

Peter Collingbourne via llvm-commits llvm-commits at lists.llvm.org
Mon Sep 12 18:22:13 PDT 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL281284: DebugInfo: New metadata representation for global variables. (authored by pcc).

Changed prior to commit:
  https://reviews.llvm.org/D20147?vs=59819&id=71089#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D20147

Files:
  llvm/trunk/include/llvm/IR/DIBuilder.h
  llvm/trunk/include/llvm/IR/DebugInfoMetadata.h
  llvm/trunk/include/llvm/IR/GlobalVariable.h
  llvm/trunk/lib/AsmParser/LLParser.cpp
  llvm/trunk/lib/Bitcode/Reader/BitcodeReader.cpp
  llvm/trunk/lib/Bitcode/Writer/BitcodeWriter.cpp
  llvm/trunk/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
  llvm/trunk/lib/CodeGen/AsmPrinter/CodeViewDebug.h
  llvm/trunk/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
  llvm/trunk/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
  llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
  llvm/trunk/lib/CodeGen/AsmPrinter/DwarfExpression.cpp
  llvm/trunk/lib/CodeGen/GlobalMerge.cpp
  llvm/trunk/lib/IR/AsmWriter.cpp
  llvm/trunk/lib/IR/DIBuilder.cpp
  llvm/trunk/lib/IR/DebugInfoMetadata.cpp
  llvm/trunk/lib/IR/LLVMContextImpl.h
  llvm/trunk/lib/IR/Metadata.cpp
  llvm/trunk/lib/IR/Verifier.cpp
  llvm/trunk/lib/Linker/IRMover.cpp
  llvm/trunk/lib/Transforms/IPO/StripSymbols.cpp
  llvm/trunk/test/Assembler/diglobalvariable.ll
  llvm/trunk/test/Bitcode/diglobalvariable-3.8.ll
  llvm/trunk/test/Bitcode/diglobalvariable-3.8.ll.bc
  llvm/trunk/test/Bitcode/dityperefs-3.8.ll
  llvm/trunk/test/CodeGen/ARM/2010-06-25-Thumb2ITInvalidIterator.ll
  llvm/trunk/test/CodeGen/ARM/2011-01-19-MergedGlobalDbg.ll
  llvm/trunk/test/CodeGen/ARM/2011-08-02-MergedGlobalDbg.ll
  llvm/trunk/test/CodeGen/ARM/coalesce-dbgvalue.ll
  llvm/trunk/test/CodeGen/NVPTX/generic-to-nvvm-ir.ll
  llvm/trunk/test/CodeGen/PowerPC/pr17168.ll
  llvm/trunk/test/CodeGen/PowerPC/pr24546.ll
  llvm/trunk/test/CodeGen/X86/fpstack-debuginstr-kill.ll
  llvm/trunk/test/CodeGen/X86/misched-code-difference-with-debug.ll
  llvm/trunk/test/DebugInfo/AArch64/big-endian.ll
  llvm/trunk/test/DebugInfo/AArch64/bitfields.ll
  llvm/trunk/test/DebugInfo/AArch64/frameindices.ll
  llvm/trunk/test/DebugInfo/ARM/big-endian-bitfield.ll
  llvm/trunk/test/DebugInfo/ARM/bitfield.ll
  llvm/trunk/test/DebugInfo/ARM/multiple-constant-uses-drops-dbgloc.ll
  llvm/trunk/test/DebugInfo/ARM/tls.ll
  llvm/trunk/test/DebugInfo/COFF/anonymous-struct.ll
  llvm/trunk/test/DebugInfo/COFF/big-type.ll
  llvm/trunk/test/DebugInfo/COFF/bitfields.ll
  llvm/trunk/test/DebugInfo/COFF/enum.ll
  llvm/trunk/test/DebugInfo/COFF/global-dllimport.ll
  llvm/trunk/test/DebugInfo/COFF/globals-discarded.ll
  llvm/trunk/test/DebugInfo/COFF/globals.ll
  llvm/trunk/test/DebugInfo/COFF/inheritance.ll
  llvm/trunk/test/DebugInfo/COFF/inlining-files.ll
  llvm/trunk/test/DebugInfo/COFF/inlining-header.ll
  llvm/trunk/test/DebugInfo/COFF/inlining-levels.ll
  llvm/trunk/test/DebugInfo/COFF/register-variables.ll
  llvm/trunk/test/DebugInfo/COFF/scopes.ll
  llvm/trunk/test/DebugInfo/COFF/types-array-advanced.ll
  llvm/trunk/test/DebugInfo/COFF/types-nested-class.ll
  llvm/trunk/test/DebugInfo/COFF/types-ptr-to-member.ll
  llvm/trunk/test/DebugInfo/COFF/udts.ll
  llvm/trunk/test/DebugInfo/COFF/virtual-method-kinds.ll
  llvm/trunk/test/DebugInfo/COFF/vtable-optzn-array.ll
  llvm/trunk/test/DebugInfo/Generic/2009-11-06-NamelessGlobalVariable.ll
  llvm/trunk/test/DebugInfo/Generic/2010-06-29-InlinedFnLocalVar.ll
  llvm/trunk/test/DebugInfo/Generic/accel-table-hash-collisions.ll
  llvm/trunk/test/DebugInfo/Generic/cross-cu-linkonce-distinct.ll
  llvm/trunk/test/DebugInfo/Generic/cross-cu-linkonce.ll
  llvm/trunk/test/DebugInfo/Generic/dbg-at-specficiation.ll
  llvm/trunk/test/DebugInfo/Generic/debuginfofinder-forward-declaration.ll
  llvm/trunk/test/DebugInfo/Generic/dwarf-public-names.ll
  llvm/trunk/test/DebugInfo/Generic/enum.ll
  llvm/trunk/test/DebugInfo/Generic/gvn.ll
  llvm/trunk/test/DebugInfo/Generic/member-pointers.ll
  llvm/trunk/test/DebugInfo/Generic/namespace.ll
  llvm/trunk/test/DebugInfo/Generic/recursive_inlining.ll
  llvm/trunk/test/DebugInfo/Generic/template-recursive-void.ll
  llvm/trunk/test/DebugInfo/Generic/tu-member-pointer.ll
  llvm/trunk/test/DebugInfo/Generic/typedef.ll
  llvm/trunk/test/DebugInfo/MIR/X86/live-debug-values.mir
  llvm/trunk/test/DebugInfo/Mips/InlinedFnLocalVar.ll
  llvm/trunk/test/DebugInfo/PowerPC/tls-fission.ll
  llvm/trunk/test/DebugInfo/PowerPC/tls.ll
  llvm/trunk/test/DebugInfo/X86/2011-09-26-GlobalVarContext.ll
  llvm/trunk/test/DebugInfo/X86/DIModuleContext.ll
  llvm/trunk/test/DebugInfo/X86/DW_AT_calling-convention.ll
  llvm/trunk/test/DebugInfo/X86/DW_AT_specification.ll
  llvm/trunk/test/DebugInfo/X86/DW_TAG_friend.ll
  llvm/trunk/test/DebugInfo/X86/InlinedFnLocalVar.ll
  llvm/trunk/test/DebugInfo/X86/PR26148.ll
  llvm/trunk/test/DebugInfo/X86/arange-and-stub.ll
  llvm/trunk/test/DebugInfo/X86/arange.ll
  llvm/trunk/test/DebugInfo/X86/bitfields-dwarf4.ll
  llvm/trunk/test/DebugInfo/X86/bitfields.ll
  llvm/trunk/test/DebugInfo/X86/c-type-units.ll
  llvm/trunk/test/DebugInfo/X86/concrete_out_of_line.ll
  llvm/trunk/test/DebugInfo/X86/cu-ranges-odr.ll
  llvm/trunk/test/DebugInfo/X86/data_member_location.ll
  llvm/trunk/test/DebugInfo/X86/dbg-subrange.ll
  llvm/trunk/test/DebugInfo/X86/dbg-value-inlined-parameter.ll
  llvm/trunk/test/DebugInfo/X86/dbg-value-regmask-clobber.ll
  llvm/trunk/test/DebugInfo/X86/debug-info-access.ll
  llvm/trunk/test/DebugInfo/X86/debug-info-packed-struct.ll
  llvm/trunk/test/DebugInfo/X86/debug-info-static-member.ll
  llvm/trunk/test/DebugInfo/X86/debug-loc-frame.ll
  llvm/trunk/test/DebugInfo/X86/debugger-tune.ll
  llvm/trunk/test/DebugInfo/X86/decl-derived-member.ll
  llvm/trunk/test/DebugInfo/X86/dllimport.ll
  llvm/trunk/test/DebugInfo/X86/dwarf-aranges-no-dwarf-labels.ll
  llvm/trunk/test/DebugInfo/X86/dwarf-aranges.ll
  llvm/trunk/test/DebugInfo/X86/dwarf-linkage-names.ll
  llvm/trunk/test/DebugInfo/X86/dwarf-public-names.ll
  llvm/trunk/test/DebugInfo/X86/empty-array.ll
  llvm/trunk/test/DebugInfo/X86/enum-class.ll
  llvm/trunk/test/DebugInfo/X86/enum-fwd-decl.ll
  llvm/trunk/test/DebugInfo/X86/externaltyperef.ll
  llvm/trunk/test/DebugInfo/X86/fission-cu.ll
  llvm/trunk/test/DebugInfo/X86/generate-odr-hash.ll
  llvm/trunk/test/DebugInfo/X86/gnu-public-names.ll
  llvm/trunk/test/DebugInfo/X86/inline-member-function.ll
  llvm/trunk/test/DebugInfo/X86/inlined-indirect-value.ll
  llvm/trunk/test/DebugInfo/X86/isel-cse-line.ll
  llvm/trunk/test/DebugInfo/X86/linkage-name.ll
  llvm/trunk/test/DebugInfo/X86/live-debug-values.ll
  llvm/trunk/test/DebugInfo/X86/memberfnptr.ll
  llvm/trunk/test/DebugInfo/X86/misched-dbg-value.ll
  llvm/trunk/test/DebugInfo/X86/multiple-aranges.ll
  llvm/trunk/test/DebugInfo/X86/multiple-at-const-val.ll
  llvm/trunk/test/DebugInfo/X86/nondefault-subrange-array.ll
  llvm/trunk/test/DebugInfo/X86/objc-fwd-decl.ll
  llvm/trunk/test/DebugInfo/X86/pointer-type-size.ll
  llvm/trunk/test/DebugInfo/X86/pr12831.ll
  llvm/trunk/test/DebugInfo/X86/ref_addr_relocation.ll
  llvm/trunk/test/DebugInfo/X86/stack-value-dwarf4.ll
  llvm/trunk/test/DebugInfo/X86/stringpool.ll
  llvm/trunk/test/DebugInfo/X86/struct-loc.ll
  llvm/trunk/test/DebugInfo/X86/template.ll
  llvm/trunk/test/DebugInfo/X86/tls.ll
  llvm/trunk/test/DebugInfo/X86/type_units_with_addresses.ll
  llvm/trunk/test/DebugInfo/X86/unattached-global.ll
  llvm/trunk/test/DebugInfo/X86/union-template.ll
  llvm/trunk/test/DebugInfo/X86/vector.ll
  llvm/trunk/test/Linker/2011-08-04-Metadata.ll
  llvm/trunk/test/Linker/2011-08-04-Metadata2.ll
  llvm/trunk/test/Linker/odr.ll
  llvm/trunk/test/Linker/only-needed-debug-metadata.ll
  llvm/trunk/test/ThinLTO/X86/Inputs/crash_debuginfo.ll
  llvm/trunk/test/ThinLTO/X86/Inputs/drop-debug-info.ll
  llvm/trunk/test/ThinLTO/X86/crash_debuginfo.ll
  llvm/trunk/test/Transforms/GCOVProfiling/return-block.ll
  llvm/trunk/test/Transforms/GlobalMerge/debug-info.ll
  llvm/trunk/test/Transforms/GlobalOpt/2009-03-05-dbg.ll
  llvm/trunk/test/Transforms/Inline/alloca-dbgdeclare.ll
  llvm/trunk/test/Transforms/LoopVectorize/dbg.value.ll
  llvm/trunk/test/Transforms/SampleProfile/cov-zero-samples.ll
  llvm/trunk/test/Transforms/SimplifyCFG/PR27615-simplify-cond-br.ll
  llvm/trunk/test/Transforms/StripSymbols/2010-06-30-StripDebug.ll
  llvm/trunk/test/Transforms/StripSymbols/strip-dead-debug-info.ll
  llvm/trunk/test/tools/llvm-objdump/Hexagon/source-interleave-hexagon.ll
  llvm/trunk/test/tools/llvm-objdump/X86/source-interleave-x86_64.ll
  llvm/trunk/unittests/IR/MetadataTest.cpp
  llvm/trunk/unittests/IR/VerifierTest.cpp

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D20147.71089.patch
Type: text/x-patch
Size: 272503 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160913/0bb6b1a0/attachment-0001.bin>


More information about the llvm-commits mailing list