Deleted Added
full compact
DwarfDebug.h (195098) DwarfDebug.h (195340)
1//===-- llvm/CodeGen/DwarfDebug.h - Dwarf Debug Framework ------*- C++ -*--===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 56 unchanged lines hidden (view full) ---

65 /// CompileUnitMap - A map of global variables representing compile units to
66 /// compile units.
67 DenseMap<Value *, CompileUnit *> CompileUnitMap;
68
69 /// CompileUnits - All the compile units in this module.
70 ///
71 SmallVector<CompileUnit *, 8> CompileUnits;
72
1//===-- llvm/CodeGen/DwarfDebug.h - Dwarf Debug Framework ------*- C++ -*--===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 56 unchanged lines hidden (view full) ---

65 /// CompileUnitMap - A map of global variables representing compile units to
66 /// compile units.
67 DenseMap<Value *, CompileUnit *> CompileUnitMap;
68
69 /// CompileUnits - All the compile units in this module.
70 ///
71 SmallVector<CompileUnit *, 8> CompileUnits;
72
73 /// MainCU - Some platform prefers one compile unit per .o file. In such
74 /// cases, all dies are inserted in MainCU.
75 CompileUnit *MainCU;
73 /// ModuleCU - All DIEs are inserted in ModuleCU.
74 CompileUnit *ModuleCU;
76
77 /// AbbreviationsSet - Used to uniquely define abbreviations.
78 ///
79 FoldingSet<DIEAbbrev> AbbreviationsSet;
80
81 /// Abbreviations - A list of all the unique abbreviations in use.
82 ///
83 std::vector<DIEAbbrev *> Abbreviations;

--- 461 unchanged lines hidden ---
75
76 /// AbbreviationsSet - Used to uniquely define abbreviations.
77 ///
78 FoldingSet<DIEAbbrev> AbbreviationsSet;
79
80 /// Abbreviations - A list of all the unique abbreviations in use.
81 ///
82 std::vector<DIEAbbrev *> Abbreviations;

--- 461 unchanged lines hidden ---