Home
last modified time | relevance | path

Searched refs:load_addr (Results 1 – 25 of 64) sorted by relevance

123

/freebsd-12.1/sys/contrib/octeon-sdk/
H A Dcvmx-pow.c155 cvmx_pow_load_addr_t load_addr; in __cvmx_pow_capture_v1() local
156 load_addr.u64 = 0; in __cvmx_pow_capture_v1()
158 load_addr.sstatus.is_io = 1; in __cvmx_pow_capture_v1()
166 if ((load_addr.sstatus.get_cur == 0) && load_addr.sstatus.get_rev) in __cvmx_pow_capture_v1()
176 cvmx_pow_load_addr_t load_addr; in __cvmx_pow_capture_v1() local
177 load_addr.u64 = 0; in __cvmx_pow_capture_v1()
179 load_addr.smemload.is_io = 1; in __cvmx_pow_capture_v1()
194 load_addr.u64 = 0; in __cvmx_pow_capture_v1()
236 load_addr.u64 = 0; in __cvmx_pow_capture_v2()
251 load_addr.u64 = 0; in __cvmx_pow_capture_v2()
[all …]
H A Dcvmx-pow.h1356 cvmx_pow_load_addr_t load_addr; in cvmx_pow_get_current_tag() local
1361 load_addr.u64 = 0; in cvmx_pow_get_current_tag()
1374 load_addr.u64 = 0; in cvmx_pow_get_current_tag()
1376 load_addr.sstatus.is_io = 1; in cvmx_pow_get_current_tag()
1379 load_addr.sstatus.get_cur = 1; in cvmx_pow_get_current_tag()
1397 cvmx_pow_load_addr_t load_addr; in cvmx_pow_get_current_wqp() local
1401 load_addr.u64 = 0; in cvmx_pow_get_current_wqp()
1413 load_addr.u64 = 0; in cvmx_pow_get_current_wqp()
1415 load_addr.sstatus.is_io = 1; in cvmx_pow_get_current_wqp()
1418 load_addr.sstatus.get_cur = 1; in cvmx_pow_get_current_wqp()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DSectionLoadList.cpp72 load_addr, module_sp.get()); in SetSectionLoadAddress()
82 if (load_addr == sta_pos->second) in SetSectionLoadAddress()
85 sta_pos->second = load_addr; in SetSectionLoadAddress()
87 m_sect_to_addr[section.get()] = load_addr; in SetSectionLoadAddress()
119 m_addr_to_sect[load_addr] = section; in SetSectionLoadAddress()
159 addr_t load_addr = sta_pos->second; in SetSectionUnloaded() local
163 m_addr_to_sect.find(load_addr); in SetSectionUnloaded()
212 m_addr_to_sect.lower_bound(load_addr); in ResolveLoadAddress()
217 if (load_addr >= pos_load_addr) { in ResolveLoadAddress()
231 if (load_addr >= rpos->first) { in ResolveLoadAddress()
[all …]
H A DSectionLoadHistory.cpp115 bool SectionLoadHistory::ResolveLoadAddress(uint32_t stop_id, addr_t load_addr, in ResolveLoadAddress() argument
122 return section_load_list->ResolveLoadAddress(load_addr, so_addr); in ResolveLoadAddress()
126 uint32_t stop_id, const lldb::SectionSP &section_sp, addr_t load_addr, in SetSectionLoadAddress() argument
132 return section_load_list->SetSectionLoadAddress(section_sp, load_addr, in SetSectionLoadAddress()
148 addr_t load_addr) { in SetSectionUnloaded() argument
153 return section_load_list->SetSectionUnloaded(section_sp, load_addr); in SetSectionUnloaded()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/
H A DMaterializer.cpp157 const lldb::addr_t load_addr = process_address + m_offset; in Materialize() local
162 (uint64_t)load_addr, in Materialize()
185 load_addr, in Materialize()
357 load_addr, in DumpToLog()
371 load_addr); in DumpToLog()
706 load_addr); in DumpToLog()
734 load_addr); in DumpToLog()
979 load_addr); in DumpToLog()
1007 load_addr); in DumpToLog()
1141 load_addr); in DumpToLog()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DAddressRange.cpp102 addr_t load_addr = addr.GetLoadAddress(target); in ContainsLoadAddress() local
103 if (load_addr == LLDB_INVALID_ADDRESS) in ContainsLoadAddress()
106 if (load_base_addr <= load_addr) in ContainsLoadAddress()
107 return (load_addr - load_base_addr) < GetByteSize(); in ContainsLoadAddress()
112 bool AddressRange::ContainsLoadAddress(addr_t load_addr, Target *target) const { in ContainsLoadAddress() argument
113 if (load_addr == LLDB_INVALID_ADDRESS) in ContainsLoadAddress()
120 if (load_base_addr <= load_addr) in ContainsLoadAddress()
121 return (load_addr - load_base_addr) < GetByteSize(); in ContainsLoadAddress()
H A DAddress.cpp342 if (SetLoadAddress(load_addr, target)) { in SetCallableLoadAddress()
364 if (SetLoadAddress(load_addr, target, allow_section_end)) { in SetOpcodeLoadAddress()
436 addr_t load_addr = GetLoadAddress(target); in Dump() local
450 load_addr = GetCallableLoadAddress(target); in Dump()
453 if (load_addr == LLDB_INVALID_ADDRESS) { in Dump()
458 s->Address(load_addr, addr_size); in Dump()
733 addr_t load_addr = GetLoadAddress(target); in Dump() local
734 if (load_addr != LLDB_INVALID_ADDRESS) { in Dump()
737 process->ReadPointerFromMemory(load_addr, memory_error); in Dump()
1004 load_addr, *this, allow_section_end)) in SetLoadAddress()
[all …]
H A DDynamicLoader.cpp182 lldb::addr_t load_addr; in LoadModuleAtAddress() local
183 Status error = m_process->GetFileLoadAddress(file, is_loaded, load_addr); in LoadModuleAtAddress()
186 base_addr = load_addr; in LoadModuleAtAddress()
H A DValueObjectMemory.cpp190 lldb::addr_t load_addr = m_address.GetLoadAddress(target); in UpdateValue() local
191 if (load_addr != LLDB_INVALID_ADDRESS) { in UpdateValue()
193 m_value.GetScalar() = load_addr; in UpdateValue()
/freebsd-12.1/contrib/gdb/gdb/
H A Dprintcmd.c1057 CORE_ADDR load_addr; in address_info() local
1085 load_addr = SYMBOL_VALUE_ADDRESS (msymbol); in address_info()
1091 print_address_numeric (load_addr, 1, gdb_stdout); in address_info()
1096 load_addr = overlay_unmapped_address (load_addr, section); in address_info()
1129 load_addr = overlay_unmapped_address (load_addr, section); in address_info()
1131 print_address_numeric (load_addr, 1, gdb_stdout); in address_info()
1156 load_addr = overlay_unmapped_address (load_addr, section); in address_info()
1170 load_addr = overlay_unmapped_address (load_addr, section); in address_info()
1221 load_addr = overlay_unmapped_address (load_addr, section); in address_info()
1243 load_addr = overlay_unmapped_address (load_addr, section); in address_info()
[all …]
H A Dsolib-svr4.c1006 CORE_ADDR load_addr = 0; in enable_break() local
1064 load_addr = LM_ADDR (inferior_sos); in enable_break()
1074 load_addr = (read_pc () in enable_break()
1083 bfd_section_vma (tmp_bfd, interp_sect) + load_addr; in enable_break()
1091 bfd_section_vma (tmp_bfd, interp_sect) + load_addr; in enable_break()
1119 create_solib_event_breakpoint (load_addr + sym_addr); in enable_break()
H A Dwin32-nat.c519 DWORD load_addr; member
588 register_loaded_dll (const char *name, DWORD load_addr) in register_loaded_dll() argument
620 so->load_addr = load_addr; in register_loaded_dll()
621 if (VirtualQueryEx (current_process_handle, (void *) load_addr, &m, in register_loaded_dll()
625 so->end_addr = load_addr + 0x2000; /* completely arbitrary */ in register_loaded_dll()
713 if (so->next->load_addr == lpBaseOfDll) in handle_unload_dll()
734 if (address >= so->load_addr && address <= so->end_addr) in solib_address()
819 solib_symbols_add (char *name, int from_tty, CORE_ADDR load_addr) in solib_symbols_add() argument
844 addrs = get_relocated_section_addrs (abfd, load_addr); in solib_symbols_add()
863 addrs->other[0].addr = load_addr; in solib_symbols_add()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DSectionLoadList.h46 bool ResolveLoadAddress(lldb::addr_t load_addr, Address &so_addr,
50 lldb::addr_t load_addr,
57 lldb::addr_t load_addr);
H A DSectionLoadHistory.h50 bool ResolveLoadAddress(uint32_t stop_id, lldb::addr_t load_addr,
55 lldb::addr_t load_addr,
62 lldb::addr_t load_addr);
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBAddress.cpp41 SBAddress::SBAddress(lldb::addr_t load_addr, lldb::SBTarget &target) in SBAddress() argument
43 SetLoadAddress(load_addr, target); in SBAddress()
115 void SBAddress::SetLoadAddress(lldb::addr_t load_addr, lldb::SBTarget &target) { in SetLoadAddress() argument
119 *this = target.ResolveLoadAddress(load_addr); in SetLoadAddress()
127 m_opaque_ap->SetOffset(load_addr); in SetLoadAddress()
H A DSBMemoryRegionInfo.cpp88 const addr_t load_addr = m_opaque_ap->GetRange().base; in GetDescription() local
90 strm.Printf("[0x%16.16" PRIx64 "-0x%16.16" PRIx64 " ", load_addr, in GetDescription()
91 load_addr + m_opaque_ap->GetRange().size); in GetDescription()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
H A DDynamicLoaderWindowsDYLD.cpp86 lldb::addr_t load_addr; in DidAttach() local
87 Status error = m_process->GetFileLoadAddress(file_spec, is_loaded, load_addr); in DidAttach()
89 base_addr = load_addr; in DidAttach()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Architecture/Arm/
H A DArchitectureArm.h28 lldb::addr_t GetCallableLoadAddress(lldb::addr_t load_addr,
31 lldb::addr_t GetOpcodeLoadAddress(lldb::addr_t load_addr,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Architecture/Mips/
H A DArchitectureMips.h32 lldb::addr_t GetCallableLoadAddress(lldb::addr_t load_addr,
35 lldb::addr_t GetOpcodeLoadAddress(lldb::addr_t load_addr,
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DAddress.h430 bool SetLoadAddress(lldb::addr_t load_addr, Target *target,
434 lldb::addr_t load_addr, Target *target,
438 bool SetCallableLoadAddress(lldb::addr_t load_addr, Target *target);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp441 Status NativeProcessNetBSD::GetMemoryRegionInfo(lldb::addr_t load_addr, in GetMemoryRegionInfo() argument
468 if (load_addr < proc_entry_info.GetRange().GetRangeBase()) { in GetMemoryRegionInfo()
469 range_info.GetRange().SetRangeBase(load_addr); in GetMemoryRegionInfo()
471 proc_entry_info.GetRange().GetRangeBase() - load_addr); in GetMemoryRegionInfo()
477 } else if (proc_entry_info.GetRange().Contains(load_addr)) { in GetMemoryRegionInfo()
488 range_info.GetRange().SetRangeBase(load_addr); in GetMemoryRegionInfo()
593 lldb::addr_t &load_addr) { in GetFileLoadAddress() argument
594 load_addr = LLDB_INVALID_ADDRESS; in GetFileLoadAddress()
H A DNativeProcessNetBSD.h55 Status GetMemoryRegionInfo(lldb::addr_t load_addr,
82 lldb::addr_t &load_addr) override;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/
H A DMinidumpParser.h92 MemoryRegionInfo GetMemoryRegionInfo(lldb::addr_t load_addr);
109 MemoryRegionInfo FindMemoryRegion(lldb::addr_t load_addr) const;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBAddress.h27 SBAddress(lldb::addr_t load_addr, lldb::SBTarget &target);
43 void SetLoadAddress(lldb::addr_t load_addr, lldb::SBTarget &target);
/freebsd-12.1/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)) in pfctl_table()
218 if (load_addr(&b, argc, argv, file, 0)) in pfctl_table()
232 if (load_addr(&b, argc, argv, file, 0)) in pfctl_table()
325 if (load_addr(&b, argc, argv, file, 1)) in pfctl_table()
416 load_addr(struct pfr_buffer *b, int argc, char *argv[], char *file, in load_addr() function

123