HomeSort by relevance Sort by last modified time
    Searched refs:DwarfUnit (Results 1 - 7 of 7) sorted by null

  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfFile.h 27 class DwarfUnit;
45 SmallVector<std::unique_ptr<DwarfUnit>, 1> CUs;
54 const SmallVectorImpl<std::unique_ptr<DwarfUnit>> &getUnits() { return CUs; }
66 void addUnit(std::unique_ptr<DwarfUnit> U);
DwarfUnit.cpp 1 //===-- llvm/CodeGen/DwarfUnit.cpp - Dwarf Type and Compile Units ---------===//
14 #include "DwarfUnit.h"
44 DwarfUnit::DwarfUnit(unsigned UID, dwarf::Tag UnitTag, DICompileUnit Node,
57 : DwarfUnit(UID, dwarf::DW_TAG_compile_unit, Node, A, DW, DWU) {
64 : DwarfUnit(UID, dwarf::DW_TAG_type_unit, CU.getCUNode(), A, DW, DWU),
71 DwarfUnit::~DwarfUnit() {
80 DIEEntry *DwarfUnit::createDIEEntry(DIE &Entry) {
87 int64_t DwarfUnit::getDefaultLowerBound() const
    [all...]
Android.mk 17 DwarfUnit.cpp \
DwarfUnit.h 1 //===-- llvm/CodeGen/DwarfUnit.h - Dwarf Compile Unit ---*- C++ -*--===//
67 class DwarfUnit {
142 DwarfUnit *Skeleton;
144 DwarfUnit(unsigned UID, dwarf::Tag, DICompileUnit CU, AsmPrinter *A,
148 virtual ~DwarfUnit();
151 void setSkeleton(DwarfUnit &Skel) { Skeleton = &Skel; }
154 DwarfUnit *getSkeleton() const { return Skeleton; }
527 class DwarfCompileUnit : public DwarfUnit {
559 class DwarfTypeUnit : public DwarfUnit {
578 return DwarfUnit::getHeaderSize() + sizeof(uint64_t) + // Type Signatur
    [all...]
DwarfDebug.h 48 class DwarfUnit;
339 const SmallVectorImpl<std::unique_ptr<DwarfUnit>> &getUnits() {
454 const StringMap<const DIE *> &(DwarfUnit::*Accessor)()
478 void initSkeletonUnit(const DwarfUnit &U, DIE &Die,
479 std::unique_ptr<DwarfUnit> NewU);
503 void addGnuPubAttributes(DwarfUnit &U, DIE &D) const;
DwarfFile.cpp 13 #include "DwarfUnit.h"
45 void DwarfFile::addUnit(std::unique_ptr<DwarfUnit> U) {
DwarfDebug.cpp 18 #include "DwarfUnit.h"
220 // Define out of line so we don't have to include DwarfUnit.h in DwarfDebug.h.
352 static void addSectionLabel(AsmPrinter &Asm, DwarfUnit &U, DIE &D,
519 // Some of this is duplicated from DwarfUnit::getOrCreateSubprogramDIE, with
614 void DwarfDebug::addGnuPubAttributes(DwarfUnit &U, DIE &D) const {
    [all...]

Completed in 116 milliseconds