From d79f5480ac05b9ec41b0095a00c19d25e06612ee Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Mon, 10 Dec 2012 19:51:13 +0000 Subject: [PATCH] Reorder fission variables. llvm-svn: 169756 --- llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 4 ++-- llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 12 +++++++++--- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 945fba8..574474c 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -153,10 +153,10 @@ DIType DbgVariable::getType() const { } // end llvm namespace DwarfDebug::DwarfDebug(AsmPrinter *A, Module *M) - : Asm(A), MMI(Asm->MMI), FirstCU(0), FissionCU(0), + : Asm(A), MMI(Asm->MMI), FirstCU(0), AbbreviationsSet(InitAbbreviationsSetSize), SourceIdMap(DIEValueAllocator), StringPool(DIEValueAllocator), - PrevLabel(NULL), GlobalCUIndexCount(0) { + PrevLabel(NULL), GlobalCUIndexCount(0), FissionCU(0) { NextStringPoolNumber = 0; DwarfInfoSectionSym = DwarfAbbrevSectionSym = 0; diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index 689ccca..56b9218 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -205,9 +205,6 @@ class DwarfDebug { CompileUnit *FirstCU; - // The CU left in the original object file for Fission debug info. - CompileUnit *FissionCU; - // Maps MDNode with its corresponding CompileUnit. DenseMap CUMap; @@ -322,6 +319,15 @@ class DwarfDebug { // DWARF5 Experimental Options bool HasDwarfAccelTables; bool HasDwarfFission; + + // Fission Variables + // In general these will all be for bits that are left in the + // original object file, rather than things that are meant + // to be in the .dwo sections. + + // The CU left in the original object file for Fission debug info. + CompileUnit *FissionCU; + private: /// \brief Define a unique number for the abbreviation. -- 2.7.4