Home
last modified time | relevance | path

Searched refs:vm_addr (Results 1 – 21 of 21) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DSection.cpp274 bool Section::ContainsFileAddress(addr_t vm_addr) const { in ContainsFileAddress()
277 if (file_addr <= vm_addr) { in ContainsFileAddress()
278 const addr_t offset = (vm_addr - file_addr) * m_target_byte_size; in ContainsFileAddress()
543 SectionSP SectionList::FindSectionContainingFileAddress(addr_t vm_addr, in FindSectionContainingFileAddress() argument
551 if (sect->ContainsFileAddress(vm_addr)) { in FindSectionContainingFileAddress()
557 vm_addr, depth - 1); in FindSectionContainingFileAddress()
H A DModuleList.cpp629 bool ModuleList::ResolveFileAddress(lldb::addr_t vm_addr, in ResolveFileAddress() argument
634 if ((*pos)->ResolveFileAddress(vm_addr, so_addr)) in ResolveFileAddress()
H A DModule.cpp439 bool Module::ResolveFileAddress(lldb::addr_t vm_addr, Address &so_addr) { in ResolveFileAddress() argument
443 return so_addr.ResolveAddressUsingFileSections(vm_addr, section_list); in ResolveFileAddress()
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBBreakpoint.cpp132 SBBreakpointLocation SBBreakpoint::FindLocationByAddress(addr_t vm_addr) { in FindLocationByAddress() argument
134 FindLocationByAddress, (lldb::addr_t), vm_addr); in FindLocationByAddress()
140 if (vm_addr != LLDB_INVALID_ADDRESS) { in FindLocationByAddress()
145 if (!target.GetSectionLoadList().ResolveLoadAddress(vm_addr, address)) { in FindLocationByAddress()
146 address.SetRawAddress(vm_addr); in FindLocationByAddress()
154 break_id_t SBBreakpoint::FindLocationIDByAddress(addr_t vm_addr) { in FindLocationIDByAddress() argument
156 (lldb::addr_t), vm_addr); in FindLocationIDByAddress()
161 if (bkpt_sp && vm_addr != LLDB_INVALID_ADDRESS) { in FindLocationIDByAddress()
166 if (!target.GetSectionLoadList().ResolveLoadAddress(vm_addr, address)) { in FindLocationIDByAddress()
167 address.SetRawAddress(vm_addr); in FindLocationIDByAddress()
H A DSBModule.cpp210 SBAddress SBModule::ResolveFileAddress(lldb::addr_t vm_addr) { in ResolveFileAddress() argument
212 (lldb::addr_t), vm_addr); in ResolveFileAddress()
218 if (module_sp->ResolveFileAddress(vm_addr, addr)) in ResolveFileAddress()
H A DSBTarget.cpp623 lldb::SBAddress SBTarget::ResolveLoadAddress(lldb::addr_t vm_addr) { in ResolveLoadAddress() argument
625 (lldb::addr_t), vm_addr); in ResolveLoadAddress()
632 if (target_sp->ResolveLoadAddress(vm_addr, addr)) in ResolveLoadAddress()
638 addr.SetRawAddress(vm_addr); in ResolveLoadAddress()
660 lldb::addr_t vm_addr) { in ResolvePastLoadAddress() argument
662 (uint32_t, lldb::addr_t), stop_id, vm_addr); in ResolvePastLoadAddress()
669 if (target_sp->ResolveLoadAddress(vm_addr, addr)) in ResolvePastLoadAddress()
675 addr.SetRawAddress(vm_addr); in ResolvePastLoadAddress()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h1436 virtual size_t ReadMemory(lldb::addr_t vm_addr, void *buf, size_t size,
1467 size_t ReadMemoryFromInferior(lldb::addr_t vm_addr, void *buf, size_t size,
1497 size_t ReadStringFromMemory(lldb::addr_t vm_addr, char *str, size_t max_bytes,
1507 size_t ReadCStringFromMemory(lldb::addr_t vm_addr, char *cstr,
1510 size_t ReadCStringFromMemory(lldb::addr_t vm_addr, std::string &out_str,
1545 lldb::addr_t ReadPointerFromMemory(lldb::addr_t vm_addr, Status &error);
1547 bool WritePointerToMemory(lldb::addr_t vm_addr, lldb::addr_t ptr_value,
1568 virtual size_t DoWriteMemory(lldb::addr_t vm_addr, const void *buf, in DoWriteMemory() argument
1605 size_t WriteScalarToMemory(lldb::addr_t vm_addr, const Scalar &scalar,
1636 size_t WriteMemory(lldb::addr_t vm_addr, const void *buf, size_t size,
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/
H A DSBBreakpoint.h47 lldb::SBBreakpointLocation FindLocationByAddress(lldb::addr_t vm_addr);
49 lldb::break_id_t FindLocationIDByAddress(lldb::addr_t vm_addr);
H A DSBModule.h113 lldb::SBAddress ResolveFileAddress(lldb::addr_t vm_addr);
H A DSBTarget.h493 lldb::SBAddress ResolveLoadAddress(lldb::addr_t vm_addr);
516 lldb::addr_t vm_addr);
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ObjectFile/wasm/
H A DObjectFileWasm.cpp307 addr_t vm_addr = file_offset; in CreateSections() local
318 vm_addr = 0; in CreateSections()
326 vm_addr = 0; in CreateSections()
337 vm_addr, // VM address. in CreateSections()
/freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/
H A DSBBreakpoint.i107 FindLocationByAddress (lldb::addr_t vm_addr);
110 FindLocationIDByAddress (lldb::addr_t vm_addr);
H A DSBTarget.i513 ResolveLoadAddress (lldb::addr_t vm_addr);
516 ResolvePastLoadAddress (uint32_t stop_id, lldb::addr_t vm_addr);
H A DSBModule.i191 ResolveFileAddress (lldb::addr_t vm_addr);
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DModule.h649 bool ResolveFileAddress(lldb::addr_t vm_addr, Address &so_addr);
1020 uint32_t ResolveSymbolContextForAddress(lldb::addr_t vm_addr,
H A DSection.h124 bool ContainsFileAddress(lldb::addr_t vm_addr) const;
H A DModuleList.h403 bool ResolveFileAddress(lldb::addr_t vm_addr, Address &so_addr) const;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp176 lldb::addr_t vm_addr = 0; in DoLoadCore() local
191 if (vm_addr > last_addr) in DoLoadCore()
193 vm_addr = last_addr; in DoLoadCore()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp1279 auto vm_addr = pub_sym_up->getVirtualAddress(); in CacheFunctionNames() local
1282 if (vm_addr && addr_ids.find(vm_addr) != addr_ids.end()) { in CacheFunctionNames()
1284 m_func_full_names.Append(ConstString(name), addr_ids[vm_addr]); in CacheFunctionNames()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp2081 uint64_t Process::ReadUnsignedIntegerFromMemory(lldb::addr_t vm_addr, in ReadUnsignedIntegerFromMemory() argument
2086 if (ReadScalarIntegerFromMemory(vm_addr, integer_byte_size, false, scalar, in ReadUnsignedIntegerFromMemory()
2092 int64_t Process::ReadSignedIntegerFromMemory(lldb::addr_t vm_addr, in ReadSignedIntegerFromMemory() argument
2097 if (ReadScalarIntegerFromMemory(vm_addr, integer_byte_size, true, scalar, in ReadSignedIntegerFromMemory()
2103 addr_t Process::ReadPointerFromMemory(lldb::addr_t vm_addr, Status &error) { in ReadPointerFromMemory() argument
2105 if (ReadScalarIntegerFromMemory(vm_addr, GetAddressByteSize(), false, scalar, in ReadPointerFromMemory()
2111 bool Process::WritePointerToMemory(lldb::addr_t vm_addr, lldb::addr_t ptr_value, in WritePointerToMemory() argument
2119 return WriteScalarToMemory(vm_addr, scalar, addr_byte_size, error) == in WritePointerToMemory()
/freebsd-13.1/sys/compat/linuxkpi/common/src/
H A Dlinux_compat.c1912 void *vm_addr; member
1933 vmmap->vm_addr = addr; in vmmap_add()
1945 if (vmmap->vm_addr == addr) in vmmap_remove()