[PATCH] D36125: Remove PrologEpilogInserter's usage of DBG_VALUE's offset field

Adrian Prantl via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 31 17:26:07 PDT 2017


aprantl created this revision.
Herald added a subscriber: javed.absar.

In the last half-dozen commits to LLVM I removed code that became dead after removing the offset parameter from llvm.dbg.value gradually proceeding from IR towards the backend. Before I can move on to DwarfDebug and friends there is one last side-called offset I need to remove:

This patch modifies PrologEpilogInserter's use of the DBG_VALUE's offset argument to use a DIExpression instead. Because the PrologEpilogInserter runs at the Machine level I had to play a little trick with a named llvm.dbg.mir node to get the DIExpressions to print in MIR dumps (which print the llvm::Module followed by the MachineFunction dump).

I also had to add rudimentary DwarfExpression support to CodeView and as a side-effect also fixed a bug (CodeViewDebug::collectVariableInfo was supposed to give up on variables with complex DIExpressions, but would fail to do so for fragments, which are also modeled as DIExpressions).

With this last holdover removed we will have only one canonical way of representing offsets to debug locations which will simplify the code in DwarfDebug (and future versions of CodeViewDebug once it starts handling more complex expressions) and make it easier to reason about.

This patch is NFC-ish: All test case changes are for assembler comments and the binary output does not change.


Repository:
  rL LLVM

https://reviews.llvm.org/D36125

Files:
  include/llvm/CodeGen/MachineOperand.h
  lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
  lib/CodeGen/MachineModuleInfo.cpp
  lib/CodeGen/PrologEpilogInserter.cpp
  lib/IR/Verifier.cpp
  test/DebugInfo/ARM/PR16736.ll
  test/DebugInfo/COFF/pieces.ll
  test/DebugInfo/X86/bbjoin.ll
  test/DebugInfo/X86/dbg-value-frame-index.ll
  test/DebugInfo/X86/debug-loc-asan.ll
  test/DebugInfo/X86/pieces-4.ll

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D36125.109034.patch
Type: text/x-patch
Size: 9062 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170801/88bc45b6/attachment.bin>


More information about the llvm-commits mailing list