| /openbsd/src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/ |
| D | DWARFDIE.cpp | 52 if (m_seen.insert(die.GetDIE()).second) in Next() 118 DWARFDIE::GetDIE(dw_offset_t die_offset) const { in GetDIE() function in DWARFDIE 120 return m_cu->GetDIE(die_offset); in GetDIE() 221 if (GetDIE()->IsNULL()) { in GetName() 225 const char *name = GetDIE()->GetAttributeValueAsString(GetCU(), DW_AT_name, nullptr, true); in GetName() 239 if (GetDIE()->IsNULL()) { in AppendTypeName() 368 while (parent.IsValid() && parent.GetDIE() != GetDIE()) { in GetDeclContextDIEs()
|
| D | SymbolFileDWARFDwo.cpp | 139 SymbolFileDWARFDwo::GetDIE(const DIERef &die_ref) { in GetDIE() function in SymbolFileDWARFDwo 141 return DebugInfo().GetDIE(die_ref); in GetDIE() 142 return GetBaseSymbolFile().GetDIE(die_ref); in GetDIE()
|
| D | SymbolFileDWARF.cpp | 737 if (!GetDWOName(dwarf_cu, *cu_die.GetDIE())) in ParseCompileUnit() 841 if (die.GetDIE()->GetAttributeAddressRanges(die.GetCU(), ranges, in ParseFunction() 1443 SymbolFileDWARF::GetDIE(lldb::user_id_t uid) { in GetDIE() function in SymbolFileDWARF 1451 return decoded->dwarf.GetDIE(decoded->ref); in GetDIE() 1463 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclForUID() 1476 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclContextForUID() 1487 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclContextContainingUID() 1497 if (DWARFDIE type_die = GetDIE(type_uid)) in ResolveTypeUID() 1506 if (DWARFDIE type_die = GetDIE(type_uid)) in GetDynamicArrayInfoForUID() 1513 return ResolveType(GetDIE(die_ref), true); in ResolveTypeUID() [all …]
|
| D | DWARFASTParserClang.cpp | 206 dwarf->GetDIEToType()[die.GetDIE()] = type_sp.get(); in ParseTypeFromClangModule() 435 Type *type_ptr = dwarf->GetDIEToType().lookup(die.GetDIE()); in ParseTypeFromDWARF() 441 dwarf->GetDIEToType()[die.GetDIE()] = DIE_IS_BEING_PARSED; in ParseTypeFromDWARF() 448 dwarf->GetDIEToType()[die.GetDIE()] = type_sp.get(); in ParseTypeFromDWARF() 739 dwarf->GetDIEToType()[die.GetDIE()] = type_sp.get(); in ParseTypeModifier() 793 dwarf->GetDIEToType()[die.GetDIE()] = type_sp.get(); in ParseEnum() 795 GetCachedClangDeclContextForDIE(dwarf->GetDIE(type_sp->GetID())); in ParseEnum() 808 dwarf->GetForwardDeclDieToClangType().lookup(die.GetDIE())); in ParseEnum() 1033 DWARFDIE class_type_die = dwarf->GetDIE(class_type->GetID()); in ParseSubroutine() 1046 Type *type_ptr = dwarf->GetDIEToType()[die.GetDIE()]; in ParseSubroutine() [all …]
|
| D | DWARFDIE.h | 61 GetDIE(dw_offset_t die_offset) const; 62 using DWARFBaseDIE::GetDIE;
|
| D | DWARFIndex.cpp | 29 DWARFDIE die = dwarf.GetDIE(ref); in ProcessFunctionDIE() 96 if (DWARFDIE die = m_dwarf.GetDIE(ref)) in operator ()()
|
| D | DWARFDebugInfoEntry.cpp | 399 die.GetDIE()->GetDIENamesAndRanges(die.GetCU(), name, mangled, ranges, in GetDIENamesAndRanges() 451 spec_die.GetDIE()->GetAttributes(spec_die.GetCU(), attributes, in GetAttributes() 506 dw_offset_t die_offset = die.GetDIE()->GetAttributeValue( in GetAttributeValue() 516 dw_offset_t die_offset = die.GetDIE()->GetAttributeValue( in GetAttributeValue() 742 if (!parent_decl_ctx_die || parent_decl_ctx_die.GetDIE() == die) in GetDWARFDeclContextStatic() 747 die = parent_decl_ctx_die.GetDIE(); in GetDWARFDeclContextStatic() 772 if (die.GetDIE() != this) { in GetParentDeclContextDIE()
|
| D | DWARFBaseDIE.cpp | 124 return lhs.GetDIE() == rhs.GetDIE() && lhs.GetCU() == rhs.GetCU(); in operator ==()
|
| D | DWARFDebugInfo.cpp | 188 DWARFDebugInfo::GetDIE(const DIERef &die_ref) { in GetDIE() function in DWARFDebugInfo 191 return cu->GetNonSkeletonUnit().GetDIE(die_ref.die_offset()); in GetDIE()
|
| D | DebugNamesDWARFIndex.cpp | 71 DWARFDIE die = dwarf.GetDIE(*ref); in ProcessEntry() 179 DWARFDIE die = m_debug_info.GetDIE(*ref); in GetCompleteObjCClass() 256 if (!seen.insert(die.GetDIE()).second) in GetFunctions()
|
| D | DWARFFormValue.cpp | 519 return const_cast<DWARFUnit *>(m_unit)->GetDIE(value); in Reference() 530 return ref_cu->GetDIE(value); in Reference() 538 return tu->GetDIE(tu->GetTypeOffset()); in Reference()
|
| D | DWARFDebugInfo.h | 46 DWARFDIE GetDIE(const DIERef &die_ref);
|
| D | SymbolFileDWARFDwo.h | 42 GetDIE(const DIERef &die_ref) override;
|
| D | DWARFCompileUnit.cpp | 108 return GetDIE(func_aranges.FindAddress(address)); in LookupAddress()
|
| D | DWARFBaseDIE.h | 57 DWARFDebugInfoEntry *GetDIE() const { return m_die; } in GetDIE() function
|
| D | SymbolFileDWARF.h | 264 virtual DWARFDIE GetDIE(const DIERef &die_ref); 266 DWARFDIE GetDIE(lldb::user_id_t uid);
|
| D | DWARFUnit.h | 182 DWARFDIE GetDIE(dw_offset_t die_offset);
|
| D | DWARFUnit.cpp | 641 DWARFUnit::GetDIE(dw_offset_t die_offset) { in GetDIE() function in DWARFUnit
|
| /openbsd/src/gnu/llvm/lldb/source/Expression/ |
| D | DWARFExpression.cpp | 2408 DWARFDIE die = const_cast<DWARFUnit *>(dwarf_cu)->GetDIE(abs_die_offset); in Evaluate()
|