Home
last modified time | relevance | path

Searched refs:GetOffset (Results 1 – 25 of 60) sorted by relevance

123

/freebsd/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/
H A DUnwindAssembly-x86.cpp97 first_row->GetCFAValue().GetOffset() != wordsize) { in AugmentUnwindPlanFromCallSite()
105 first_row_pc_loc.GetOffset() != -wordsize) { in AugmentUnwindPlanFromCallSite()
113 first_row->GetOffset() != last_row->GetOffset()) { in AugmentUnwindPlanFromCallSite()
124 first_row->GetCFAValue().GetOffset() == in AugmentUnwindPlanFromCallSite()
125 last_row->GetCFAValue().GetOffset()) { in AugmentUnwindPlanFromCallSite()
134 first_row_pc_loc.GetOffset() == last_row_pc_loc.GetOffset()) { in AugmentUnwindPlanFromCallSite()
142 if (first_row_pc_loc.GetOffset() == -wordsize) { in AugmentUnwindPlanFromCallSite()
H A Dx86AssemblyInspectionEngine.cpp984 m_lldb_fp_regnum, fa_value_ptr->GetOffset()); in GetNonCallSiteUnwindPlanFromAssembly()
992 m_lldb_alt_fp_regnum, fa_value_ptr->GetOffset()); in GetNonCallSiteUnwindPlanFromAssembly()
1015 current_sp_bytes_offset_from_fa = fa_value_ptr->GetOffset(); in GetNonCallSiteUnwindPlanFromAssembly()
1029 current_sp_bytes_offset_from_fa = fa_value_ptr->GetOffset(); in GetNonCallSiteUnwindPlanFromAssembly()
1080 m_lldb_sp_regnum, fa_value_ptr->GetOffset()); in GetNonCallSiteUnwindPlanFromAssembly()
1128 m_lldb_sp_regnum, fa_value_ptr->GetOffset()); in GetNonCallSiteUnwindPlanFromAssembly()
1130 current_sp_bytes_offset_from_fa = fa_value_ptr->GetOffset(); in GetNonCallSiteUnwindPlanFromAssembly()
1159 regloc.SetAtAFAPlusOffset(-(stack_offset + fa_value_ptr->GetOffset())); in GetNonCallSiteUnwindPlanFromAssembly()
1161 regloc.SetAtCFAPlusOffset(-(stack_offset + fa_value_ptr->GetOffset())); in GetNonCallSiteUnwindPlanFromAssembly()
1218 fa_value_ptr->GetOffset() - stack_offset; in GetNonCallSiteUnwindPlanFromAssembly()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DAddressRange.cpp65 return (addr.GetOffset() - m_base_addr.GetOffset()) < GetByteSize(); in ContainsFileAddress()
97 return (addr.GetOffset() - m_base_addr.GetOffset()) < GetByteSize(); in ContainsLoadAddress()
169 addr_t end = m_base_addr.GetOffset() + GetByteSize(); in Dump()
212 m_base_addr.GetOffset(), GetByteSize()); in DumpDebug()
H A DAddress.cpp228 curr_address.SetOffset(curr_address.GetOffset() + bytes_read); in ReadCStringFromMemory()
555 cstr_addr.SetOffset(cstr_addr.GetOffset() + pointer_size); in Dump()
581 cfstring_data_addr.SetOffset(cfstring_data_addr.GetOffset() + in Dump()
1012 return a.GetOffset() == rhs.GetOffset() && a.GetSection() == rhs.GetSection(); in operator ==()
1018 return a.GetOffset() != rhs.GetOffset() || a.GetSection() != rhs.GetSection(); in operator !=()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DUnwindPlan.cpp238 s.Printf("0x%16.16" PRIx64 ": CFA=", base_addr + GetOffset()); in Dump()
240 s.Printf("%4" PRId64 ": CFA=", GetOffset()); in Dump()
396 if (m_row_list.empty() || m_row_list.back().GetOffset() != row.GetOffset()) in AppendRow()
404 return a < b.GetOffset(); in operator ()()
407 return a.GetOffset() < b; in operator ()()
412 auto it = llvm::lower_bound(m_row_list, row.GetOffset(), RowLess()); in InsertRow()
413 if (it == m_row_list.end() || it->GetOffset() > row.GetOffset()) in InsertRow()
416 assert(it->GetOffset() == row.GetOffset()); in InsertRow()
H A DSymbol.cpp178 intptr_t str_ptr = m_addr_range.GetBaseAddress().GetOffset(); in GetReExportedSymbolName()
245 m_addr_range.GetBaseAddress().GetOffset()); in GetDescription()
249 m_addr_range.GetBaseAddress().GetOffset()); in GetDescription()
252 m_addr_range.GetBaseAddress().GetOffset()); in GetDescription()
308 s->Printf(format, m_addr_range.GetBaseAddress().GetOffset(), GetByteSize(), in Dump()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFCompileUnit.cpp29 GetOffset(), GetLength(), GetVersion(), (uint32_t)GetAbbrevOffset(), in Dump()
44 const dw_offset_t cu_offset = GetOffset(); in BuildAddressRangeTable()
92 debug_aranges->AppendRange(GetOffset(), range.GetRangeBase(), in BuildAddressRangeTable()
H A DDWARFBaseDIE.cpp28 m_cu->GetDebugSection(), m_die->GetOffset()); in GetDIERef()
92 dw_offset_t DWARFBaseDIE::GetOffset() const { in GetOffset() function in DWARFBaseDIE
94 return m_die->GetOffset(); in GetOffset()
H A DDWARFDebugInfo.cpp68 dw_offset_t offset = cu->GetOffset(); in GetCompileUnitAranges()
203 return lhs < std::make_pair(rhs->GetDebugSection(), rhs->GetOffset()); in FindUnitIndex()
216 if (result && result->GetOffset() != cu_offset) { in GetUnitAtOffset()
H A DDWARFUnit.cpp99 m_first_die.GetOffset())); in ExtractUnitDIEIfNeeded()
117 m_first_die.GetOffset())); in ExtractUnitDIEIfNeeded()
229 llvm::formatv("{0:x16}: DWARFUnit::ExtractDIEsIfNeeded()", GetOffset()) in ExtractDIEsRWLocked()
598 GetOffset()) in GetRnglistOffset()
644 return die.GetOffset() < die_offset; in CompareDIEOffset()
660 GetOffset()); in GetDIE()
669 if (pos != end && die_offset == (*pos).GetOffset()) in GetDIE()
702 const uint64_t abs_die_offset = relative_die_offset + GetOffset(); in GetDIEBitSizeAndSign()
H A DDWARFTypeUnit.cpp22 GetOffset(), (uint32_t)GetLength(), GetVersion(), in Dump()
H A DDWARFTypeUnit.h29 dw_offset_t GetTypeOffset() { return GetOffset() + m_header.getTypeOffset(); } in GetTypeOffset()
H A DDWARFASTParserClang.cpp362 type_name_cstr ? type_name_cstr : "", die.GetOffset()); in PrepareContextToReceiveMembers()
546 die.GetOffset(), static_cast<void *>(context), context_die.GetOffset(), in ParseTypeFromDWARF()
613 die.GetOffset(), tag, DW_TAG_value_to_name(tag)); in ParseTypeFromDWARF()
680 die.GetOffset(), authentication_mode_int); in GetPtrAuthMofidierPayload()
852 die.GetOffset(), DW_TAG_value_to_name(die.Tag()), die.Tag(), in ParseTypeModifier()
864 die.GetOffset(), DW_TAG_value_to_name(die.Tag()), die.Tag(), in ParseTypeModifier()
876 die.GetOffset(), DW_TAG_value_to_name(die.Tag()), die.Tag(), in ParseTypeModifier()
898 die.GetOffset(), DW_TAG_value_to_name(die.Tag()), die.Tag(), in ParseTypeModifier()
1047 def_die.GetOffset(), attrs.name.GetCString()); in ParseEnum()
1119 die.GetOffset(), tag, DW_TAG_value_to_name(tag)); in ParseObjCMethod()
[all …]
H A DDWARFDebugInfoEntry.cpp171 GetOffset(), llvm::dwarf::FormEncodingString(form_value.Form()), in GetDIENamesAndRanges()
625 debug_aranges->AppendRange(GetOffset(), r.LowPC, r.HighPC); in BuildFunctionAddressRangeTable()
627 LLDB_LOG_ERROR(log, ranges.takeError(), "DIE({1:x}): {0}", GetOffset()); in BuildFunctionAddressRangeTable()
640 return GetOffset() + llvm::getULEB128Size(m_abbr_idx); in GetFirstAttributeOffset()
/freebsd/lib/libdevdctl/
H A Dexception.h136 size_t GetOffset() const;
160 ParseException::GetOffset() const in GetOffset() function
H A Dexception.cc110 if (GetOffset() == 0) { in ParseException()
115 markedBuffer.insert(GetOffset(), "<HERE-->"); in ParseException()
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverAddress.cpp76 m_addr.GetOffset()); in SerializeToStructuredData()
79 m_addr.GetOffset()); in SerializeToStructuredData()
134 if (module_sp->ResolveFileAddress(m_addr.GetOffset(), tmp_address)) in SearchCallback()
H A DBreakpointResolverName.cpp84 rhs.GetOffset()), in BreakpointResolverName()
345 break_addr.SetOffset(break_addr.GetOffset() + prologue_byte_size); in SearchCallback()
362 break_addr.SetOffset(break_addr.GetOffset() + prologue_byte_size); in SearchCallback()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBAddress.cpp143 addr_t addr_offset = m_opaque_up->GetOffset(); in OffsetAddress()
161 lldb::addr_t SBAddress::GetOffset() { in GetOffset() function in SBAddress
165 return m_opaque_up->GetOffset(); in GetOffset()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.cpp177 next_symbol->GetAddressRef().GetOffset() - in ParseFunctions()
178 curr_symbol->GetAddressRef().GetOffset()); in ParseFunctions()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DUnwindPlan.h151 int32_t GetOffset() const { in GetOffset() function
280 int32_t GetOffset() const { in GetOffset() function
359 int64_t GetOffset() const { return m_offset; } in GetOffset() function
H A DObjectContainer.h75 virtual lldb::addr_t GetOffset() const { return m_offset; } in GetOffset() function
/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DValueObjectMemory.cpp73 m_value.GetScalar() = m_address.GetOffset(); in ValueObjectMemory()
103 m_value.GetScalar() = m_address.GetOffset(); in ValueObjectMemory()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Architecture/PPC64/
H A DArchitecturePPC64.cpp61 addr.SetOffset(addr.GetOffset() + loffs); in AdjustBreakpointAddress()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemProfUse.cpp194 auto GetOffset = [](const DILocation *DIL) { in extractCallsFromIR() local
246 LineLocation Loc = {GetOffset(DIL), DIL->getColumn()}; in extractCallsFromIR()
491 auto GetOffset = [](const DILocation *DIL) { in readMemprof() local
530 auto StackId = computeStackId(CalleeGUID, GetOffset(DIL), in readMemprof()

123