Home
last modified time | relevance | path

Searched refs:process_address (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DIRMemoryMap.cpp463 void IRMemoryMap::Leak(lldb::addr_t process_address, Status &error) { in Leak() argument
466 AllocationMap::iterator iter = m_allocations.find(process_address); in Leak()
478 void IRMemoryMap::Free(lldb::addr_t process_address, Status &error) { in Free() argument
481 AllocationMap::iterator iter = m_allocations.find(process_address); in Free()
514 (uint64_t)process_address, iter->second.m_process_start, in Free()
543 void IRMemoryMap::WriteMemory(lldb::addr_t process_address, in WriteMemory() argument
548 AllocationMap::iterator iter = FindAllocation(process_address, size); in WriteMemory()
554 process_sp->WriteMemory(process_address, bytes, size, error); in WriteMemory()
566 uint64_t offset = process_address - allocation.m_process_start; in WriteMemory()
590 process_sp->WriteMemory(process_address, bytes, size, error); in WriteMemory()
[all …]
H A DMaterializer.cpp161 lldb::addr_t process_address, Status &err) override { in Materialize() argument
164 const lldb::addr_t load_addr = process_address + m_offset; in Materialize()
212 lldb::addr_t process_address, lldb::addr_t frame_top, in Dematerialize() argument
216 const lldb::addr_t load_addr = process_address + m_offset; in Dematerialize()
222 (uint64_t)process_address + m_offset, in Dematerialize()
349 void DumpToLog(IRMemoryMap &map, lldb::addr_t process_address, in DumpToLog() argument
355 const lldb::addr_t load_addr = process_address + m_offset; in DumpToLog()
413 void Wipe(IRMemoryMap &map, lldb::addr_t process_address) override {} in Wipe() argument
447 lldb::addr_t process_address, Status &err) override { in Materialize() argument
450 const lldb::addr_t load_addr = process_address + m_offset; in Materialize()
[all …]
H A DIRInterpreter.cpp189 lldb::addr_t process_address = ResolveValue(value, module); in EvaluateValue() local
195 m_execution_unit.GetMemoryData(value_extractor, process_address, in EvaluateValue()
222 lldb::addr_t process_address = ResolveValue(value, module); in AssignValue() local
224 if (process_address == LLDB_INVALID_ADDRESS) in AssignValue()
250 m_execution_unit.WriteMemory(process_address, buf.GetBytes(), in AssignValue()
368 bool ResolveConstant(lldb::addr_t process_address, const Constant *constant) { in ResolveConstant() argument
387 m_execution_unit.WriteMemory(process_address, buf.GetBytes(), in ResolveConstant()
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DIRMemoryMap.h61 void Leak(lldb::addr_t process_address, Status &error);
62 void Free(lldb::addr_t process_address, Status &error);
64 void WriteMemory(lldb::addr_t process_address, const uint8_t *bytes,
66 void WriteScalarToMemory(lldb::addr_t process_address, Scalar &scalar,
68 void WritePointerToMemory(lldb::addr_t process_address, lldb::addr_t address,
70 void ReadMemory(uint8_t *bytes, lldb::addr_t process_address, size_t size,
72 void ReadScalarFromMemory(Scalar &scalar, lldb::addr_t process_address,
75 lldb::addr_t process_address, Status &error);
77 void GetMemoryData(DataExtractor &extractor, lldb::addr_t process_address,
H A DMaterializer.h48 IRMemoryMap &map, lldb::addr_t process_address) in Dematerializer() argument
50 m_process_address(process_address) { in Dematerializer()
68 lldb::addr_t process_address, Status &err);
121 lldb::addr_t process_address, Status &err) = 0;
123 lldb::addr_t process_address,
126 virtual void DumpToLog(IRMemoryMap &map, lldb::addr_t process_address,
128 virtual void Wipe(IRMemoryMap &map, lldb::addr_t process_address) = 0;