/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | ValueObjectMemory.cpp | 63 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get()); in ValueObjectMemory() local 64 if (load_address != LLDB_INVALID_ADDRESS) { in ValueObjectMemory() 66 m_value.GetScalar() = load_address; in ValueObjectMemory() 93 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get()); in ValueObjectMemory() local 94 if (load_address != LLDB_INVALID_ADDRESS) { in ValueObjectMemory() 96 m_value.GetScalar() = load_address; in ValueObjectMemory()
|
H A D | ValueObjectDynamicValue.cpp | 245 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get()); in UpdateValue() local 246 m_value.GetScalar() = load_address; in UpdateValue()
|
H A D | Value.cpp | 417 addr_t load_address = in GetValueAsData() 425 if (load_address != LLDB_INVALID_ADDRESS && in GetValueAsData() 428 address = load_address; in GetValueAsData() 415 addr_t load_address = GetValueAsData() local
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/ |
H A D | TraceIntelPTJSONStructs.cpp | 38 json_module["loadAddress"] = toJSON(module.load_address, true); in toJSON() 48 o.map("loadAddress", module.load_address) && in fromJSON() 122 if (kernel.load_address) in toJSON() 123 json_module["loadAddress"] = toJSON(*kernel.load_address, true); in toJSON() 130 return o && o.map("loadAddress", kernel.load_address) && in fromJSON()
|
H A D | TraceIntelPTBundleLoader.cpp | 57 module_sp->SetLoadAddress(target, module.load_address.value, false, in ParseModule() 178 lldb::addr_t load_address = in ParseKernel() 179 bundle_description.kernel->load_address in ParseKernel() 180 ? bundle_description.kernel->load_address->value in ParseKernel() 184 module_sp->SetLoadAddress(*parsed_process->target_sp, load_address, false, in ParseKernel() 176 lldb::addr_t load_address = ParseKernel() local
|
H A D | TraceIntelPTJSONStructs.h | 25 JSONUINT64 load_address; member 48 std::optional<JSONUINT64> load_address; member
|
H A D | DecodedThread.cpp |
|
H A D | DecodedThread.h | 272 uint64_t load_address; global() member
|
H A D | TraceIntelPTBundleSaver.cpp | 352 return JSONKernel{kernel_image.load_address, kernel_image.system_path}; in BuildKernelSection()
|
/freebsd/contrib/llvm-project/lldb/source/Expression/ |
H A D | IRExecutionUnit.cpp | 711 lldb::addr_t load_address = LLDB_INVALID_ADDRESS; in Resolve() local 726 load_address = candidate_sc.symbol->ResolveCallableAddress(*m_target); in Resolve() 727 if (load_address == LLDB_INVALID_ADDRESS) { in Resolve() 729 load_address = m_target->GetProcessSP() in Resolve() 736 if (load_address == LLDB_INVALID_ADDRESS && candidate_sc.function) { in Resolve() 739 load_address = m_target->GetProcessSP() ? addr.GetLoadAddress(m_target) in Resolve() 744 if (load_address != LLDB_INVALID_ADDRESS) { in Resolve() 750 return load_address; in Resolve() 754 m_best_internal_load_address = load_address; in Resolve()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | TraceDumper.cpp | 185 m_s.Format("{0:x+16}", item.load_address); in TraceItem() 374 m_j.attribute("loadAddress", formatv("{0:x}", item.load_address)); in DumpInstruction() 524 CalculateSymbolInfo(const ExecutionContext &exe_ctx, lldb::addr_t load_address, in CalculateSymbolInfo() argument 528 symbol_info.address.SetLoadAddress(load_address, exe_ctx.GetTargetPtr()); in CalculateSymbolInfo() 573 item.load_address = m_cursor_sp->GetLoadAddress(); in DumpInstructions() 577 CalculateSymbolInfo(exe_ctx, item.load_address, prev_symbol_info); in DumpInstructions()
|
H A D | StackFrame.cpp | 1574 Address load_address; in DoGuessValueAt() local 1576 operands[0].m_immediate, load_address)) { in DoGuessValueAt() 1580 load_address, eSymbolContextFunction, sc); in DoGuessValueAt()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/wasm/ |
H A D | ObjectFileWasm.cpp | 346 bool ObjectFileWasm::SetLoadAddress(Target &target, lldb::addr_t load_address, in SetLoadAddress() argument 365 m_memory_addr == load_address); in SetLoadAddress() 382 section_sp, load_address | section_sp->GetFileOffset())) { in SetLoadAddress()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/FreeBSD-Kernel/ |
H A D | DynamicLoaderFreeBSDKernel.cpp | 414 addr_t load_address = memory_object_file->GetBaseAddress().GetFileAddress(); in LoadImageUsingMemoryModule() local 416 if (load_address != LLDB_INVALID_ADDRESS && in LoadImageUsingMemoryModule() 417 m_load_address != load_address) { in LoadImageUsingMemoryModule() 418 fixed_slide = m_load_address - load_address; in LoadImageUsingMemoryModule()
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | Block.cpp | 280 Address load_address; in GetRangeContainingLoadAddress() local 281 load_address.SetLoadAddress(load_addr, &target); in GetRangeContainingLoadAddress() 283 return GetRangeContainingAddress(load_address, containing_range); in GetRangeContainingLoadAddress()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | TraceDumper.h | 66 lldb::addr_t load_address; member
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/TraceExporter/common/ |
H A D | TraceHTR.cpp | 391 lldb::addr_t load_address = metadata.GetFirstInstructionLoadAddress(); in toJSON() local 396 stream << "0x" << std::hex << load_address; in toJSON()
|