2009-05-11 07:14:38 +08:00
|
|
|
//===-- llvm/CodeGen/DwarfWriter.cpp - Dwarf Framework --------------------===//
|
2005-12-22 03:48:16 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-12-22 03:48:16 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2007-01-30 02:51:14 +08:00
|
|
|
// This file contains support for writing dwarf info into asm files.
|
2005-12-22 03:48:16 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2006-01-28 02:32:41 +08:00
|
|
|
|
2006-01-05 06:28:25 +08:00
|
|
|
#include "llvm/CodeGen/DwarfWriter.h"
|
2009-05-15 17:23:25 +08:00
|
|
|
#include "DwarfDebug.h"
|
2009-05-15 09:12:28 +08:00
|
|
|
#include "DwarfException.h"
|
2007-01-27 05:22:28 +08:00
|
|
|
#include "llvm/CodeGen/MachineModuleInfo.h"
|
2009-05-15 17:23:25 +08:00
|
|
|
|
2006-01-05 06:28:25 +08:00
|
|
|
using namespace llvm;
|
2006-01-04 21:52:30 +08:00
|
|
|
|
2009-01-09 07:40:34 +08:00
|
|
|
static RegisterPass<DwarfWriter>
|
|
|
|
X("dwarfwriter", "DWARF Information Writer");
|
|
|
|
char DwarfWriter::ID = 0;
|
|
|
|
|
2006-10-30 21:35:07 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// DwarfWriter Implementation
|
2006-11-03 04:12:39 +08:00
|
|
|
///
|
2006-10-30 21:35:07 +08:00
|
|
|
|
2009-03-11 04:41:52 +08:00
|
|
|
DwarfWriter::DwarfWriter()
|
2009-03-11 05:23:25 +08:00
|
|
|
: ImmutablePass(&ID), DD(0), DE(0) {}
|
2006-10-30 21:35:07 +08:00
|
|
|
|
|
|
|
DwarfWriter::~DwarfWriter() {
|
2007-01-30 02:51:14 +08:00
|
|
|
delete DE;
|
|
|
|
delete DD;
|
2006-10-30 21:35:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// BeginModule - Emit all Dwarf sections that should come prior to the
|
|
|
|
/// content.
|
2009-01-09 07:40:34 +08:00
|
|
|
void DwarfWriter::BeginModule(Module *M,
|
|
|
|
MachineModuleInfo *MMI,
|
|
|
|
raw_ostream &OS, AsmPrinter *A,
|
2009-08-23 04:48:53 +08:00
|
|
|
const MCAsmInfo *T) {
|
2009-01-09 07:40:34 +08:00
|
|
|
DE = new DwarfException(OS, A, T);
|
|
|
|
DD = new DwarfDebug(OS, A, T);
|
2009-06-26 06:36:02 +08:00
|
|
|
DE->BeginModule(M, MMI);
|
|
|
|
DD->BeginModule(M, MMI);
|
2006-10-30 21:35:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// EndModule - Emit all Dwarf sections that should come after the content.
|
|
|
|
///
|
|
|
|
void DwarfWriter::EndModule() {
|
2007-01-30 02:51:14 +08:00
|
|
|
DE->EndModule();
|
|
|
|
DD->EndModule();
|
2009-09-12 01:24:29 +08:00
|
|
|
delete DD; DD = 0;
|
|
|
|
delete DE; DE = 0;
|
2006-10-30 21:35:07 +08:00
|
|
|
}
|
|
|
|
|
2008-08-16 20:57:46 +08:00
|
|
|
/// BeginFunction - Gather pre-function debug information. Assumes being
|
2006-10-30 21:35:07 +08:00
|
|
|
/// emitted immediately after the function entry point.
|
|
|
|
void DwarfWriter::BeginFunction(MachineFunction *MF) {
|
2007-01-30 02:51:14 +08:00
|
|
|
DE->BeginFunction(MF);
|
|
|
|
DD->BeginFunction(MF);
|
2006-10-30 21:35:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// EndFunction - Gather and emit post-function debug information.
|
|
|
|
///
|
2008-09-26 08:28:12 +08:00
|
|
|
void DwarfWriter::EndFunction(MachineFunction *MF) {
|
|
|
|
DD->EndFunction(MF);
|
2007-02-02 00:31:34 +08:00
|
|
|
DE->EndFunction();
|
2008-08-16 20:57:46 +08:00
|
|
|
|
2008-07-22 08:53:37 +08:00
|
|
|
if (MachineModuleInfo *MMI = DD->getMMI() ? DD->getMMI() : DE->getMMI())
|
2007-02-02 00:31:34 +08:00
|
|
|
// Clear function debug information.
|
|
|
|
MMI->EndFunction();
|
2006-10-30 21:35:07 +08:00
|
|
|
}
|
2009-01-13 03:17:34 +08:00
|
|
|
|
|
|
|
/// RecordSourceLine - Records location information and associates it with a
|
|
|
|
/// label. Returns a unique label ID used to generate a label and provide
|
|
|
|
/// correspondence to the source line list.
|
|
|
|
unsigned DwarfWriter::RecordSourceLine(unsigned Line, unsigned Col,
|
2009-10-01 06:51:28 +08:00
|
|
|
MDNode *Scope) {
|
|
|
|
return DD->RecordSourceLine(Line, Col, Scope);
|
2009-01-13 03:17:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// RecordRegionStart - Indicate the start of a region.
|
2009-08-29 07:24:31 +08:00
|
|
|
unsigned DwarfWriter::RecordRegionStart(MDNode *N) {
|
|
|
|
return DD->RecordRegionStart(N);
|
2009-01-13 03:17:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// RecordRegionEnd - Indicate the end of a region.
|
2009-08-29 07:24:31 +08:00
|
|
|
unsigned DwarfWriter::RecordRegionEnd(MDNode *N) {
|
|
|
|
return DD->RecordRegionEnd(N);
|
2009-01-13 03:17:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// getRecordSourceLineCount - Count source lines.
|
|
|
|
unsigned DwarfWriter::getRecordSourceLineCount() {
|
2009-03-11 05:23:25 +08:00
|
|
|
return DD->getRecordSourceLineCount();
|
2009-01-13 03:17:34 +08:00
|
|
|
}
|
2009-01-14 05:25:00 +08:00
|
|
|
|
2009-01-14 05:44:10 +08:00
|
|
|
/// RecordVariable - Indicate the declaration of a local variable.
|
|
|
|
///
|
2009-08-29 07:24:31 +08:00
|
|
|
void DwarfWriter::RecordVariable(MDNode *N, unsigned FrameIndex) {
|
|
|
|
DD->RecordVariable(N, FrameIndex);
|
2009-01-14 05:44:10 +08:00
|
|
|
}
|
2009-01-14 07:54:55 +08:00
|
|
|
|
2009-02-20 08:44:43 +08:00
|
|
|
/// ShouldEmitDwarfDebug - Returns true if Dwarf debugging declarations should
|
|
|
|
/// be emitted.
|
|
|
|
bool DwarfWriter::ShouldEmitDwarfDebug() const {
|
2009-05-03 16:50:41 +08:00
|
|
|
return DD && DD->ShouldEmitDwarfDebug();
|
2009-02-20 08:44:43 +08:00
|
|
|
}
|
2009-04-14 01:02:03 +08:00
|
|
|
|
2009-08-29 07:24:31 +08:00
|
|
|
//// RecordInlinedFnStart
|
2009-05-07 08:16:31 +08:00
|
|
|
unsigned DwarfWriter::RecordInlinedFnStart(DISubprogram SP, DICompileUnit CU,
|
|
|
|
unsigned Line, unsigned Col) {
|
|
|
|
return DD->RecordInlinedFnStart(SP, CU, Line, Col);
|
2009-04-15 08:10:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// RecordInlinedFnEnd - Indicate the end of inlined subroutine.
|
2009-05-07 08:16:31 +08:00
|
|
|
unsigned DwarfWriter::RecordInlinedFnEnd(DISubprogram SP) {
|
2009-04-15 08:10:26 +08:00
|
|
|
return DD->RecordInlinedFnEnd(SP);
|
2009-04-14 01:02:03 +08:00
|
|
|
}
|
|
|
|
|