Home
last modified time | relevance | path

Searched defs:Die (Results 1 – 25 of 42) sorted by relevance

12

/freebsd-head/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
HDDIEHash.cpp30 static StringRef getDIEStringAttr(const DIE &Die, uint16_t Attr) { in getDIEStringAttr()
95 for (const DIE *Die : llvm::reverse(Parents)) { in addParentContext() local
111 void DIEHash::collectAttributes(const DIE &Die, DIEAttrs &Attrs) { in collectAttributes()
347 void DIEHash::addAttributes(const DIE &Die) { in addAttributes()
353 void DIEHash::hashNestedType(const DIE &Die, StringRef Name) { in hashNestedType()
368 void DIEHash::computeHash(const DIE &Die) { in computeHash()
399 uint64_t DIEHash::computeCUSignature(StringRef DWOName, const DIE &Die) { in computeCUSignature()
422 uint64_t DIEHash::computeTypeSignature(const DIE &Die) { in computeTypeSignature()
HDDwarfUnit.cpp214 void DwarfUnit::addFlag(DIE &Die, dwarf::Attribute Attribute) { in addFlag()
221 void DwarfUnit::addUInt(DIEValueList &Die, dwarf::Attribute Attribute, in addUInt()
235 void DwarfUnit::addSInt(DIEValueList &Die, dwarf::Attribute Attribute, in addSInt()
242 void DwarfUnit::addSInt(DIELoc &Die, std::optional<dwarf::Form> Form, in addSInt()
247 void DwarfUnit::addString(DIE &Die, dwarf::Attribute Attribute, in addString()
280 void DwarfUnit::addLabel(DIEValueList &Die, dwarf::Attribute Attribute, in addLabel()
285 void DwarfUnit::addLabel(DIELoc &Die, dwarf::Form Form, const MCSymbol *Label) { in addLabel()
289 void DwarfUnit::addSectionOffset(DIE &Die, dwarf::Attribute Attribute, in addSectionOffset()
307 void DwarfUnit::addPoolOpAddress(DIEValueList &Die, const MCSymbol *Label) { in addPoolOpAddress()
332 void DwarfUnit::addOpAddress(DIELoc &Die, const MCSymbol *Sym) { in addOpAddress()
[all …]
HDDwarfCompileUnit.cpp83 void DwarfCompileUnit::addLabelAddress(DIE &Die, dwarf::Attribute Attribute, in addLabelAddress()
123 void DwarfCompileUnit::addLocalLabelAddress(DIE &Die, in addLocalLabelAddress()
155 if (DIE *Die = getDIE(GV)) in getOrCreateGlobalVariableDIE() local
653 DIE &Die, SmallVector<RangeSpan, 2> Ranges) { in attachRangesOrLowHighPC()
668 DIE &Die, const SmallVectorImpl<InsnRange> &Ranges) { in attachRangesOrLowHighPC()
1405 if (DIE *Die = getDIE(IE)) in getOrCreateImportedEntityDIE() local
1433 auto *Die = Entity->getDIE(); in finishEntityDefinition() local
1521 void DwarfCompileUnit::addGlobalName(StringRef Name, const DIE &Die, in addGlobalName()
1542 void DwarfCompileUnit::addGlobalTypeImpl(const DIType *Ty, const DIE &Die, in addGlobalTypeImpl()
1562 void DwarfCompileUnit::addVariableAddress(const DbgVariable &DV, DIE &Die, in addVariableAddress()
[all …]
HDDwarfFile.cpp92 unsigned DwarfFile::computeSizeAndOffset(DIE &Die, unsigned Offset) { in computeSizeAndOffset()
HDDwarfUnit.h84 void addAttribute(DIEValueList &Die, dwarf::Attribute Attribute, in addAttribute()
/freebsd-head/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
HDDWARFLinkerCompileUnit.cpp138 void CompileUnit::noteForwardReference(DIE *Die, const CompileUnit *RefUnit, in noteForwardReference()
175 void CompileUnit::noteRangeAttribute(const DIE &Die, PatchLocation Attr) { in noteRangeAttribute()
188 void CompileUnit::addNamespaceAccelerator(const DIE *Die, in addNamespaceAccelerator()
193 void CompileUnit::addObjCAccelerator(const DIE *Die, in addObjCAccelerator()
199 void CompileUnit::addNameAccelerator(const DIE *Die, in addNameAccelerator()
205 void CompileUnit::addTypeAccelerator(const DIE *Die, in addTypeAccelerator()
HDDWARFLinker.cpp153 bool DWARFLinker::DIECloner::getDIENames(const DWARFDie &Die, in getDIENames()
247 DWARFDie Die; member
268 static bool updatePruning(const DWARFDie &Die, CompileUnit &CU, in updatePruning()
290 static void updateChildPruning(const DWARFDie &Die, CompileUnit &CU, in updateChildPruning()
648 static void updateChildIncompleteness(const DWARFDie &Die, CompileUnit &CU, in updateChildIncompleteness()
668 static void updateRefIncompleteness(const DWARFDie &Die, CompileUnit &CU, in updateRefIncompleteness()
693 const DWARFDie &Die, CompileUnit &CU, unsigned Flags, in lookForChildDIEsToKeep()
720 static bool isODRCanonicalCandidate(const DWARFDie &Die, CompileUnit &CU) { in isODRCanonicalCandidate()
732 void DWARFLinker::markODRCanonicalDie(const DWARFDie &Die, CompileUnit &CU) { in markODRCanonicalDie()
744 const DWARFDie &Die, CompileUnit &CU, unsigned Flags, in lookForRefDIEsToKeep()
[all …]
HDDWARFLinkerDeclContext.cpp34 bool DeclContext::setLastSeenDIE(CompileUnit &U, const DWARFDie &Die) { in setLastSeenDIE()
/freebsd-head/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
HDDWARFLinkerCompileUnit.h303 DIEInfo &getDIEInfo(const DWARFDie &Die) { in getDIEInfo()
309 const DIEInfo &getDIEInfo(const DWARFDie &Die) const { in getDIEInfo()
459 getFirstChildEntry(const DWARFDebugInfoEntry *Die) const { in getFirstChildEntry()
465 getSiblingEntry(const DWARFDebugInfoEntry *Die) const { in getSiblingEntry()
470 DWARFDie getParent(const DWARFDebugInfoEntry *Die) { in getParent()
490 DWARFDie getDIE(const DWARFDebugInfoEntry *Die) { in getDIE()
495 uint32_t getDIEIndex(const DWARFDebugInfoEntry *Die) const { in getDIEIndex()
500 uint32_t getDIEIndex(const DWARFDie &Die) const { in getDIEIndex()
511 std::optional<DWARFFormValue> find(const DWARFDebugInfoEntry *Die, in find()
HDOutputSections.cpp38 DIE *Die, in DebugType2TypeDieRefPatch()
44 DebugTypeStrPatch::DebugTypeStrPatch(uint64_t PatchOffset, DIE *Die, in DebugTypeStrPatch()
49 DebugTypeLineStrPatch::DebugTypeLineStrPatch(uint64_t PatchOffset, DIE *Die, in DebugTypeLineStrPatch()
55 DebugTypeDeclFilePatch::DebugTypeDeclFilePatch(DIE *Die, TypeEntry *TypeName, in DebugTypeDeclFilePatch()
HDOutputSections.h108 DIE *Die = nullptr; member
117 DIE *Die = nullptr; member
126 DIE *Die = nullptr; member
135 DIE *Die = nullptr; member
HDDWARFEmitterImpl.cpp156 void DwarfEmitterImpl::emitDIE(DIE &Die) { in emitDIE()
HDTypePool.h59 std::atomic<DIE *> Die = {nullptr}; variable
/freebsd-head/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
HDDwarfTransformer.cpp44 DWARFDie Die = CU->getUnitDIE(); in CUInfo() local
89 static DWARFDie GetParentDeclContextDIE(DWARFDie &Die) { in GetParentDeclContextDIE()
135 getQualifiedNameIndex(DWARFDie &Die, uint64_t Language, GsymCreator &Gsym) { in getQualifiedNameIndex()
189 static bool hasInlineInfo(DWARFDie Die, uint32_t Depth) { in hasInlineInfo()
221 CUInfo &CUI, DWARFDie Die, uint32_t Depth, in parseInlineInfo()
314 DWARFDie Die, GsymCreator &Gsym, in convertFunctionLineTable()
448 DWARFDie Die) { in handleDie()
587 DWARFDie Die = getDie(*CU); in convert() local
612 DWARFDie Die = getDie(*CU); in convert() local
/freebsd-head/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
HDDWARFDie.h44 const DWARFDebugInfoEntry *Die = nullptr; variable
304 DWARFDie Die; variable
356 DWARFDie Die; variable
HDDWARFVerifier.h52 DWARFDie Die; member
/freebsd-head/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
HDDWARFVerifier.cpp219 bool DWARFVerifier::verifyName(const DWARFDie &Die) { in verifyName()
250 auto Die = Unit.getDIEAtIndex(I); in verifyUnitContents() local
275 DWARFDie Die = Unit.getUnitDIE(/* ExtractUnitDIEOnly = */ false); in verifyUnitContents() local
318 unsigned DWARFVerifier::verifyDebugInfoCallSite(const DWARFDie &Die) { in verifyDebugInfoCallSite()
550 unsigned DWARFVerifier::verifyDieRanges(const DWARFDie &Die, in verifyDieRanges()
656 unsigned DWARFVerifier::verifyDebugInfoAttribute(const DWARFDie &Die, in verifyDebugInfoAttribute()
825 unsigned DWARFVerifier::verifyDebugInfoForm(const DWARFDie &Die, in verifyDebugInfoForm()
935 auto Die = CU->getUnitDIE(); in verifyDebugLineStmtOffsets() local
981 auto Die = CU->getUnitDIE(); in verifyDebugLineRows() local
1187 auto Die = DCtx.getDIEForOffset(Offset); in verifyAppleAccelTable() local
[all …]
HDDWARFUnit.cpp732 void DWARFUnit::updateAddressDieMap(DWARFDie Die) { in updateAddressDieMap()
777 void DWARFUnit::updateVariableDieMap(DWARFDie Die) { in updateVariableDieMap()
901 DWARFDie DWARFUnit::getParent(const DWARFDebugInfoEntry *Die) { in getParent()
923 DWARFDie DWARFUnit::getSibling(const DWARFDebugInfoEntry *Die) { in getSibling()
945 DWARFDie DWARFUnit::getPreviousSibling(const DWARFDebugInfoEntry *Die) { in getPreviousSibling()
984 DWARFDie DWARFUnit::getFirstChild(const DWARFDebugInfoEntry *Die) { in getFirstChild()
1009 DWARFDie DWARFUnit::getLastChild(const DWARFDebugInfoEntry *Die) { in getLastChild()
HDDWARFDie.cpp110 static void dumpAttribute(raw_ostream &OS, const DWARFDie &Die, in dumpAttribute()
286 DWARFDie Die = Worklist.pop_back_val(); in findRecursively() local
493 getTypeSizeImpl(DWARFDie Die, uint64_t PointerSize, in getTypeSizeImpl()
565 static unsigned dumpParentChain(DWARFDie Die, raw_ostream &OS, unsigned Indent, in dumpParentChain()
HDDWARFExpression.cpp247 auto Die = U->getDIEForOffset(U->getOffset() + Operands[Operand]); in prettyPrintBaseTypeRef() local
408 auto Die = U->getDIEForOffset(U->getOffset() + Op.Operands[Operand]); in verify() local
/freebsd-head/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
HDllvm-dwarfdump.cpp398 const StringSet<> &Names, DWARFDie Die, StringRef NameRef, raw_ostream &OS, in filterByName()
433 DWARFDie Die = {Unit, &Entry}; in filterByName() local
458 if (DWARFDie Die = DICtx.getDIEForOffset(*Off)) in getDies() local
488 if (DWARFDie Die = toDie(Entry, DICtx)) in getDies() local
509 for (DWARFDie Die : Dies) in filterByAccelName() local
523 DWARFDie Die = DICtx.getDIEForOffset(*Off); in findAllApple() local
539 for (DWARFDie Die : Dies) in findAllApple() local
/freebsd-head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
HDsanitizer_termination.cpp50 void NORETURN Die() { in Die() function
/freebsd-head/contrib/llvm-project/llvm/include/llvm/DWARFLinker/Classic/
HDDWARFLinker.h357 DWARFDie Die; member
368 : Die(Die), Type(T), CU(CU), Flags(Flags), AncestorIdx(0) {} in Die() function
372 : Die(Die), Type(T), CU(CU), Flags(0), OtherInfo(OtherInfo) {} in Die() function
HDDWARFLinkerCompileUnit.h153 DIEInfo &getInfo(const DWARFDie &Die) { in getInfo()
237 const DIE *Die; member
/freebsd-head/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
HDLVDWARFReader.cpp246 void LVDWARFReader::processOneAttribute(const DWARFDie &Die, in processOneAttribute()
986 const DWARFDie &Die, in processLocationList()
1067 const DWARFDie &Die, in processLocationMember()

12