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 | c1dbd5d9c30ea67ae45f190ff90e076cdf8bbc17 (patch) | |
tree | a174c59395d7ca84096e5115461e51d83bee5104 /lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | 91dde155f1c42417e4db24fb595494b14fd7ab2e (diff) | |
download | external_llvm-c1dbd5d9c30ea67ae45f190ff90e076cdf8bbc17.tar.gz external_llvm-c1dbd5d9c30ea67ae45f190ff90e076cdf8bbc17.tar.bz2 external_llvm-c1dbd5d9c30ea67ae45f190ff90e076cdf8bbc17.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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128097 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfDebug.h | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.h b/lib/CodeGen/AsmPrinter/DwarfDebug.h index e59ab5bd82..2863ea3806 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/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 |