Searched refs:load_addr (Results 1 - 25 of 66) sorted by relevance

123

/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DSectionLoadList.cpp64 addr_t load_addr,
70 LLDB_LOGV(log, "(section = {0} ({1}.{2}), load_addr = {3:x}) module = {4}",
72 load_addr, module_sp.get());
77 // Fill in the section -> load_addr map
82 if (load_addr == sta_pos->second)
85 sta_pos->second = load_addr;
87 m_sect_to_addr[section.get()] = load_addr;
89 // Fill in the load_addr -> section map
90 addr_to_sect_collection::iterator ats_pos = m_addr_to_sect.find(load_addr);
110 load_addr, module_s
63 SetSectionLoadAddress(const lldb::SectionSP &section, addr_t load_addr, bool warn_multiple) argument
160 addr_t load_addr = sta_pos->second; local
172 SetSectionUnloaded(const lldb::SectionSP &section_sp, addr_t load_addr) argument
208 ResolveLoadAddress(addr_t load_addr, Address &so_addr, bool allow_section_end) const argument
[all...]
H A DSectionLoadHistory.cpp114 bool SectionLoadHistory::ResolveLoadAddress(uint32_t stop_id, addr_t load_addr, argument
121 return section_load_list->ResolveLoadAddress(load_addr, so_addr);
125 uint32_t stop_id, const lldb::SectionSP &section_sp, addr_t load_addr,
131 return section_load_list->SetSectionLoadAddress(section_sp, load_addr,
147 addr_t load_addr) {
152 return section_load_list->SetSectionUnloaded(section_sp, load_addr);
124 SetSectionLoadAddress( uint32_t stop_id, const lldb::SectionSP &section_sp, addr_t load_addr, bool warn_multiple) argument
145 SetSectionUnloaded(uint32_t stop_id, const lldb::SectionSP &section_sp, addr_t load_addr) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Architecture/Arm/
H A DArchitectureArm.h27 lldb::addr_t GetCallableLoadAddress(lldb::addr_t load_addr,
30 lldb::addr_t GetOpcodeLoadAddress(lldb::addr_t load_addr,
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-pow.c155 cvmx_pow_load_addr_t load_addr; local
156 load_addr.u64 = 0;
157 load_addr.sstatus.mem_region = CVMX_IO_SEG;
158 load_addr.sstatus.is_io = 1;
159 load_addr.sstatus.did = CVMX_OCT_DID_TAG_TAG1;
160 load_addr.sstatus.coreid = core;
163 load_addr.sstatus.get_rev = (bits & 1) != 0;
164 load_addr.sstatus.get_cur = (bits & 2) != 0;
165 load_addr.sstatus.get_wqp = (bits & 4) != 0;
166 if ((load_addr
176 cvmx_pow_load_addr_t load_addr; local
193 cvmx_pow_load_addr_t load_addr; local
235 cvmx_pow_load_addr_t load_addr; local
250 cvmx_pow_load_addr_t load_addr; local
266 cvmx_pow_load_addr_t load_addr; local
[all...]
H A Dcvmx-pow.h1356 cvmx_pow_load_addr_t load_addr; local
1361 load_addr.u64 = 0;
1362 load_addr.sstatus_cn68xx.mem_region = CVMX_IO_SEG;
1363 load_addr.sstatus_cn68xx.is_io = 1;
1364 load_addr.sstatus_cn68xx.did = CVMX_OCT_DID_TAG_TAG5;
1365 load_addr.sstatus_cn68xx.coreid = cvmx_get_core_num();
1366 load_addr.sstatus_cn68xx.opcode = 3;
1367 load_resp.u64 = cvmx_read_csr(load_addr.u64);
1374 load_addr.u64 = 0;
1375 load_addr
1397 cvmx_pow_load_addr_t load_addr; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Architecture/Mips/
H A DArchitectureMips.h31 lldb::addr_t GetCallableLoadAddress(lldb::addr_t load_addr,
34 lldb::addr_t GetOpcodeLoadAddress(lldb::addr_t load_addr,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DAddressRange.cpp101 addr_t load_addr = addr.GetLoadAddress(target);
102 if (load_addr == LLDB_INVALID_ADDRESS)
105 if (load_base_addr <= load_addr)
106 return (load_addr - load_base_addr) < GetByteSize();
111 bool AddressRange::ContainsLoadAddress(addr_t load_addr, Target *target) const { argument
112 if (load_addr == LLDB_INVALID_ADDRESS)
119 if (load_base_addr <= load_addr)
120 return (load_addr - load_base_addr) < GetByteSize();
H A DAddress.cpp358 bool Address::SetCallableLoadAddress(lldb::addr_t load_addr, Target *target) { argument
359 if (SetLoadAddress(load_addr, target)) {
378 bool Address::SetOpcodeLoadAddress(lldb::addr_t load_addr, Target *target, argument
381 if (SetLoadAddress(load_addr, target, allow_section_end)) {
453 addr_t load_addr = GetLoadAddress(target); local
467 load_addr = GetCallableLoadAddress(target);
470 if (load_addr == LLDB_INVALID_ADDRESS) {
475 DumpAddress(s->AsRawOstream(), load_addr, addr_size);
744 addr_t load_addr = GetLoadAddress(target); local
745 if (load_addr !
1010 SetLoadAddress(lldb::addr_t load_addr, Target *target, bool allow_section_end) argument
[all...]
H A DDynamicLoader.cpp180 lldb::addr_t load_addr; local
181 Status error = m_process->GetFileLoadAddress(file, is_loaded, load_addr);
184 base_addr = load_addr;
H A DValueObjectMemory.cpp187 lldb::addr_t load_addr = m_address.GetLoadAddress(target); local
188 if (load_addr != LLDB_INVALID_ADDRESS) {
190 m_value.GetScalar() = load_addr;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DSectionLoadHistory.h47 bool ResolveLoadAddress(uint32_t stop_id, lldb::addr_t load_addr,
52 lldb::addr_t load_addr,
59 lldb::addr_t load_addr);
H A DSectionLoadList.h43 bool ResolveLoadAddress(lldb::addr_t load_addr, Address &so_addr,
47 lldb::addr_t load_addr,
54 lldb::addr_t load_addr);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
H A DDynamicLoaderWindowsDYLD.cpp106 lldb::addr_t load_addr = LLDB_INVALID_ADDRESS;
113 m_process->GetFileLoadAddress(file_spec, is_loaded, load_addr);
115 if (status.Success() && is_loaded && load_addr != LLDB_INVALID_ADDRESS) {
116 m_loaded_modules[executable] = load_addr;
117 return load_addr;
134 lldb::addr_t load_addr = GetLoadAddress(executable);
135 if (load_addr == LLDB_INVALID_ADDRESS)
140 if (image_base == load_addr)
144 UpdateLoadedSections(executable, LLDB_INVALID_ADDRESS, load_addr, false);
161 lldb::addr_t load_addr
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBAddress.i57 SBAddress (lldb::addr_t load_addr, lldb::SBTarget &target);
87 SetLoadAddress (lldb::addr_t load_addr,
151 def __set_load_addr_property__ (self, load_addr):
153 return self.SetLoadAddress (load_addr, target)
179 load_addr = property(__get_load_addr_property__, __set_load_addr_property__, doc='''A read/write property that gets/sets the SBAddress using load address. The setter resolves SBAddress using the SBTarget from lldb.target so this property can ONLY be used in the interactive script interpreter (i.e. under the lldb script command) and not in Python based commands, or breakpoint commands.''')
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
H A DMaterializer.cpp142 const lldb::addr_t load_addr = process_address + m_offset; variable
148 (uint64_t)load_addr,
171 load_addr,
194 const lldb::addr_t load_addr = process_address + m_offset; variable
223 map.ReadPointerFromMemory(&location, load_addr, read_error);
339 const lldb::addr_t load_addr = process_address + m_offset; variable
342 load_addr,
350 map.ReadMemory(data.GetBytes(), load_addr, m_size, err);
356 load_addr);
367 map.ReadPointerFromMemory(&target_address, load_addr, er
426 const lldb::addr_t load_addr = process_address + m_offset; variable
595 const lldb::addr_t load_addr = process_address + m_offset; variable
676 const lldb::addr_t load_addr = process_address + m_offset; variable
785 const lldb::addr_t load_addr = process_address + m_offset; variable
847 const lldb::addr_t load_addr = process_address + m_offset; variable
949 const lldb::addr_t load_addr = process_address + m_offset; variable
1054 const lldb::addr_t load_addr = process_address + m_offset; variable
1101 const lldb::addr_t load_addr = process_address + m_offset; variable
1119 const lldb::addr_t load_addr = process_address + m_offset; variable
1171 const lldb::addr_t load_addr = process_address + m_offset; variable
1234 const lldb::addr_t load_addr = process_address + m_offset; variable
1294 const lldb::addr_t load_addr = process_address + m_offset; variable
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBAddress.cpp47 SBAddress::SBAddress(lldb::addr_t load_addr, lldb::SBTarget &target) argument
50 load_addr, target);
52 SetLoadAddress(load_addr, target);
136 void SBAddress::SetLoadAddress(lldb::addr_t load_addr, lldb::SBTarget &target) { argument
138 (lldb::addr_t, lldb::SBTarget &), load_addr, target);
143 *this = target.ResolveLoadAddress(load_addr);
151 m_opaque_up->SetOffset(load_addr);
H A DSBMemoryRegionInfo.cpp124 const addr_t load_addr = m_opaque_up->GetRange().base; local
126 strm.Printf("[0x%16.16" PRIx64 "-0x%16.16" PRIx64 " ", load_addr,
127 load_addr + m_opaque_up->GetRange().size);
/freebsd-11-stable/contrib/gdb/gdb/
H A Dprintcmd.c1061 CORE_ADDR load_addr;
1089 load_addr = SYMBOL_VALUE_ADDRESS (msymbol);
1095 print_address_numeric (load_addr, 1, gdb_stdout);
1100 load_addr = overlay_unmapped_address (load_addr, section);
1102 print_address_numeric (load_addr, 1, gdb_stdout);
1129 print_address_numeric (load_addr = SYMBOL_VALUE_ADDRESS (sym),
1133 load_addr = overlay_unmapped_address (load_addr, section);
1135 print_address_numeric (load_addr,
1057 CORE_ADDR load_addr; local
[all...]
H A Dsolib-svr4.c1006 CORE_ADDR load_addr = 0; local
1064 load_addr = LM_ADDR (inferior_sos);
1074 load_addr = (read_pc ()
1083 bfd_section_vma (tmp_bfd, interp_sect) + load_addr;
1091 bfd_section_vma (tmp_bfd, interp_sect) + load_addr;
1119 create_solib_event_breakpoint (load_addr + sym_addr);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DAddress.h368 /// Set the address to represent \a load_addr.
371 /// contains \a load_addr. If successful, this address object will have a
373 /// (NULL) and the offset will be \a load_addr.
375 /// \param[in] load_addr
393 bool SetLoadAddress(lldb::addr_t load_addr, Target *target,
397 lldb::addr_t load_addr, Target *target,
401 bool SetCallableLoadAddress(lldb::addr_t load_addr, Target *target);
H A DAddressRange.h147 /// Check if the resolved load address \a load_addr is contained within this
154 bool ContainsLoadAddress(lldb::addr_t load_addr, Target *target) const;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBAddress.h26 SBAddress(lldb::addr_t load_addr, lldb::SBTarget &target);
48 void SetLoadAddress(lldb::addr_t load_addr, lldb::SBTarget &target);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.cpp338 lldb::addr_t load_addr) {
340 auto pos = llvm::upper_bound(regions, load_addr);
342 std::prev(pos)->GetRange().Contains(load_addr)) {
381 addr_t load_addr = load_list.GetSectionLoadAddress(section_sp);
382 if (load_addr == LLDB_INVALID_ADDRESS)
384 MemoryRegionInfo::RangeType section_range(load_addr,
387 ::GetMemoryRegionInfo(*m_memory_regions, load_addr);
405 Status ProcessMinidump::GetMemoryRegionInfo(lldb::addr_t load_addr, argument
408 region = ::GetMemoryRegionInfo(*m_memory_regions, load_addr);
452 const uint64_t load_addr local
337 GetMemoryRegionInfo(const MemoryRegionInfos &regions, lldb::addr_t load_addr) argument
530 module_sp->SetLoadAddress(GetTarget(), load_addr, false, local
[all...]
H A DProcessMinidump.h79 Status GetMemoryRegionInfo(lldb::addr_t load_addr,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.h54 Status GetMemoryRegionInfo(lldb::addr_t load_addr,
81 lldb::addr_t &load_addr) override;

Completed in 791 milliseconds

123