mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-22 13:29:44 +00:00
This requires exposing some of the current function state from DwarfDebug. I hope there's not too much of that to expose as I go through all the functions, but it still seems nicer to expose singular data down to multiple consumers, than have consumers expose raw mapping data structures up to DwarfDebug for building subprograms. Part of a series of refactoring to allow subprograms in both the skeleton and dwo CUs under Fission. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219060 91177308-0d34-0410-b5e6-96231b3b80d8
76 lines
2.5 KiB
C++
76 lines
2.5 KiB
C++
//===-- llvm/CodeGen/DwarfCompileUnit.h - Dwarf Compile Unit ---*- C++ -*--===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file contains support for writing dwarf compile unit.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_LIB_CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H
|
|
#define LLVM_LIB_CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H
|
|
|
|
#include "DwarfUnit.h"
|
|
#include "llvm/Support/Dwarf.h"
|
|
#include "llvm/ADT/StringRef.h"
|
|
#include "llvm/IR/DebugInfo.h"
|
|
|
|
namespace llvm {
|
|
|
|
class AsmPrinter;
|
|
class DIE;
|
|
class DwarfDebug;
|
|
class DwarfFile;
|
|
class MCSymbol;
|
|
|
|
class DwarfCompileUnit : public DwarfUnit {
|
|
/// The attribute index of DW_AT_stmt_list in the compile unit DIE, avoiding
|
|
/// the need to search for it in applyStmtList.
|
|
unsigned stmtListIndex;
|
|
|
|
public:
|
|
DwarfCompileUnit(unsigned UID, DICompileUnit Node, AsmPrinter *A,
|
|
DwarfDebug *DW, DwarfFile *DWU);
|
|
|
|
void initStmtList(MCSymbol *DwarfLineSectionSym);
|
|
|
|
/// Apply the DW_AT_stmt_list from this compile unit to the specified DIE.
|
|
void applyStmtList(DIE &D);
|
|
|
|
/// getOrCreateGlobalVariableDIE - get or create global variable DIE.
|
|
DIE *getOrCreateGlobalVariableDIE(DIGlobalVariable GV);
|
|
|
|
/// addLabelAddress - Add a dwarf label attribute data and value using
|
|
/// either DW_FORM_addr or DW_FORM_GNU_addr_index.
|
|
void addLabelAddress(DIE &Die, dwarf::Attribute Attribute,
|
|
const MCSymbol *Label);
|
|
|
|
/// addLocalLabelAddress - Add a dwarf label attribute data and value using
|
|
/// DW_FORM_addr only.
|
|
void addLocalLabelAddress(DIE &Die, dwarf::Attribute Attribute,
|
|
const MCSymbol *Label);
|
|
|
|
DwarfCompileUnit &getCU() override { return *this; }
|
|
|
|
unsigned getOrCreateSourceID(StringRef FileName, StringRef DirName) override;
|
|
|
|
/// addRange - Add an address range to the list of ranges for this unit.
|
|
void addRange(RangeSpan Range);
|
|
|
|
void attachLowHighPC(DIE &D, const MCSymbol *Begin, const MCSymbol *End);
|
|
|
|
/// \brief Find DIE for the given subprogram and attach appropriate
|
|
/// DW_AT_low_pc and DW_AT_high_pc attributes. If there are global
|
|
/// variables in this scope then create and insert DIEs for these
|
|
/// variables.
|
|
DIE &updateSubprogramScopeDIE(DISubprogram SP);
|
|
};
|
|
|
|
} // end llvm namespace
|
|
|
|
#endif
|