Lines Matching refs:SymbolFileDWARF

104 LLDB_PLUGIN_DEFINE(SymbolFileDWARF)
106 char SymbolFileDWARF::ID;
121 return SymbolFileDWARF::GetPluginNameStatic(); in GetSettingName()
301 void SymbolFileDWARF::Initialize() { in Initialize()
309 void SymbolFileDWARF::DebuggerInitialize(Debugger &debugger) { in DebuggerInitialize()
319 void SymbolFileDWARF::Terminate() { in Terminate()
325 llvm::StringRef SymbolFileDWARF::GetPluginDescriptionStatic() { in GetPluginDescriptionStatic()
329 SymbolFile *SymbolFileDWARF::CreateInstance(ObjectFileSP objfile_sp) { in CreateInstance()
330 return new SymbolFileDWARF(std::move(objfile_sp), in CreateInstance()
334 TypeList &SymbolFileDWARF::GetTypeList() { in GetTypeList()
340 void SymbolFileDWARF::GetTypes(const DWARFDIE &die, dw_offset_t min_die_offset, in GetTypes()
410 void SymbolFileDWARF::GetTypes(SymbolContextScope *sc_scope, in GetTypes()
450 SymbolFileDWARF::GetParentSymbolContextDIE(const DWARFDIE &child_die) { in GetParentSymbolContextDIE()
469 SymbolFileDWARF::SymbolFileDWARF(ObjectFileSP objfile_sp, in SymbolFileDWARF() function in SymbolFileDWARF
477 SymbolFileDWARF::~SymbolFileDWARF() = default;
484 UniqueDWARFASTTypeMap &SymbolFileDWARF::GetUniqueDWARFASTTypeMap() { in GetUniqueDWARFASTTypeMap()
493 SymbolFileDWARF::GetTypeSystemForLanguage(LanguageType language) { in GetTypeSystemForLanguage()
505 void SymbolFileDWARF::InitializeObject() { in InitializeObject()
551 void SymbolFileDWARF::InitializeFirstCodeAddress() { in InitializeFirstCodeAddress()
558 void SymbolFileDWARF::InitializeFirstCodeAddressRecursive( in InitializeFirstCodeAddressRecursive()
570 bool SymbolFileDWARF::SupportedVersion(uint16_t version) { in SupportedVersion()
589 uint32_t SymbolFileDWARF::CalculateAbilities() { in CalculateAbilities()
673 void SymbolFileDWARF::LoadSectionData(lldb::SectionType sect_type, in LoadSectionData()
688 llvm::DWARFDebugAbbrev *SymbolFileDWARF::DebugAbbrev() { in DebugAbbrev()
710 DWARFDebugInfo &SymbolFileDWARF::DebugInfo() { in DebugInfo()
719 DWARFCompileUnit *SymbolFileDWARF::GetDWARFCompileUnit(CompileUnit *comp_unit) { in GetDWARFCompileUnit()
732 DWARFDebugRanges *SymbolFileDWARF::GetDebugRanges() { in GetDebugRanges()
772 lldb::CompUnitSP SymbolFileDWARF::ParseCompileUnit(DWARFCompileUnit &dwarf_cu) { in ParseCompileUnit()
834 LanguageType cu_language = SymbolFileDWARF::LanguageTypeFromDWARF( in ParseCompileUnit()
853 void SymbolFileDWARF::BuildCuTranslationTable() { in BuildCuTranslationTable()
870 std::optional<uint32_t> SymbolFileDWARF::GetDWARFUnitIndex(uint32_t cu_idx) { in GetDWARFUnitIndex()
879 uint32_t SymbolFileDWARF::CalculateNumCompileUnits() { in CalculateNumCompileUnits()
885 CompUnitSP SymbolFileDWARF::ParseCompileUnitAtIndex(uint32_t cu_idx) { in ParseCompileUnitAtIndex()
895 Function *SymbolFileDWARF::ParseFunction(CompileUnit &comp_unit, in ParseFunction()
943 SymbolFileDWARF::ConstructFunctionDemangledName(const DWARFDIE &die) { in ConstructFunctionDemangledName()
968 lldb::addr_t SymbolFileDWARF::FixupAddress(lldb::addr_t file_addr) { in FixupAddress()
975 bool SymbolFileDWARF::FixupAddress(Address &addr) { in FixupAddress()
983 lldb::LanguageType SymbolFileDWARF::ParseLanguage(CompileUnit &comp_unit) { in ParseLanguage()
992 XcodeSDK SymbolFileDWARF::ParseXcodeSDK(CompileUnit &comp_unit) { in ParseXcodeSDK()
1020 size_t SymbolFileDWARF::ParseFunctions(CompileUnit &comp_unit) { in ParseFunctions()
1043 bool SymbolFileDWARF::ForEachExternalModule( in ForEachExternalModule()
1071 bool SymbolFileDWARF::ParseSupportFiles(CompileUnit &comp_unit, in ParseSupportFiles()
1084 bool SymbolFileDWARF::ParseSupportFiles(DWARFUnit &dwarf_cu, in ParseSupportFiles()
1104 FileSpec SymbolFileDWARF::GetFile(DWARFUnit &unit, size_t file_idx) { in GetFile()
1118 SymbolFileDWARF::GetTypeUnitSupportFiles(DWARFTypeUnit &tu) { in GetTypeUnitSupportFiles()
1155 bool SymbolFileDWARF::ParseIsOptimized(CompileUnit &comp_unit) { in ParseIsOptimized()
1163 bool SymbolFileDWARF::ParseImportedModules( in ParseImportedModules()
1218 bool SymbolFileDWARF::ParseLineTable(CompileUnit &comp_unit) { in ParseLineTable()
1281 SymbolFileDWARF::ParseDebugMacros(lldb::offset_t *offset) { in ParseDebugMacros()
1303 bool SymbolFileDWARF::ParseDebugMacros(CompileUnit &comp_unit) { in ParseDebugMacros()
1327 size_t SymbolFileDWARF::ParseBlocksRecursive( in ParseBlocksRecursive()
1448 bool SymbolFileDWARF::ClassOrStructIsVirtual(const DWARFDIE &parent_die) { in ClassOrStructIsVirtual()
1470 void SymbolFileDWARF::ParseDeclsForContext(CompilerDeclContext decl_ctx) { in ParseDeclsForContext()
1478 SymbolFileDWARF::GetDIE(lldb::user_id_t uid) { return GetDIE(DIERef(uid)); } in GetDIE()
1480 CompilerDecl SymbolFileDWARF::GetDeclForUID(lldb::user_id_t type_uid) { in GetDeclForUID()
1493 SymbolFileDWARF::GetDeclContextForUID(lldb::user_id_t type_uid) { in GetDeclContextForUID()
1506 SymbolFileDWARF::GetDeclContextContainingUID(lldb::user_id_t type_uid) { in GetDeclContextContainingUID()
1517 SymbolFileDWARF::GetCompilerContextForUID(lldb::user_id_t type_uid) { in GetCompilerContextForUID()
1527 Type *SymbolFileDWARF::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID()
1538 std::optional<SymbolFile::ArrayInfo> SymbolFileDWARF::GetDynamicArrayInfoForUID( in GetDynamicArrayInfoForUID()
1547 Type *SymbolFileDWARF::ResolveTypeUID(const DIERef &die_ref) { in ResolveTypeUID()
1551 Type *SymbolFileDWARF::ResolveTypeUID(const DWARFDIE &die, in ResolveTypeUID()
1594 bool SymbolFileDWARF::HasForwardDeclForCompilerType( in HasForwardDeclForCompilerType()
1611 bool SymbolFileDWARF::CompleteType(CompilerType &compiler_type) { in CompleteType()
1656 Type *SymbolFileDWARF::ResolveType(const DWARFDIE &die, in ResolveType()
1677 SymbolFileDWARF::GetCompUnitForDWARFCompUnit(DWARFCompileUnit &dwarf_cu) { in GetCompUnitForDWARFCompUnit()
1694 void SymbolFileDWARF::GetObjCMethods( in GetObjCMethods()
1699 bool SymbolFileDWARF::GetFunction(const DWARFDIE &die, SymbolContext &sc) { in GetFunction()
1720 lldb::ModuleSP SymbolFileDWARF::GetExternalModule(ConstString name) { in GetExternalModule()
1729 SymbolFileDWARF::GetDIE(const DIERef &die_ref) { in GetDIE()
1734 SymbolFileDWARF *symbol_file = nullptr; in GetDIE()
1778 std::optional<uint64_t> SymbolFileDWARF::GetDWOId() { in GetDWOId()
1789 SymbolFileDWARF::GetDwoSymbolFileForCompileUnit( in GetDwoSymbolFileForCompileUnit()
1966 void SymbolFileDWARF::UpdateExternalModuleListIfNeeded() { in UpdateExternalModuleListIfNeeded()
2050 llvm::dyn_cast_or_null<SymbolFileDWARF>(module_sp->GetSymbolFile()); in UpdateExternalModuleListIfNeeded()
2069 SymbolFileDWARF::GlobalVariableMap &SymbolFileDWARF::GetGlobalAranges() { in GetGlobalAranges()
2116 void SymbolFileDWARF::ResolveFunctionAndBlock(lldb::addr_t file_vm_addr, in ResolveFunctionAndBlock()
2143 uint32_t SymbolFileDWARF::ResolveSymbolContext(const Address &so_addr, in ResolveSymbolContext()
2250 uint32_t SymbolFileDWARF::ResolveSymbolContext( in ResolveSymbolContext()
2275 void SymbolFileDWARF::PreloadSymbols() { in PreloadSymbols()
2287 std::recursive_mutex &SymbolFileDWARF::GetModuleMutex() const { in GetModuleMutex()
2294 bool SymbolFileDWARF::DeclContextMatchesThisSymbolFile( in DeclContextMatchesThisSymbolFile()
2325 void SymbolFileDWARF::FindGlobalVariables( in FindGlobalVariables()
2413 void SymbolFileDWARF::FindGlobalVariables(const RegularExpression &regex, in FindGlobalVariables()
2447 bool SymbolFileDWARF::ResolveFunction(const DWARFDIE &orig_die, in ResolveFunction()
2498 bool SymbolFileDWARF::DIEInDeclContext(const CompilerDeclContext &decl_ctx, in DIEInDeclContext()
2523 void SymbolFileDWARF::FindFunctions(const Module::LookupInfo &lookup_info, in FindFunctions()
2596 void SymbolFileDWARF::FindFunctions(const RegularExpression &regex, in FindFunctions()
2619 void SymbolFileDWARF::GetMangledNamesForFunction( in GetMangledNamesForFunction()
2670 void SymbolFileDWARF::FindTypes(const TypeQuery &query, TypeResults &results) { in FindTypes()
2793 SymbolFileDWARF::FindNamespace(ConstString name, in FindNamespace()
2836 TypeSP SymbolFileDWARF::GetTypeForDIE(const DWARFDIE &die, in GetTypeForDIE()
2870 SymbolFileDWARF::GetDeclContextDIEContainingDIE(const DWARFDIE &orig_die) { in GetDeclContextDIEContainingDIE()
2921 Symbol *SymbolFileDWARF::GetObjCClassSymbol(ConstString objc_class_name) { in GetObjCClassSymbol()
2941 bool SymbolFileDWARF::Supports_DW_AT_APPLE_objc_complete_type(DWARFUnit *cu) { in Supports_DW_AT_APPLE_objc_complete_type()
2967 TypeSP SymbolFileDWARF::FindCompleteObjCDefinitionTypeForDIE( in FindCompleteObjCDefinitionTypeForDIE()
3018 bool SymbolFileDWARF::DIEDeclContextsMatch(const DWARFDIE &die1, in DIEDeclContextsMatch()
3099 SymbolFileDWARF::FindDefinitionTypeForDWARFDeclContext(const DWARFDIE &die) { in FindDefinitionTypeForDWARFDeclContext()
3210 TypeSP SymbolFileDWARF::ParseType(const SymbolContext &sc, const DWARFDIE &die, in ParseType()
3245 size_t SymbolFileDWARF::ParseTypes(const SymbolContext &sc, in ParseTypes()
3283 size_t SymbolFileDWARF::ParseBlocksRecursive(Function &func) { in ParseBlocksRecursive()
3304 size_t SymbolFileDWARF::ParseTypes(CompileUnit &comp_unit) { in ParseTypes()
3320 size_t SymbolFileDWARF::ParseVariablesForContext(const SymbolContext &sc) { in ParseVariablesForContext()
3367 VariableSP SymbolFileDWARF::ParseVariableDIECached(const SymbolContext &sc, in ParseVariableDIECached()
3473 VariableSP SymbolFileDWARF::ParseVariableDIE(const SymbolContext &sc, in ParseVariableDIE()
3741 SymbolFileDWARF::FindBlockContainingSpecification( in FindBlockContainingSpecification()
3751 SymbolFileDWARF::FindBlockContainingSpecification( in FindBlockContainingSpecification()
3784 void SymbolFileDWARF::ParseAndAppendGlobalVariable( in ParseAndAppendGlobalVariable()
3840 SymbolFileDWARF::MergeBlockAbstractParameters(const DWARFDIE &block_die, in MergeBlockAbstractParameters()
3915 size_t SymbolFileDWARF::ParseVariablesInFunctionContext( in ParseVariablesInFunctionContext()
3933 size_t SymbolFileDWARF::ParseVariablesInFunctionContextRecursive( in ParseVariablesInFunctionContextRecursive()
4000 size_t SymbolFileDWARF::PopulateBlockVariableList( in PopulateBlockVariableList()
4061 SymbolFileDWARF::CollectCallEdges(ModuleSP module, DWARFDIE function_die) { in CollectCallEdges()
4218 SymbolFileDWARF::ParseCallEdgesInFunction(lldb_private::UserID func_id) { in ParseCallEdgesInFunction()
4230 void SymbolFileDWARF::Dump(lldb_private::Stream &s) { in Dump()
4235 void SymbolFileDWARF::DumpClangAST(Stream &s) { in DumpClangAST()
4246 bool SymbolFileDWARF::GetSeparateDebugInfo(StructuredData::Dictionary &d, in GetSeparateDebugInfo()
4312 SymbolFileDWARFDebugMap *SymbolFileDWARF::GetDebugMapSymfile() { in GetDebugMapSymfile()
4323 const std::shared_ptr<SymbolFileDWARFDwo> &SymbolFileDWARF::GetDwpSymbolFile() { in GetDwpSymbolFile()
4351 SymbolFileDWARF::GetTypeSystem(DWARFUnit &unit) { in GetTypeSystem()
4355 DWARFASTParser *SymbolFileDWARF::GetDWARFParser(DWARFUnit &unit) { in GetDWARFParser()
4367 CompilerDecl SymbolFileDWARF::GetDecl(const DWARFDIE &die) { in GetDecl()
4373 CompilerDeclContext SymbolFileDWARF::GetDeclContext(const DWARFDIE &die) { in GetDeclContext()
4380 SymbolFileDWARF::GetContainingDeclContext(const DWARFDIE &die) { in GetContainingDeclContext()
4386 DWARFDeclContext SymbolFileDWARF::GetDWARFDeclContext(const DWARFDIE &die) { in GetDWARFDeclContext()
4394 LanguageType SymbolFileDWARF::LanguageTypeFromDWARF(uint64_t val) { in LanguageTypeFromDWARF()
4405 LanguageType SymbolFileDWARF::GetLanguage(DWARFUnit &unit) { in GetLanguage()
4409 LanguageType SymbolFileDWARF::GetLanguageFamily(DWARFUnit &unit) { in GetLanguageFamily()
4416 StatsDuration::Duration SymbolFileDWARF::GetDebugInfoIndexTime() { in GetDebugInfoIndexTime()
4422 Status SymbolFileDWARF::CalculateFrameVariableError(StackFrame &frame) { in CalculateFrameVariableError()
4454 void SymbolFileDWARF::GetCompileOptions( in GetCompileOptions()