Searched refs:comp_unit (Results 1 - 25 of 34) sorted by relevance

12

/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DSymbolContext.cpp32 comp_unit (NULL),
43 comp_unit (cu),
56 comp_unit (cu),
69 comp_unit (rhs.comp_unit),
81 comp_unit (NULL),
101 comp_unit = rhs.comp_unit;
116 comp_unit = NULL;
246 if (comp_unit !
[all...]
H A DFunction.cpp198 CompileUnit *comp_unit,
206 m_comp_unit (comp_unit),
217 assert(comp_unit != NULL);
222 CompileUnit *comp_unit,
230 m_comp_unit (comp_unit),
241 assert(comp_unit != NULL);
196 Function( CompileUnit *comp_unit, lldb::user_id_t func_uid, lldb::user_id_t type_uid, const Mangled &mangled, Type * type, const AddressRange& range ) argument
220 Function( CompileUnit *comp_unit, lldb::user_id_t func_uid, lldb::user_id_t type_uid, const char *mangled, Type *type, const AddressRange &range ) argument
H A DCompileUnit.cpp61 sc->comp_unit = this;
349 sc.comp_unit = this;
354 LineTable *line_table = sc.comp_unit->GetLineTable();
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Target/
H A DThreadPlanStepOverRange.cpp125 if (m_addr_context.comp_unit)
127 if (m_addr_context.comp_unit == older_context.comp_unit)
196 && sc.comp_unit == m_addr_context.comp_unit
200 LineTable *line_table = m_addr_context.comp_unit->GetLineTable();
H A DStackFrame.cpp367 if (m_sc.comp_unit)
430 if ((resolved & eSymbolContextCompUnit) && m_sc.comp_unit == NULL)
431 m_sc.comp_unit = sc.comp_unit;
504 if (m_sc.comp_unit)
506 VariableListSP global_variable_list_sp (m_sc.comp_unit->GetVariableList(true));
534 if (m_sc.comp_unit)
536 VariableListSP global_variable_list_sp (m_sc.comp_unit->GetVariableList(true));
1348 assert (m_sc.comp_unit == NULL || curr_frame.m_sc.comp_unit
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DSymbolContext.h68 /// @param[in] comp_unit
86 CompileUnit *comp_unit = NULL,
95 CompileUnit *comp_unit = NULL,
344 CompileUnit * comp_unit; ///< The CompileUnit for a given query member in class:lldb_private::SymbolContext
H A DFunction.h339 /// @param[in] comp_unit
366 CompileUnit *comp_unit,
378 /// @param[in] comp_unit
405 CompileUnit *comp_unit,
H A DLineTable.h52 /// @param[in] comp_unit
55 LineTable (CompileUnit* comp_unit);
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Core/
H A DAddressResolverFileLine.cpp53 CompileUnit *cu = context.comp_unit;
H A DFileLineResolver.cpp51 CompileUnit *cu = context.comp_unit;
H A DSearchFilter.cpp236 if (context.comp_unit == NULL)
267 if (CompUnitPasses(*context.comp_unit))
269 SymbolContext matchingContext (m_target_sp, module_sp, context.comp_unit);
750 matchingContext.comp_unit = cu_sp.get();
751 if (matchingContext.comp_unit)
753 if (m_cu_spec_list.FindFileIndex(0, *matchingContext.comp_unit, false) != UINT32_MAX)
H A DSourceManager.cpp370 if (sc.comp_unit)
374 if (test_cu_spec != static_cast<FileSpec *> (sc.comp_unit))
379 test_cu_spec = sc.comp_unit;
387 m_file_spec = sc.comp_unit;
H A DModule.cpp370 sc.comp_unit = symbols->GetCompileUnitAtIndex(cu_idx).get();
371 if (sc.comp_unit)
378 for (size_t func_idx = 0; (sc.function = sc.comp_unit->GetFunctionAtIndex(func_idx).get()) != NULL; ++func_idx)
579 sc.comp_unit = GetCompileUnitAtIndex(i).get();
580 if (sc.comp_unit)
582 if (FileSpec::Equal (*sc.comp_unit, path, compare_directory))
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectSource.cpp677 if (sc.comp_unit)
683 m_breakpoint_locations.Reset (*sc.comp_unit, 0, show_inlines);
704 target->GetSourceManager().DisplaySourceLinesWithLineNumbers (sc.comp_unit,
816 if (sc.comp_unit)
820 if (test_cu_spec != static_cast<FileSpec *> (sc.comp_unit))
825 test_cu_spec = sc.comp_unit;
840 if (sc.comp_unit)
845 m_breakpoint_locations.Reset (*sc.comp_unit, 0, show_inlines);
855 target->GetSourceManager().DisplaySourceLinesWithLineNumbers (sc.comp_unit,
H A DCommandCompletions.cpp534 if (context.comp_unit != NULL)
538 FileSpecList supporting_files = context.comp_unit->GetSupportFiles();
561 const char *cur_file_name = context.comp_unit->GetFilename().GetCString();
562 const char *cur_dir_name = context.comp_unit->GetDirectory().GetCString();
575 m_matching_files.AppendIfUnique(context.comp_unit);
H A DCommandObjectThread.cpp1011 if (sc.comp_unit)
1012 line_table = sc.comp_unit->GetLineTable();
1041 index_ptr = sc.comp_unit->FindLineEntry(index_ptr, line_number, sc.comp_unit, exact, &line_entry);
H A DCommandObjectTarget.cpp735 if (sc.comp_unit)
738 sc.comp_unit->GetPath().c_str(),
747 else if (sc.comp_unit)
750 sc.comp_unit->GetPath().c_str());
846 CompileUnit *comp_unit = NULL; local
850 if (sc.comp_unit)
853 VariableListSP comp_unit_varlist_sp (sc.comp_unit->GetVariableList(can_create));
869 if (comp_unit)
871 comp_unit->GetPath().c_str());
930 if (sc.comp_unit)
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointResolverFileRegex.cpp60 CompileUnit *cu = context.comp_unit;
H A DBreakpointResolverName.cpp258 if (!sc.comp_unit || !filter.CompUnitPasses(*sc.comp_unit))
H A DBreakpointLocation.cpp561 if (sc.comp_unit != NULL)
565 static_cast<FileSpec*>(sc.comp_unit)->GetFilename().Dump (s);
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.cpp181 assert (sc.comp_unit != NULL);
232 FunctionSP func_sp(new Function(sc.comp_unit,
241 sc.comp_unit->AddFunction(func_sp);
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp310 CompileUnit *comp_unit = NULL; local
313 comp_unit = sc_scope->CalculateSymbolContextCompileUnit();
315 if (comp_unit)
317 dwarf_cu = GetDWARFCompileUnit(comp_unit);
852 SymbolFileDWARF::GetDWARFCompileUnit(lldb_private::CompileUnit *comp_unit) argument
870 return info->GetCompileUnit((dw_offset_t)comp_unit->GetID()).get();
905 CompileUnit *comp_unit = (CompileUnit*)dwarf_cu->GetUserData(); local
906 if (comp_unit)
909 cu_sp = comp_unit->shared_from_this();
1075 decl_ap.reset(new Declaration (sc.comp_unit
4258 CompileUnit *comp_unit = GetCompUnitForDWARFCompUnit(dwarf_cu, UINT32_MAX); local
[all...]
/freebsd-10.0-release/contrib/gdb/gdb/
H A Ddwarf2-frame.c900 struct comp_unit
1079 read_encoded_value (struct comp_unit *unit, unsigned char encoding,
1164 find_cie (struct comp_unit *unit, ULONGEST cie_pointer)
1180 add_cie (struct comp_unit *unit, struct dwarf2_cie *cie)
1223 add_fde (struct comp_unit *unit, struct dwarf2_fde *fde)
1235 static char *decode_frame_entry (struct comp_unit *unit, char *start,
1241 decode_frame_entry_1 (struct comp_unit *unit, char *start, int eh_frame_p)
1460 decode_frame_entry (struct comp_unit *unit, char *start, int eh_frame_p)
1565 struct comp_unit unit;
893 struct comp_unit struct
/freebsd-10.0-release/contrib/binutils/bfd/
H A Ddwarf2.c86 struct comp_unit *all_comp_units;
153 struct comp_unit struct
156 struct comp_unit *next_unit;
180 /* Pointer to the current comp_unit so that we can find a given entry
305 read_indirect_string (struct comp_unit* unit,
362 read_address (struct comp_unit *unit, bfd_byte *buf)
554 struct comp_unit *unit,
685 struct comp_unit *unit,
969 decode_line_info (struct comp_unit *unit, struct dwarf2_debug *stash)
1408 read_debug_ranges (struct comp_unit *uni
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/API/
H A DSBSymbolContext.cpp114 return SBCompileUnit (m_opaque_ap.get() ? m_opaque_ap->comp_unit : NULL);
190 ref().comp_unit = compile_unit.get();

Completed in 228 milliseconds

12