forked from OSchip/llvm-project
move these out of their own timer groups into the 'uncategorized' groups.
llvm-svn: 92206
This commit is contained in:
parent
6de8201a63
commit
f81add3fdf
|
@ -30,11 +30,6 @@
|
|||
#include "llvm/System/Path.h"
|
||||
using namespace llvm;
|
||||
|
||||
static TimerGroup &getDwarfTimerGroup() {
|
||||
static TimerGroup DwarfTimerGroup("Dwarf Debugging");
|
||||
return DwarfTimerGroup;
|
||||
}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
/// Configuration values for initial hash set sizes (log2).
|
||||
|
@ -274,8 +269,7 @@ DwarfDebug::DwarfDebug(raw_ostream &OS, AsmPrinter *A, const MCAsmInfo *T)
|
|||
SectionSourceLines(), didInitial(false), shouldEmit(false),
|
||||
CurrentFnDbgScope(0), DebugTimer(0) {
|
||||
if (TimePassesIsEnabled)
|
||||
DebugTimer = new Timer("Dwarf Debug Writer",
|
||||
getDwarfTimerGroup());
|
||||
DebugTimer = new Timer("Dwarf Debug Writer");
|
||||
}
|
||||
DwarfDebug::~DwarfDebug() {
|
||||
for (unsigned j = 0, M = DIEValues.size(); j < M; ++j)
|
||||
|
|
|
@ -35,19 +35,13 @@
|
|||
#include "llvm/ADT/StringExtras.h"
|
||||
using namespace llvm;
|
||||
|
||||
static TimerGroup &getDwarfTimerGroup() {
|
||||
static TimerGroup DwarfTimerGroup("DWARF Exception");
|
||||
return DwarfTimerGroup;
|
||||
}
|
||||
|
||||
DwarfException::DwarfException(raw_ostream &OS, AsmPrinter *A,
|
||||
const MCAsmInfo *T)
|
||||
: Dwarf(OS, A, T, "eh"), shouldEmitTable(false), shouldEmitMoves(false),
|
||||
shouldEmitTableModule(false), shouldEmitMovesModule(false),
|
||||
ExceptionTimer(0) {
|
||||
if (TimePassesIsEnabled)
|
||||
ExceptionTimer = new Timer("DWARF Exception Writer",
|
||||
getDwarfTimerGroup());
|
||||
ExceptionTimer = new Timer("DWARF Exception Writer");
|
||||
}
|
||||
|
||||
DwarfException::~DwarfException() {
|
||||
|
|
Loading…
Reference in New Issue