diff options
author | Andrew Trick <atrick@apple.com> | 2011-03-22 19:18:42 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2011-03-22 19:18:42 +0000 |
commit | b0f98bb5e9a8e33a609971239f6dd0580cc0c0bd (patch) | |
tree | 84ab5b1df27c56d2f6255b3a4e6d15927318f45f /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | 5cc5eef0c6127ed5161b445286ca0f7617e7cd12 (diff) | |
download | bcm5719-llvm-b0f98bb5e9a8e33a609971239f6dd0580cc0c0bd.tar.gz bcm5719-llvm-b0f98bb5e9a8e33a609971239f6dd0580cc0c0bd.zip |
Revert r128045 and r128051, debug info enhancements.
Temporarily reverting these to see if we can get llvm-objdump to link. Hopefully this is not the problem.
llvm-svn: 128097
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index e59ab5bd821..2863ea38060 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -200,6 +200,8 @@ class DwarfDebug { typedef SmallVector<DbgScope *, 2> ScopeVector; + SmallPtrSet<const MachineInstr *, 8> InsnsEndScopeSet; + /// InlineInfo - Keep track of inlined functions and their location. This /// information is used to populate debug_inlined section. typedef std::pair<const MCSymbol *, DIE *> InlineInfoLabels; @@ -222,16 +224,6 @@ class DwarfDebug { /// a debuggging information entity. SmallPtrSet<const MachineInstr *, 8> InsnNeedsLabel; - /// InsnsNeedsLabelAfter - Collection of instructions that need a label after - /// the instruction because they end a scope of clobber a register. - SmallPtrSet<const MachineInstr *, 8> InsnsNeedsLabelAfter; - - /// RegClobberInsn - For each DBG_VALUE instruction referring to a register - /// that is clobbered before the variable gets a new DBG_VALUE, map the - /// instruction that clobbered the register. This instruction will also be in - /// InsnsNeedsLabelAfter. - DenseMap<const MachineInstr *, const MachineInstr *> RegClobberInsn; - SmallVector<const MCSymbol *, 8> DebugRangeSymbols; /// Previous instruction's location information. This is used to determine |