aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter/DwarfDebug.h
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2012-12-10 19:51:21 +0000
committerEric Christopher <echristo@gmail.com>2012-12-10 19:51:21 +0000
commit4daaed1c7077deb185628a86252afdbbbaf5d3db (patch)
tree6ad06fabd73deb1766ae39b7cbdcbcd2eb9b1622 /lib/CodeGen/AsmPrinter/DwarfDebug.h
parent9ec87b3c86151d065b58a1f4f94c37034aae97da (diff)
Use the somewhat semantic term "split dwarf" it more matches what's
going on and makes a lot of the terminology in comments make more sense. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169758 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r--lib/CodeGen/AsmPrinter/DwarfDebug.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.h b/lib/CodeGen/AsmPrinter/DwarfDebug.h
index 56b9218474..1125a94c4f 100644
--- a/lib/CodeGen/AsmPrinter/DwarfDebug.h
+++ b/lib/CodeGen/AsmPrinter/DwarfDebug.h
@@ -318,7 +318,7 @@ class DwarfDebug {
// DWARF5 Experimental Options
bool HasDwarfAccelTables;
- bool HasDwarfFission;
+ bool HasSplitDwarf;
// Fission Variables
// In general these will all be for bits that are left in the
@@ -326,7 +326,7 @@ class DwarfDebug {
// to be in the .dwo sections.
// The CU left in the original object file for Fission debug info.
- CompileUnit *FissionCU;
+ CompileUnit *SkeletonCU;
private:
@@ -428,13 +428,14 @@ private:
/// \brief Emit inline info using custom format.
void emitDebugInlineInfo();
- /// DWARF 5 Experimental Fission Emitters
+ /// DWARF 5 Experimental Split Dwarf Emitters
- /// \brief Construct the fission compile unit for the debug info section.
- CompileUnit *constructFissionCU(const MDNode *);
+ /// \brief Construct the split debug info compile unit for the debug info
+ /// section.
+ CompileUnit *constructSkeletonCU(const MDNode *);
- /// \brief Emit the fission debug info section.
- void emitFissionSkeletonCU(const MCSection *);
+ /// \brief Emit the local split debug info section.
+ void emitSkeletonCU(const MCSection *);
/// \brief Emit the debug info dwo section.
void emitDebugInfoDWO();
@@ -543,8 +544,8 @@ public:
bool useDwarfAccelTables() { return HasDwarfAccelTables; }
/// \brief Returns whether or not to change the current debug info for the
- /// fission proposal support.
- bool useDwarfFission() { return HasDwarfFission; }
+ /// split dwarf proposal support.
+ bool useSplitDwarf() { return HasSplitDwarf; }
};
} // End of namespace llvm