Home
last modified time | relevance | path

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

1234

/freebsd-13-stable/sys/contrib/octeon-sdk/
HDcvmx-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()
157 load_addr.sstatus.mem_region = CVMX_IO_SEG; in __cvmx_pow_capture_v1()
158 load_addr.sstatus.is_io = 1; in __cvmx_pow_capture_v1()
159 load_addr.sstatus.did = CVMX_OCT_DID_TAG_TAG1; in __cvmx_pow_capture_v1()
160 load_addr.sstatus.coreid = core; in __cvmx_pow_capture_v1()
163 load_addr.sstatus.get_rev = (bits & 1) != 0; in __cvmx_pow_capture_v1()
164 load_addr.sstatus.get_cur = (bits & 2) != 0; in __cvmx_pow_capture_v1()
165 load_addr.sstatus.get_wqp = (bits & 4) != 0; in __cvmx_pow_capture_v1()
166 if ((load_addr.sstatus.get_cur == 0) && load_addr.sstatus.get_rev) in __cvmx_pow_capture_v1()
[all …]
HDcvmx-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()
1362 load_addr.sstatus_cn68xx.mem_region = CVMX_IO_SEG; in cvmx_pow_get_current_tag()
1363 load_addr.sstatus_cn68xx.is_io = 1; in cvmx_pow_get_current_tag()
1364 load_addr.sstatus_cn68xx.did = CVMX_OCT_DID_TAG_TAG5; in cvmx_pow_get_current_tag()
1365 load_addr.sstatus_cn68xx.coreid = cvmx_get_core_num(); in cvmx_pow_get_current_tag()
1366 load_addr.sstatus_cn68xx.opcode = 3; in cvmx_pow_get_current_tag()
1367 load_resp.u64 = cvmx_read_csr(load_addr.u64); in cvmx_pow_get_current_tag()
1374 load_addr.u64 = 0; in cvmx_pow_get_current_tag()
1375 load_addr.sstatus.mem_region = CVMX_IO_SEG; in cvmx_pow_get_current_tag()
[all …]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
HDSectionLoadList.cpp65 addr_t load_addr, in SetSectionLoadAddress() argument
73 load_addr, module_sp.get()); in SetSectionLoadAddress()
83 if (load_addr == sta_pos->second) in SetSectionLoadAddress()
86 sta_pos->second = load_addr; in SetSectionLoadAddress()
88 m_sect_to_addr[section.get()] = load_addr; in SetSectionLoadAddress()
91 addr_to_sect_collection::iterator ats_pos = m_addr_to_sect.find(load_addr); in SetSectionLoadAddress()
111 load_addr, module_sp->GetFileSpec().GetFilename().GetCString(), in SetSectionLoadAddress()
129 m_addr_to_sect[load_addr] = section; in SetSectionLoadAddress()
140 section->GetName().AsCString(), load_addr); in SetSectionLoadAddress()
171 addr_t load_addr = sta_pos->second; in SetSectionUnloaded() local
[all …]
HDSectionLoadHistory.cpp114 bool SectionLoadHistory::ResolveLoadAddress(uint32_t stop_id, addr_t load_addr, in ResolveLoadAddress() argument
121 return section_load_list->ResolveLoadAddress(load_addr, so_addr); in ResolveLoadAddress()
125 uint32_t stop_id, const lldb::SectionSP &section_sp, addr_t load_addr, in SetSectionLoadAddress() argument
131 return section_load_list->SetSectionLoadAddress(section_sp, load_addr, in SetSectionLoadAddress()
147 addr_t load_addr) { in SetSectionUnloaded() argument
152 return section_load_list->SetSectionUnloaded(section_sp, load_addr); in SetSectionUnloaded()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
HDDynamicLoaderWindowsDYLD.cpp103 lldb::addr_t load_addr = LLDB_INVALID_ADDRESS; in GetLoadAddress() local
110 m_process->GetFileLoadAddress(file_spec, is_loaded, load_addr); in GetLoadAddress()
112 if (status.Success() && is_loaded && load_addr != LLDB_INVALID_ADDRESS) { in GetLoadAddress()
113 m_loaded_modules[executable] = load_addr; in GetLoadAddress()
114 return load_addr; in GetLoadAddress()
131 lldb::addr_t load_addr = GetLoadAddress(executable); in DidAttach() local
132 if (load_addr == LLDB_INVALID_ADDRESS) in DidAttach()
137 if (image_base == load_addr) in DidAttach()
141 UpdateLoadedSections(executable, LLDB_INVALID_ADDRESS, load_addr, false); in DidAttach()
158 lldb::addr_t load_addr = GetLoadAddress(executable); in DidLaunch() local
[all …]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Expression/
HDMaterializer.cpp154 const lldb::addr_t load_addr = process_address + m_offset; in Materialize() local
160 (uint64_t)load_addr, in Materialize()
183 load_addr, in Materialize()
206 const lldb::addr_t load_addr = process_address + m_offset; in Dematerialize() local
235 map.ReadPointerFromMemory(&location, load_addr, read_error); in Dematerialize()
353 const lldb::addr_t load_addr = process_address + m_offset; in DumpToLog() local
356 load_addr, in DumpToLog()
364 map.ReadMemory(data.GetBytes(), load_addr, m_size, err); in DumpToLog()
370 load_addr); in DumpToLog()
381 map.ReadPointerFromMemory(&target_address, load_addr, err); in DumpToLog()
[all …]
HDDWARFExpressionList.cpp59 lldb::addr_t load_addr) const { in GetExpressionAtAddress()
64 addr_t addr = load_addr - func_load_addr + m_func_file_addr; in GetExpressionAtAddress()
73 lldb::addr_t load_addr) { in GetMutableExpressionAtAddress() argument
78 addr_t addr = load_addr - func_load_addr + m_func_file_addr; in GetMutableExpressionAtAddress()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
HDAddressRange.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()
HDAddress.cpp361 bool Address::SetCallableLoadAddress(lldb::addr_t load_addr, Target *target) { in SetCallableLoadAddress() argument
362 if (SetLoadAddress(load_addr, target)) { in SetCallableLoadAddress()
381 bool Address::SetOpcodeLoadAddress(lldb::addr_t load_addr, Target *target, in SetOpcodeLoadAddress() argument
384 if (SetLoadAddress(load_addr, target, allow_section_end)) { in SetOpcodeLoadAddress()
471 addr_t load_addr = GetLoadAddress(target); in Dump() local
485 load_addr = GetCallableLoadAddress(target); in Dump()
488 if (load_addr == LLDB_INVALID_ADDRESS) { in Dump()
493 DumpAddress(s->AsRawOstream(), load_addr, addr_size); in Dump()
781 addr_t load_addr = GetLoadAddress(target); in Dump() local
782 if (load_addr != LLDB_INVALID_ADDRESS) { in Dump()
[all …]
HDValueObjectMemory.cpp197 lldb::addr_t load_addr = m_address.GetLoadAddress(target); in UpdateValue() local
198 if (load_addr != LLDB_INVALID_ADDRESS) { in UpdateValue()
200 m_value.GetScalar() = load_addr; in UpdateValue()
/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
HDSBAddress.cpp43 SBAddress::SBAddress(lldb::addr_t load_addr, lldb::SBTarget &target) in SBAddress() argument
45 LLDB_INSTRUMENT_VA(this, load_addr, target); in SBAddress()
47 SetLoadAddress(load_addr, target); in SBAddress()
122 void SBAddress::SetLoadAddress(lldb::addr_t load_addr, lldb::SBTarget &target) { in SetLoadAddress() argument
123 LLDB_INSTRUMENT_VA(this, load_addr, target); in SetLoadAddress()
128 *this = target.ResolveLoadAddress(load_addr); in SetLoadAddress()
136 m_opaque_up->SetOffset(load_addr); in SetLoadAddress()
HDSBMemoryRegionInfo.cpp167 const addr_t load_addr = m_opaque_up->GetRange().base; in GetDescription() local
169 strm.Printf("[0x%16.16" PRIx64 "-0x%16.16" PRIx64 " ", load_addr, in GetDescription()
170 load_addr + m_opaque_up->GetRange().size); in GetDescription()
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Target/
HDSectionLoadList.h43 bool ResolveLoadAddress(lldb::addr_t load_addr, Address &so_addr,
47 lldb::addr_t load_addr,
54 lldb::addr_t load_addr);
HDSectionLoadHistory.h47 bool ResolveLoadAddress(uint32_t stop_id, lldb::addr_t load_addr,
52 lldb::addr_t load_addr,
59 lldb::addr_t load_addr);
/freebsd-13-stable/contrib/llvm-project/lldb/bindings/interface/
HDSBAddressExtensions.i21 def __set_load_addr_property__ (self, load_addr):
25 return self.SetLoadAddress (load_addr, target)
52load_addr = property(__get_load_addr_property__, __set_load_addr_property__, doc='''A read/write p…
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
HDProcessMinidump.cpp345 addr_t load_addr = load_list.GetSectionLoadAddress(section_sp); in BuildMemoryRegions() local
346 if (load_addr == LLDB_INVALID_ADDRESS) in BuildMemoryRegions()
348 MemoryRegionInfo::RangeType section_range(load_addr, in BuildMemoryRegions()
351 MinidumpParser::GetMemoryRegionInfo(*m_memory_regions, load_addr); in BuildMemoryRegions()
369 Status ProcessMinidump::DoGetMemoryRegionInfo(lldb::addr_t load_addr, in DoGetMemoryRegionInfo() argument
372 region = MinidumpParser::GetMemoryRegionInfo(*m_memory_regions, load_addr); in DoGetMemoryRegionInfo()
463 const uint64_t load_addr = module->BaseOfImage; in ReadModuleList() local
466 load_addr, load_addr + load_size, load_size); in ReadModuleList()
510 load_addr) in ReadModuleList()
528 module_spec, load_addr, load_size); in ReadModuleList()
[all …]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/nsan/
HDnsan.cpp246 static const u8 *getShadowPtrForLoad(const u8 *load_addr, uptr n) { in getShadowPtrForLoad() argument
247 const u8 *const shadow_type = GetShadowTypeAddrFor(load_addr); in getShadowPtrForLoad()
257 if (!IsZero<sizeof(FT)>(load_addr)) { in getShadowPtrForLoad()
269 return GetShadowAddrFor(load_addr); in getShadowPtrForLoad()
273 __nsan_get_shadow_ptr_for_float_load(const u8 *load_addr, uptr n) { in __nsan_get_shadow_ptr_for_float_load() argument
274 return getShadowPtrForLoad<float>(load_addr, n); in __nsan_get_shadow_ptr_for_float_load()
278 __nsan_get_shadow_ptr_for_double_load(const u8 *load_addr, uptr n) { in __nsan_get_shadow_ptr_for_double_load() argument
279 return getShadowPtrForLoad<double>(load_addr, n); in __nsan_get_shadow_ptr_for_double_load()
283 __nsan_get_shadow_ptr_for_longdouble_load(const u8 *load_addr, uptr n) { in __nsan_get_shadow_ptr_for_longdouble_load() argument
284 return getShadowPtrForLoad<long double>(load_addr, n); in __nsan_get_shadow_ptr_for_longdouble_load()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Architecture/Arm/
HDArchitectureArm.h26 lldb::addr_t GetCallableLoadAddress(lldb::addr_t load_addr,
29 lldb::addr_t GetOpcodeLoadAddress(lldb::addr_t load_addr,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/scripted/
HDScriptedProcess.cpp286 Status ScriptedProcess::DoGetMemoryRegionInfo(lldb::addr_t load_addr, in DoGetMemoryRegionInfo() argument
290 GetInterface().GetMemoryRegionContainingAddress(load_addr, error)) in DoGetMemoryRegionInfo()
472 lldb::addr_t load_addr = LLDB_INVALID_ADDRESS; in GetLoadedDynamicLibrariesInfos() local
474 dict->GetValueForKeyAsInteger("load_addr", load_addr); in GetLoadedDynamicLibrariesInfos()
476 if (load_addr == LLDB_INVALID_ADDRESS) in GetLoadedDynamicLibrariesInfos()
481 load_addr += slide; in GetLoadedDynamicLibrariesInfos()
484 module_sp->SetLoadAddress(target, load_addr, false /*=value_is_offset*/, in GetLoadedDynamicLibrariesInfos()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Architecture/Mips/
HDArchitectureMips.h30 lldb::addr_t GetCallableLoadAddress(lldb::addr_t load_addr,
33 lldb::addr_t GetOpcodeLoadAddress(lldb::addr_t load_addr,
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
HDAddress.h416 bool SetLoadAddress(lldb::addr_t load_addr, Target *target,
420 lldb::addr_t load_addr, Target *target,
424 bool SetCallableLoadAddress(lldb::addr_t load_addr, Target *target);
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/API/
HDSBAddress.h26 SBAddress(lldb::addr_t load_addr, lldb::SBTarget &target);
48 void SetLoadAddress(lldb::addr_t load_addr, lldb::SBTarget &target);
/freebsd-13-stable/sbin/pfctl/
HDpfctl_table.c62 static int load_addr(struct pfr_buffer *, int, char *[], char *, int);
202 if (load_addr(&b, argc, argv, file, 0)) in pfctl_table()
217 if (load_addr(&b, argc, argv, file, 0)) in pfctl_table()
231 if (load_addr(&b, argc, argv, file, 0)) in pfctl_table()
354 if (load_addr(&b, argc, argv, file, 1)) in pfctl_table()
381 if (load_addr(&b, argc, argv, file, 0)) in pfctl_table()
458 load_addr(struct pfr_buffer *b, int argc, char *argv[], char *file, in load_addr() function
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
HDTraceIntelPTBundleSaver.cpp264 lldb::addr_t load_addr = LLDB_INVALID_ADDRESS; in BuildModulesSection() local
268 load_addr = base_addr.GetLoadAddress(&process.GetTarget()); in BuildModulesSection()
270 if (load_addr == LLDB_INVALID_ADDRESS) in BuildModulesSection()
286 JSONUINT64{load_addr}, module_sp->GetUUID().GetAsString()}); in BuildModulesSection()
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Expression/
HDDWARFExpressionList.h69 lldb::addr_t load_addr) const;
75 lldb::addr_t load_addr = 0);

1234