Searched refs:GetOffset (Results 26 - 50 of 61) sorted by relevance

123

/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.cpp181 next_symbol->GetAddressRef().GetOffset() -
182 curr_symbol->GetAddressRef().GetOffset());
/freebsd-12-stable/contrib/llvm-project/lldb/source/Symbol/
H A DSymbol.cpp131 intptr_t str_ptr = m_addr_range.GetBaseAddress().GetOffset();
197 m_addr_range.GetBaseAddress().GetOffset());
201 m_addr_range.GetBaseAddress().GetOffset());
204 m_addr_range.GetBaseAddress().GetOffset());
255 s->Printf(format, m_addr_range.GetBaseAddress().GetOffset(), GetByteSize(),
H A DBlock.cpp245 const addr_t addr_offset = addr.GetOffset();
246 const addr_t func_offset = func_range.GetBaseAddress().GetOffset();
280 const addr_t addr_offset = addr.GetOffset();
281 const addr_t func_offset = func_range.GetBaseAddress().GetOffset();
H A DSymbolContext.cpp103 addr.GetOffset() -
104 function->GetAddressRange().GetBaseAddress().GetOffset();
127 addr.GetOffset() - block_range.GetBaseAddress().GetOffset();
166 addr.GetOffset() - symbol->GetAddressRef().GetOffset();
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextLLDB.cpp100 pc_minus_one.SetOffset(m_current_pc.GetOffset() - 1);
103 valid_pc_offset = m_current_pc.GetOffset() - 1;
183 m_current_offset = m_current_pc.GetOffset() - m_start_pc.GetOffset();
458 addr_range.GetBaseAddress().GetOffset() != m_current_pc.GetOffset()) {
1424 int offset = unwindplan_regloc.GetOffset();
1436 int offset = unwindplan_regloc.GetOffset();
1451 int offset = unwindplan_regloc.GetOffset();
1466 int offset = unwindplan_regloc.GetOffset();
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Core/
H A DAddress.cpp226 curr_address.SetOffset(curr_address.GetOffset() + bytes_read);
550 cstr_addr.SetOffset(cstr_addr.GetOffset() + pointer_size);
576 cfstring_data_addr.SetOffset(cfstring_data_addr.GetOffset() +
987 return a.GetOffset() == rhs.GetOffset() && a.GetSection() == rhs.GetSection();
993 return a.GetOffset() != rhs.GetOffset() || a.GetSection() != rhs.GetSection();
H A DSection.cpp227 lldb::addr_t Section::GetOffset() const { function in class:Section
243 load_base_addr += GetOffset();
258 addr_t child_offset = child_section->GetOffset();
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DUnwindPlan.h141 int32_t GetOffset() const { function in class:lldb_private::UnwindPlan::Row::RegisterLocation
258 int32_t GetOffset() const { function in class:lldb_private::UnwindPlan::Row::FAValue
338 lldb::addr_t GetOffset() const { return m_offset; } function in class:lldb_private::UnwindPlan::Row
H A DSymbol.h99 return m_addr_range.GetBaseAddress().GetOffset();
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DAddress.h306 lldb::addr_t GetOffset() const { return m_offset; } function in class:lldb_private::Address
H A DSection.h153 lldb::addr_t GetOffset() const;
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DMaterializer.h113 uint32_t GetOffset() { return m_offset; } function in class:lldb_private::Materializer::Entity
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugInfoEntry.h133 dw_offset_t GetOffset() const { return m_offset; } function in class:DWARFDebugInfoEntry
H A DDWARFDIE.cpp151 if (cu->ContainsDIEOffset(block_die->GetOffset()))
156 cu->GetDebugSection(), block_die->GetOffset())),
H A DDebugNamesDWARFIndex.cpp64 DIERef::Section::DebugInfo, cu->GetOffset() + *die_offset);
125 uint64_t cu_offset = cu.GetOffset();
H A DDWARFUnit.cpp54 GetOffset());
150 GetOffset());
415 return m_abbrevs ? m_abbrevs->GetOffset() : DW_INVALID_OFFSET;
526 return die.GetOffset() < die_offset;
546 if (die_offset == (*pos).GetOffset())
552 die_offset, GetOffset());
H A DDWARFFormValue.cpp452 s.Printf("{0x%8.8" PRIx64 "}", uvalue + m_unit->GetOffset());
523 value += m_unit->GetOffset();
H A DManualDWARFIndex.cpp38 if (unit && m_units_to_avoid.count(unit->GetOffset()) == 0)
100 unit.GetOffset());
H A DSymbolFileDWARF.cpp281 const dw_offset_t die_offset = die.GetOffset();
366 GetTypes(dwarf_cu->DIE(), dwarf_cu->GetOffset(),
680 } else if (dwarf_cu.GetOffset() == 0 && GetDebugMapSymfile()) {
995 m_context, line, cu_line_offset, dwarf_cu->GetOffset());
1352 die.GetOffset(), die.GetTagAsCString(), die.GetName());
1370 die.GetOffset(), die.GetTagAsCString(), die.GetName(),
1371 decl_ctx_die.GetOffset());
1466 die.GetOffset(), die.GetTagAsCString(), die.GetName());
1702 die.GetOffset(), dwo_module_spec.GetFileSpec().GetPath().c_str(),
1727 die.GetOffset(), dwo_module_spe
[all...]
H A DAppleDWARFIndex.cpp76 if (m_apple_names_up->AppendAllDIEsInRange(cu.GetOffset(),
H A DDWARFDebugInfoEntry.cpp217 die.GetOffset(), value.Unsigned(),
519 // *ostrm_ptr << HEX32 << abstract_die.GetOffset() << " ( ";
832 debug_aranges->AppendRange(cu->GetOffset(), lo_pc, hi_pc);
859 debug_aranges->AppendRange(GetOffset(), lo_pc, hi_pc);
1200 return GetOffset() + llvm::getULEB128Size(m_abbr_idx);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp352 break_addr.SetOffset(break_addr.GetOffset() + prologue_byte_size);
370 break_addr.SetOffset(break_addr.GetOffset() + prologue_byte_size);
H A DBreakpointLocationList.cpp108 addr.GetOffset(), so_addr);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSArray.cpp67 virtual uint64_t GetOffset() = 0;
90 uint64_t GetOffset() override;
469 pyhs_idx += GetOffset();
562 GenericNSArrayMSyntheticFrontEnd::GetOffset() { function in class:lldb_private::formatters::GenericNSArrayMSyntheticFrontEnd::GenericNSArrayMSyntheticFrontEnd
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/InstEmulation/
H A DUnwindAssemblyInstEmulation.cpp163 if (it->second.first->GetOffset() != m_curr_row->GetOffset()) {

Completed in 297 milliseconds

123