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

123

/freebsd-13-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-13-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-13-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-13-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.cpp192 lldb::addr_t load_addr = m_address.GetLoadAddress(target); local
193 if (load_addr != LLDB_INVALID_ADDRESS) {
195 m_value.GetScalar() = load_addr;
/freebsd-13-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-13-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-13-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
H A DDynamicLoaderWindowsDYLD.cpp107 lldb::addr_t load_addr = LLDB_INVALID_ADDRESS;
114 m_process->GetFileLoadAddress(file_spec, is_loaded, load_addr);
116 if (status.Success() && is_loaded && load_addr != LLDB_INVALID_ADDRESS) {
117 m_loaded_modules[executable] = load_addr;
118 return load_addr;
135 lldb::addr_t load_addr = GetLoadAddress(executable);
136 if (load_addr == LLDB_INVALID_ADDRESS)
141 if (image_base == load_addr)
145 UpdateLoadedSections(executable, LLDB_INVALID_ADDRESS, load_addr, false);
162 lldb::addr_t load_addr
[all...]
/freebsd-13-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,
155 def __set_load_addr_property__ (self, load_addr):
159 return self.SetLoadAddress (load_addr, target)
186 load_addr = property(__get_load_addr_property__, __set_load_addr_property__, doc='''A read/write property that gets/sets the SBAddress using load address. This resolves the 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). For things like Python based commands and breakpoint callbacks use GetLoadAddress instead.''')
/freebsd-13-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
427 const lldb::addr_t load_addr = process_address + m_offset; variable
596 const lldb::addr_t load_addr = process_address + m_offset; variable
677 const lldb::addr_t load_addr = process_address + m_offset; variable
786 const lldb::addr_t load_addr = process_address + m_offset; variable
852 const lldb::addr_t load_addr = process_address + m_offset; variable
952 const lldb::addr_t load_addr = process_address + m_offset; variable
1057 const lldb::addr_t load_addr = process_address + m_offset; variable
1106 const lldb::addr_t load_addr = process_address + m_offset; variable
1124 const lldb::addr_t load_addr = process_address + m_offset; variable
1176 const lldb::addr_t load_addr = process_address + m_offset; variable
1239 const lldb::addr_t load_addr = process_address + m_offset; variable
1299 const lldb::addr_t load_addr = process_address + m_offset; variable
[all...]
/freebsd-13-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-13-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-13-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-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.cpp408 lldb::addr_t load_addr) {
410 auto pos = llvm::upper_bound(regions, load_addr);
412 std::prev(pos)->GetRange().Contains(load_addr)) {
451 addr_t load_addr = load_list.GetSectionLoadAddress(section_sp);
452 if (load_addr == LLDB_INVALID_ADDRESS)
454 MemoryRegionInfo::RangeType section_range(load_addr,
457 ::GetMemoryRegionInfo(*m_memory_regions, load_addr);
475 Status ProcessMinidump::GetMemoryRegionInfo(lldb::addr_t load_addr, argument
478 region = ::GetMemoryRegionInfo(*m_memory_regions, load_addr);
569 const uint64_t load_addr local
407 GetMemoryRegionInfo(const MemoryRegionInfos &regions, lldb::addr_t load_addr) argument
638 module_sp->SetLoadAddress(GetTarget(), load_addr, false, local
[all...]
H A DProcessMinidump.h79 Status GetMemoryRegionInfo(lldb::addr_t load_addr,
/freebsd-13-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;
/freebsd-13-stable/sbin/pfctl/
H A Dpfctl_table.c64 static int load_addr(struct pfr_buffer *, int, char *[], char *, int);
203 if (load_addr(&b, argc, argv, file, 0))
218 if (load_addr(&b, argc, argv, file, 0))
232 if (load_addr(&b, argc, argv, file, 0))
325 if (load_addr(&b, argc, argv, file, 1))
416 load_addr(struct pfr_buffer *b, int argc, char *argv[], char *file, function
/freebsd-13-stable/stand/i386/libi386/
H A Dmultiboot.h114 multiboot_uint32_t load_addr; member in struct:multiboot_header

Completed in 390 milliseconds

123