Home
last modified time | relevance | path

Searched refs:cu_sp (Results 1 – 11 of 11) sorted by relevance

/external/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugInfo.cpp99 DWARFCompileUnitSP& cu_sp, in LookupAddress() argument
106 cu_sp = GetCompileUnit(hint_die_offset); in LookupAddress()
111 cu_sp = GetCompileUnit(cu_offset); in LookupAddress()
114 if (cu_sp.get()) in LookupAddress()
116 if (cu_sp->LookupAddress(address, function_die, block_die)) in LookupAddress()
118 cu_sp.reset(); in LookupAddress()
124 DWARFDebugInfoEntry* die_ptr = GetDIEPtr(hint_die_offset, &cu_sp); in LookupAddress()
127 if (cu_sp.get()) in LookupAddress()
130 … return die_ptr->LookupAddress(address, m_dwarf2Data, cu_sp.get(), function_die, block_die); in LookupAddress()
152 DWARFCompileUnitSP cu_sp(new DWARFCompileUnit(m_dwarf2Data)); in ParseCompileUnitHeadersIfNeeded() local
[all …]
DSymbolFileDWARF.cpp902 CompUnitSP cu_sp; in ParseCompileUnit() local
909 cu_sp = comp_unit->shared_from_this(); in ParseCompileUnit()
916 cu_sp = m_debug_map_symfile->GetCompileUnit(this); in ParseCompileUnit()
917 dwarf_cu->SetUserData(cu_sp.get()); in ParseCompileUnit()
956 cu_sp.reset(new CompileUnit (module_sp, in ParseCompileUnit()
961 if (cu_sp) in ParseCompileUnit()
963 dwarf_cu->SetUserData(cu_sp.get()); in ParseCompileUnit()
969 … m_obj_file->GetModule()->GetSymbolVendor()->SetCompileUnitAtIndex(cu_idx, cu_sp); in ParseCompileUnit()
977 return cu_sp; in ParseCompileUnit()
992 CompUnitSP cu_sp; in ParseCompileUnitAtIndex() local
[all …]
DSymbolFileDWARFDebugMap.cpp1359 SymbolFileDWARFDebugMap::SetCompileUnit (SymbolFileDWARF *oso_dwarf, const CompUnitSP &cu_sp) in SetCompileUnit() argument
1371 assert (m_compile_unit_infos[cu_idx].compile_unit_sp.get() == cu_sp.get()); in SetCompileUnit()
1375 m_compile_unit_infos[cu_idx].compile_unit_sp = cu_sp; in SetCompileUnit()
1376 … m_obj_file->GetModule()->GetSymbolVendor()->SetCompileUnitAtIndex(cu_idx, cu_sp); in SetCompileUnit()
DSymbolFileDWARFDebugMap.h256 SetCompileUnit (SymbolFileDWARF *oso_dwarf, const lldb::CompUnitSP &cu_sp);
/external/lldb/source/Symbol/
DSymbolVendor.cpp98 SymbolVendor::SetCompileUnitAtIndex (size_t idx, const CompUnitSP &cu_sp) in SetCompileUnitAtIndex() argument
113 m_compile_units[idx] = cu_sp; in SetCompileUnitAtIndex()
422 CompUnitSP cu_sp; in GetCompileUnitAtIndex() local
429 cu_sp = m_compile_units[idx]; in GetCompileUnitAtIndex()
430 if (cu_sp.get() == NULL) in GetCompileUnitAtIndex()
433 cu_sp = m_compile_units[idx]; in GetCompileUnitAtIndex()
437 return cu_sp; in GetCompileUnitAtIndex()
/external/lldb/source/Breakpoint/
DBreakpointResolverFileLine.cpp79 CompUnitSP cu_sp (context.module_sp->GetCompileUnitAtIndex (i)); in SearchCallback() local
80 if (cu_sp) in SearchCallback()
82 if (filter.CompUnitPasses(*cu_sp)) in SearchCallback()
83cu_sp->ResolveSymbolContext (m_file_spec, m_line_number, m_inlines, false, eSymbolContextEverythin… in SearchCallback()
/external/lldb/source/Core/
DSearchFilter.cpp241 CompUnitSP cu_sp (module_sp->GetCompileUnitAtIndex (i)); in DoCUIteration() local
242 if (cu_sp) in DoCUIteration()
244 if (!CompUnitPasses (*(cu_sp.get()))) in DoCUIteration()
249 SymbolContext matchingContext(m_target_sp, module_sp, cu_sp.get()); in DoCUIteration()
749 CompUnitSP cu_sp = module_sp->GetCompileUnitAtIndex(cu_idx); in Search() local
750 matchingContext.comp_unit = cu_sp.get(); in Search()
DModule.cpp428 CompUnitSP cu_sp; in GetCompileUnitAtIndex() local
434 cu_sp = symbols->GetCompileUnitAtIndex(index); in GetCompileUnitAtIndex()
436 return cu_sp; in GetCompileUnitAtIndex()
/external/lldb/source/Plugins/SymbolFile/Symtab/
DSymbolFileSymtab.cpp156 CompUnitSP cu_sp; in ParseCompileUnitAtIndex() local
164cu_sp.reset(new CompileUnit (m_obj_file->GetModule(), NULL, cu_symbol->GetMangled().GetName().AsCS… in ParseCompileUnitAtIndex()
166 return cu_sp; in ParseCompileUnitAtIndex()
/external/lldb/include/lldb/Symbol/
DSymbolVendor.h139 const lldb::CompUnitSP &cu_sp);
/external/lldb/source/API/
DSBModule.cpp311 CompUnitSP cu_sp = module_sp->GetCompileUnitAtIndex (index); in GetCompileUnitAtIndex() local
312 sb_cu.reset(cu_sp.get()); in GetCompileUnitAtIndex()