Home
last modified time | relevance | path

Searched refs:start_addr (Results 1 – 25 of 72) sorted by relevance

123

/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectMemoryTag.cpp54 addr_t start_addr = OptionArgParser::ToAddress( in DoExecute() local
56 if (start_addr == LLDB_INVALID_ADDRESS) { in DoExecute()
63 addr_t end_addr = start_addr + 1; in DoExecute()
91 lldb::addr_t logical_tag = tag_manager->GetLogicalTag(start_addr); in DoExecute()
97 start_addr = abi->FixDataAddress(start_addr); in DoExecute()
102 tag_manager->MakeTaggedRange(start_addr, end_addr, memory_regions); in DoExecute()
206 addr_t start_addr = OptionArgParser::ToAddress( in DoExecute() local
208 if (start_addr == LLDB_INVALID_ADDRESS) { in DoExecute()
249 start_addr = abi->FixDataAddress(start_addr); in DoExecute()
259 tag_manager->ExpandToGranule(MemoryTagManager::TagRange(start_addr, 1)) in DoExecute()
H A DCommandObjectDisassemble.cpp74 start_addr = OptionArgParser::ToAddress(execution_context, option_arg, in SetOptionValue()
76 if (start_addr != LLDB_INVALID_ADDRESS) in SetOptionValue()
169 start_addr = LLDB_INVALID_ADDRESS; in OptionParsingStarting()
415 if (m_options.end_addr <= m_options.start_addr) { in GetStartEndAddressRanges()
419 size = m_options.end_addr - m_options.start_addr; in GetStartEndAddressRanges()
421 return std::vector<AddressRange>{{Address(m_options.start_addr), size}}; in GetStartEndAddressRanges()
435 if (m_options.start_addr != LLDB_INVALID_ADDRESS) in GetRangesForSelectedMode()
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Dmemory.py206 start_addr = 0
214 start_addr = int(args[0], 0)
222 start_addr = int(args[0], 0)
224 if start_addr >= end_addr:
227 (start_addr, end_addr), True, result)
229 options.size = end_addr - start_addr
247 bytes = process.ReadMemory(start_addr, options.size, error)
251 start_addr, end_addr), end=' ', file=result)
259 print('%#x: %#x + %u' % (start_addr +
260 match_index, start_addr, match_index), file=result)
H A Dgdb_disassemble.py7 start_addr = lldb.frame.function.addr.load_addr
11 start_addr = lldb.frame.symbol.addr.load_addr
16 inst_offset = inst_addr - start_addr
H A Dsymbolication.py165 def __init__(self, start_addr=None, end_addr=None, name=None): argument
166 self.start_addr = start_addr
184 return self.start_addr <= addr and addr < self.end_addr
193 self.start_addr = int(addr_match.group('start'), 16)
199 self.start_addr = int(range_match.group('start'), 16)
203 self.end_addr += self.start_addr
217 if self.start_addr is not None:
219 self.name, self.start_addr, self.end_addr)
221 if self.start_addr is not None:
222 return "%s=0x%16.16x" % (self.name, self.start_addr)
[all …]
/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/
H A DVMRange.h31 VMRange(lldb::addr_t start_addr, lldb::addr_t end_addr) in VMRange() argument
32 : m_base_addr(start_addr), in VMRange()
33 m_byte_size(end_addr > start_addr ? end_addr - start_addr : 0) {} in VMRange()
43 void Reset(lldb::addr_t start_addr, lldb::addr_t end_addr) { in Reset() argument
44 SetBaseAddress(start_addr); in Reset()
/openbsd-src/sys/dev/ic/
H A Dsmc93cx6.c96 bus_size_t start_addr, bus_size_t count) in read_seeprom() argument
107 for (k = start_addr; k < count + start_addr; k++) { in read_seeprom()
156 buf[k - start_addr] = v; in read_seeprom()
/openbsd-src/sys/dev/pci/drm/amd/amdgpu/
H A Damdgpu_psp.c760 psp_copy_fw(psp, psp->toc.start_addr, psp->toc.size_bytes); in psp_load_toc()
805 psp->toc.start_addr && in psp_tmr_init()
996 memcpy(psp->fw_pri_buf, psp->rl.start_addr, psp->rl.size_bytes); in psp_rl_load()
1189 psp_copy_fw(psp, context->bin_desc.start_addr, in psp_ta_load()
1240 !psp->xgmi_context.context.bin_desc.start_addr) in psp_xgmi_initialize()
1614 !adev->psp.ras_context.context.bin_desc.start_addr) { in psp_ras_initialize()
1763 !psp->hdcp_context.context.bin_desc.start_addr) { in psp_hdcp_initialize()
1830 !psp->dtm_context.context.bin_desc.start_addr) { in psp_dtm_initialize()
1898 !psp->rap_context.context.bin_desc.start_addr) { in psp_rap_initialize()
1996 !psp->securedisplay_context.context.bin_desc.start_addr) { in psp_securedisplay_initialize()
3580 psp_copy_fw(struct psp_context * psp,uint8_t * start_addr,uint32_t bin_size) psp_copy_fw() argument
[all...]
H A Damdgpu_atomfirmware.c107 u32 start_addr, fw_size, drv_size; in amdgpu_atomfirmware_allocate_fb_v2_1() local
109 start_addr = le32_to_cpu(fw_usage->start_address_in_kb); in amdgpu_atomfirmware_allocate_fb_v2_1()
114 start_addr, in amdgpu_atomfirmware_allocate_fb_v2_1()
118 if ((start_addr & ATOM_VRAM_OPERATION_FLAGS_MASK) == in amdgpu_atomfirmware_allocate_fb_v2_1()
122 adev->mman.fw_vram_usage_start_offset = (start_addr & in amdgpu_atomfirmware_allocate_fb_v2_1()
H A Dpsp_v13_0_4.c113 memcpy(psp->fw_pri_buf, bin_desc->start_addr, bin_desc->size_bytes); in psp_v13_0_4_bootloader_load_component()
176 memcpy(psp->fw_pri_buf, psp->sos.start_addr, psp->sos.size_bytes); in psp_v13_0_4_bootloader_load_sos()
H A Dpsp_v12_0.c93 psp_copy_fw(psp, psp->sys.start_addr, psp->sys.size_bytes); in psp_v12_0_bootloader_load_sysdrv()
132 psp_copy_fw(psp, psp->sos.start_addr, psp->sos.size_bytes); in psp_v12_0_bootloader_load_sos()
H A Dpsp_v3_1.c99 psp_copy_fw(psp, psp->sys.start_addr, psp->sys.size_bytes); in psp_v3_1_bootloader_load_sysdrv()
138 psp_copy_fw(psp, psp->sos.start_addr, psp->sos.size_bytes); in psp_v3_1_bootloader_load_sos()
/openbsd-src/gnu/usr.bin/binutils/gdb/tui/
H A Dtui-disasm.c269 tui_show_disassem (CORE_ADDR start_addr) in tui_show_disassem() argument
271 struct symtab *s = find_pc_symtab (start_addr); in tui_show_disassem()
275 val.addr = start_addr; in tui_show_disassem()
291 tui_show_disassem_and_update_source (CORE_ADDR start_addr) in tui_show_disassem_and_update_source() argument
295 tui_show_disassem (start_addr); in tui_show_disassem_and_update_source()
304 sal = find_pc_line (start_addr, 0); in tui_show_disassem_and_update_source()
/openbsd-src/gnu/llvm/compiler-rt/lib/asan/scripts/
H A Dasan_symbolize.py711 def __init__(self, name, arch, start_addr, end_addr, module_path, uuid): argument
714 self.start_addr = start_addr
728 start_addr=self.start_addr,
739 if not isinstance(self.start_addr, int):
741 if self.start_addr < 0:
745 if self.end_addr <= self.start_addr:
822 …r module_desc in sorted(self._module_name_to_description_map.values(), key=lambda v: v.start_addr):
893 start_addr = int(m_obj.group('start_addr'), base=16)
900 start_addr=start_addr,
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux_libcdep.cpp484 void *start_addr; in GetTls() local
486 __libc_get_static_tls_bounds(&start_addr, &end_addr); in GetTls()
487 *addr = reinterpret_cast<uptr>(start_addr); in GetTls()
489 reinterpret_cast<uptr>(end_addr) - reinterpret_cast<uptr>(start_addr); in GetTls()
1029 static void CreateAliases(uptr start_addr, uptr alias_size, uptr num_aliases) { in CreateAliases() argument
1031 uptr mapped = MmapSharedNoReserve(start_addr, total_size); in CreateAliases()
1032 CHECK_EQ(mapped, start_addr); in CreateAliases()
1035 uptr alias_addr = start_addr + i * alias_size; in CreateAliases()
1036 CHECK_EQ(MremapCreateAlias(start_addr, alias_addr, alias_size), alias_addr); in CreateAliases()
/openbsd-src/sys/arch/riscv64/riscv64/
H A Dsbi.c103 sbi_hsm_hart_start(u_long hart, u_long start_addr, u_long priv) in sbi_hsm_hart_start() argument
107 ret = SBI_CALL3(SBI_EXT_ID_HSM, SBI_HSM_HART_START, hart, start_addr, in sbi_hsm_hart_start()
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dbuildsym.h149 CORE_ADDR start_addr; member
268 extern void start_symtab (char *name, char *dirname, CORE_ADDR start_addr);
H A Dmips-tdep.c1626 CORE_ADDR start_addr; in mips_insn16_frame_cache() local
1628 find_pc_partial_function (pc, NULL, &start_addr, NULL); in mips_insn16_frame_cache()
1629 if (start_addr == 0) in mips_insn16_frame_cache()
1630 start_addr = heuristic_proc_start (pc); in mips_insn16_frame_cache()
1633 if (start_addr == 0) in mips_insn16_frame_cache()
1636 mips16_scan_prologue (start_addr, pc, next_frame, *this_cache); in mips_insn16_frame_cache()
1946 CORE_ADDR start_addr; in mips_insn32_frame_cache() local
1948 find_pc_partial_function (pc, NULL, &start_addr, NULL); in mips_insn32_frame_cache()
1949 if (start_addr == 0) in mips_insn32_frame_cache()
1950 start_addr = heuristic_proc_start (pc); in mips_insn32_frame_cache()
[all …]
H A Dbuildsym.c765 start_symtab (char *name, char *dirname, CORE_ADDR start_addr) in start_symtab() argument
769 last_source_start_addr = start_addr; in start_symtab()
831 cstk->start_addr, end_addr, objfile); in end_symtab()
1064 new->start_addr = valu; in push_context()
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DStackFrameRecognizer.cpp119 Address start_addr = symbol->GetAddress(); in GetRecognizerForFrame() local
140 if (start_addr != current_addr) in GetRecognizerForFrame()
/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
H A DMachVMMemory.cpp137 mach_vm_address_t start_addr = vmRegion.StartAddress(); in GetMemoryRegionInfo() local
138 if (address < start_addr) in GetMemoryRegionInfo()
139 region_info->size = start_addr - address; in GetMemoryRegionInfo()
/openbsd-src/gnu/gcc/gcc/config/pa/
H A Dpa.h944 rtx start_addr = gen_reg_rtx (Pmode); \
968 emit_insn (gen_andsi3 (start_addr, tmp, \
975 emit_insn (gen_dcacheflush (start_addr, end_addr, line_length)); \
976 emit_insn (gen_icacheflush (start_addr, end_addr, line_length, \
1000 emit_insn (gen_anddi3 (start_addr, tmp, \
1007 emit_insn (gen_dcacheflush (start_addr, end_addr, line_length)); \
1008 emit_insn (gen_icacheflush (start_addr, end_addr, line_length, \
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dlibgcc2.c1600 void *start_addr in __clear_cache()
1650 start_addr = (((int) (array + INSN_CACHE_PLANE_SIZE - 1) in __clear_cache()
1665 end_addr = (start_addr & -INSN_CACHE_PLANE_SIZE) + offset; in __clear_cache()
1666 if (end_addr <= start_addr) in __clear_cache()
1671 int addr = start_addr + plane * INSN_CACHE_PLANE_SIZE; in __clear_cache()
1686 ((function_ptr) start_addr) (); in __clear_cache()
1688 start_addr += INSN_CACHE_LINE_WIDTH; in __clear_cache()
1690 while ((start_addr % INSN_CACHE_SIZE) != offset); in __clear_cache()
/openbsd-src/gnu/usr.bin/gcc/gcc/config/pa/
H A Dpa.h1076 rtx start_addr = gen_reg_rtx (Pmode); \
1100 emit_insn (gen_andsi3 (start_addr, tmp, \
1107 emit_insn (gen_dcacheflush (start_addr, end_addr, line_length)); \
1108 emit_insn (gen_icacheflush (start_addr, end_addr, line_length, \
1132 emit_insn (gen_anddi3 (start_addr, tmp, \
1139 emit_insn (gen_dcacheflush (start_addr, end_addr, line_length)); \
1140 emit_insn (gen_icacheflush (start_addr, end_addr, line_length, \
/openbsd-src/sys/dev/pci/
H A Dahd_pci.c666 u_int start_addr; in ahd_check_extport() local
676 start_addr = ((2 * sizeof(*sc)) in ahd_check_extport()
680 start_addr, sizeof(vpd)/2, in ahd_check_extport()
693 start_addr = (sizeof(*sc) / 2) * (ahd->channel - 'A'); in ahd_check_extport()
696 start_addr, sizeof(*sc)/2, in ahd_check_extport()

123