/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | DWARFDIE.cpp | 55 if (m_seen.insert(die.GetDIE()).second) in Next() 121 DWARFDIE::GetDIE(dw_offset_t die_offset) const { in GetDIE() function in DWARFDIE 123 return m_cu->GetDIE(die_offset); in GetDIE() 223 if (GetDIE()->IsNULL()) { in GetName() 227 const char *name = GetDIE()->GetAttributeValueAsString(GetCU(), DW_AT_name, nullptr, true); in GetName() 241 if (GetDIE()->IsNULL()) { in AppendTypeName()
|
H A D | SymbolFileDWARF.cpp | 819 if (!GetDWOName(dwarf_cu, *cu_die.GetDIE())) in ParseCompileUnit() 921 DWARFRangeList ranges = die.GetDIE()->GetAttributeAddressRanges( in ParseFunction() 1485 SymbolFileDWARF::GetDIE(lldb::user_id_t uid) { return GetDIE(DIERef(uid)); } in GetDIE() function in SymbolFileDWARF 1494 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclForUID() 1507 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclContextForUID() 1518 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclContextContainingUID() 1529 if (DWARFDIE die = GetDIE(type_uid)) in GetCompilerContextForUID() 1539 if (DWARFDIE type_die = GetDIE(type_uid)) in ResolveTypeUID() 1548 if (DWARFDIE type_die = GetDIE(type_uid)) in GetDynamicArrayInfoForUID() 1555 return ResolveType(GetDIE(die_ref), true); in ResolveTypeUID() [all …]
|
H A D | SymbolFileDWARFDwo.cpp | 145 SymbolFileDWARFDwo::GetDIE(const DIERef &die_ref) { in GetDIE() function in SymbolFileDWARFDwo 147 return DebugInfo().GetDIE(die_ref.section(), die_ref.die_offset()); in GetDIE() 148 return GetBaseSymbolFile().GetDIE(die_ref); in GetDIE()
|
H A D | DebugNamesDWARFIndex.cpp | 139 DWARFDIE DebugNamesDWARFIndex::GetDIE(const DebugNames::Entry &entry) const { in GetDIE() function in DebugNamesDWARFIndex 144 if (DWARFDIE die = unit->GetDIE(unit->GetOffset() + *die_offset)) in GetDIE() 157 DWARFDIE die = GetDIE(entry); in ProcessEntry() 269 DWARFDIE die = GetDIE(entry); in GetCompleteObjCClass() 458 if (DWARFDIE die = GetDIE(entry)) { in GetFunctions() 461 if (!seen.insert(die.GetDIE()).second) in GetFunctions()
|
H A D | DWARFDIE.h | 63 GetDIE(dw_offset_t die_offset) const; 64 using DWARFBaseDIE::GetDIE;
|
H A D | DWARFBaseDIE.cpp | 123 return lhs.GetDIE() == rhs.GetDIE() && lhs.GetCU() == rhs.GetCU(); in operator ==()
|
H A D | DWARFASTParserClang.cpp | 458 dwarf->GetDIEToType().try_emplace(die.GetDIE(), DIE_IS_BEING_PARSED); in ParseTypeFromDWARF() 525 dwarf->GetDIEToType()[die.GetDIE()] = type_sp.get(); in ParseTypeFromDWARF() 896 def_die.GetDIE(), DIE_IS_BEING_PARSED); in ParseEnum() 941 dwarf->GetDIEToType()[def_die.GetDIE()] = type_sp.get(); in ParseEnum() 1059 if (DWARFDIE class_type_die = dwarf->GetDIE(class_type->GetID())) { in ParseCXXMethod() 1070 Type *type_ptr = dwarf->GetDIEToType().lookup(die.GetDIE()); in ParseCXXMethod() 1678 dwarf->GetDIEToType()[die.GetDIE()] = type_sp.get(); in ParseStructureLikeDIE() 2420 Type *func_type = dwarf->GetDIEToType().lookup(die.GetDIE()); in ParseFunctionFromDWARF() 3266 DIEToDeclMap::iterator cache_pos = m_die_to_decl.find(die.GetDIE()); in GetClangDeclForDIE() 3272 m_die_to_decl[die.GetDIE()] = decl; in GetClangDeclForDIE() [all …]
|
H A D | DWARFDebugInfoEntry.cpp | 281 die.GetDIE()->GetDIENamesAndRanges(die.GetCU(), name, mangled, ranges, in GetDIENamesAndRanges() 335 spec_die.GetDIE()->GetAttributes(spec_die.GetCU(), attributes, in GetAttributes() 387 dw_offset_t die_offset = die.GetDIE()->GetAttributeValue( in GetAttributeValue() 397 dw_offset_t die_offset = die.GetDIE()->GetAttributeValue( in GetAttributeValue()
|
H A D | DWARFFormValue.cpp | 549 return unit ? unit->GetDIE(offset) : DWARFDIE(); in Reference()
|
H A D | DWARFDebugInfo.cpp | 256 DWARFDebugInfo::GetDIE(DIERef::Section section, dw_offset_t die_offset) { in GetDIE() function in DWARFDebugInfo 258 return cu->GetNonSkeletonUnit().GetDIE(die_offset); in GetDIE()
|
H A D | DWARFCompileUnit.cpp | 105 return GetDIE(func_aranges.FindAddress(address)); in LookupAddress()
|
H A D | DWARFDebugInfo.h | 44 DWARFDIE GetDIE(DIERef::Section section, dw_offset_t die_offset);
|
H A D | SymbolFileDWARFDwo.h | 44 GetDIE(const DIERef &die_ref) override;
|
H A D | DWARFBaseDIE.h | 59 DWARFDebugInfoEntry *GetDIE() const { return m_die; } in GetDIE() function
|
H A D | DWARFIndex.cpp | 94 if (DWARFDIE die = m_dwarf.GetDIE(ref)) in operator ()()
|
H A D | DebugNamesDWARFIndex.h | 88 DWARFDIE GetDIE(const DebugNames::Entry &entry) const;
|
H A D | SymbolFileDWARF.h | 253 virtual DWARFDIE GetDIE(const DIERef &die_ref); 255 DWARFDIE GetDIE(lldb::user_id_t uid);
|
H A D | DWARFUnit.h | 146 DWARFDIE GetDIE(dw_offset_t die_offset);
|
H A D | AppleDWARFIndex.cpp | 287 DWARFDIE die = dwarf.GetDIE(die_ref); in GetFunctions()
|
H A D | ManualDWARFIndex.cpp | 192 if (unit.GetDIE(unit.GetFirstDIEOffset()).GetFirstChild().Tag() != in IndexUnit()
|
H A D | DWARFUnit.cpp | 650 DWARFUnit::GetDIE(dw_offset_t die_offset) { in GetDIE() function in DWARFUnit
|
/freebsd/contrib/llvm-project/lldb/source/Expression/ |
H A D | DWARFExpression.cpp | 2105 DWARFDIE die = const_cast<DWARFUnit *>(dwarf_cu)->GetDIE(abs_die_offset); in Evaluate()
|