| /openbsd-src/gnu/usr.bin/binutils/gdb/ |
| H A D | dwarf2loc.c | 378 LONGEST frame_offset; in dwarf2_tracepoint_var_ref() local 381 buf_end = read_sleb128 (data + 1, data + size, &frame_offset); in dwarf2_tracepoint_var_ref() 386 TARGET_VIRTUAL_FRAME_POINTER (ax->scope, &frame_reg, &frame_offset); in dwarf2_tracepoint_var_ref() 388 ax_const_l (ax, frame_offset); in dwarf2_tracepoint_var_ref() 391 ax_const_l (ax, frame_offset); in dwarf2_tracepoint_var_ref()
|
| H A D | tracepoint.c | 1178 long frame_regno, long frame_offset) in collect_symbol() argument 1226 offset = frame_offset + SYMBOL_VALUE (sym); in collect_symbol() 1251 offset = frame_offset + SYMBOL_VALUE (sym); in collect_symbol() 1287 long frame_regno, long frame_offset, int type) in add_local_symbols() argument 1312 collect_symbol (collect, sym, frame_regno, frame_offset); in add_local_symbols() 1324 collect_symbol (collect, sym, frame_regno, frame_offset); in add_local_symbols() 1488 LONGEST frame_offset; in encode_actions() local 1498 TARGET_VIRTUAL_FRAME_POINTER (t->address, &frame_reg, &frame_offset); in encode_actions() 1533 frame_offset, in encode_actions() 1542 frame_offset, in encode_actions() [all …]
|
| H A D | ax-gdb.c | 462 LONGEST frame_offset; in gen_frame_args_address() local 464 TARGET_VIRTUAL_FRAME_POINTER (ax->scope, &frame_reg, &frame_offset); in gen_frame_args_address() 466 gen_offset (ax, frame_offset); in gen_frame_args_address() 476 LONGEST frame_offset; in gen_frame_locals_address() local 478 TARGET_VIRTUAL_FRAME_POINTER (ax->scope, &frame_reg, &frame_offset); in gen_frame_locals_address() 480 gen_offset (ax, frame_offset); in gen_frame_locals_address()
|
| H A D | arch-utils.c | 256 LONGEST *frame_offset) in legacy_virtual_frame_pointer() argument 271 *frame_offset = 0; in legacy_virtual_frame_pointer()
|
| H A D | mips-tdep.c | 1423 long frame_offset = 0; /* Size of stack frame. */ in mips16_scan_prologue() local 1473 frame_offset -= offset; in mips16_scan_prologue() 1558 frame_offset += 32; in mips16_scan_prologue() 1562 sp += frame_offset; in mips16_scan_prologue() 1591 + frame_offset - frame_adjust); in mips16_scan_prologue() 1741 long frame_offset; in mips32_scan_prologue() local 1760 frame_offset = 0; in mips32_scan_prologue() 1779 frame_offset += 0x10000 - low_word; in mips32_scan_prologue() 1799 if ((long) low_word != frame_offset) in mips32_scan_prologue() 1900 + frame_offset); in mips32_scan_prologue()
|
| H A D | gdbarch.h | 313 …oid (gdbarch_virtual_frame_pointer_ftype) (CORE_ADDR pc, int *frame_regnum, LONGEST *frame_offset); 314 …al_frame_pointer (struct gdbarch *gdbarch, CORE_ADDR pc, int *frame_regnum, LONGEST *frame_offset); 320 …AME_POINTER(pc, frame_regnum, frame_offset) (gdbarch_virtual_frame_pointer (current_gdbarch, pc, f… argument
|
| H A D | gdbarch.sh | 425 …rame_pointer:CORE_ADDR pc, int *frame_regnum, LONGEST *frame_offset:pc, frame_regnum, frame_offset…
|
| H A D | gdbarch.c | 1627 XSTRING (TARGET_VIRTUAL_FRAME_POINTER (pc, frame_regnum, frame_offset))); in gdbarch_dump() 1984 …ual_frame_pointer (struct gdbarch *gdbarch, CORE_ADDR pc, int *frame_regnum, LONGEST *frame_offset) in gdbarch_virtual_frame_pointer() argument 1990 gdbarch->virtual_frame_pointer (pc, frame_regnum, frame_offset); in gdbarch_virtual_frame_pointer()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/PECOFF/ |
| H A D | PECallFrameInfo.cpp | 30 uint32_t frame_offset; member 380 it->frame_offset); in BuildUnwindPlanRow() 399 rsp_frame_offset += it->frame_offset; in BuildUnwindPlanRow() 402 rsp_frame_offset += it->frame_offset; in BuildUnwindPlanRow() 406 it->reg, it->frame_offset - cfa_frame_offset, false); in BuildUnwindPlanRow() 425 result += it->frame_offset; in GetCFAFrameOffset()
|
| /openbsd-src/gnu/llvm/lldb/examples/python/ |
| H A D | crashlog.py | 538 frame_offset = int(json_frame['imageOffset']) 540 pc = image_addr + frame_offset 541 thread.frames.append(self.crashlog.Frame(idx, pc, frame_offset)) 555 frame_offset = pc - text_lo 556 thread.frames.append(self.crashlog.Frame(idx, pc, frame_offset)) 928 frame_offset = 0 934 frame_offset = frame_pc - block_start_addr.GetLoadAddress(target) 936 frame_offset = frame_pc - frame.function.addr.GetLoadAddress(target) 938 frame_offset = frame_pc - frame.symbol.addr.GetLoadAddress(target) 942 if frame_offset > 0: [all …]
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | cfgexpand.c | 181 new_frame_offset = frame_offset; in alloc_stack_frame_space() 198 frame_offset = new_frame_offset; in alloc_stack_frame_space() 200 if (frame_offset_overflow (frame_offset, cfun->decl)) in alloc_stack_frame_space() 201 frame_offset = offset = 0; in alloc_stack_frame_space() 1164 frame_offset += align - 1; in expand_used_vars() 1165 frame_offset &= -align; in expand_used_vars()
|
| H A D | function.h | 516 #define frame_offset (cfun->x_frame_offset) macro
|
| H A D | function.c | 481 (frame_offset + bigend_correction in assign_stack_local_1() 702 HOST_WIDE_INT frame_offset_old = frame_offset; in assign_stack_temp_for_type() 730 p->size = frame_offset_old - frame_offset; in assign_stack_temp_for_type() 737 p->base_offset = frame_offset; in assign_stack_temp_for_type() 738 p->full_size = frame_offset_old - frame_offset; in assign_stack_temp_for_type() 743 p->full_size = frame_offset - frame_offset_old; in assign_stack_temp_for_type()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/hwasan/scripts/ |
| H A D | hwasan_symbolize | 335 frame_offset = local[3] 337 if frame_offset is None or size is None: 339 obj_offset = (self.__last_access_address - fp - frame_offset) & fp_mask
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_symbolizer.h | 95 sptr frame_offset; member
|
| H A D | sanitizer_symbolizer_libcdep.cpp | 401 str = ExtractSptr(str, " ", &local.frame_offset); in ParseSymbolizeFrameOutput()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | protector.c | 182 sweep_frame_offset = frame_offset; 210 sweep_frame_offset = CEIL_ROUND (frame_offset, 224 sweep_frame_offset = frame_offset; 2047 saved_frame_offset = frame_offset; 2048 frame_offset = push_frame_offset; 2052 push_frame_offset = frame_offset; 2053 frame_offset = saved_frame_offset;
|
| H A D | function.h | 562 #define frame_offset (cfun->x_frame_offset) macro
|
| H A D | sibcall.c | 687 || frame_offset in optimize_sibling_and_tail_recursive_calls()
|
| H A D | function.c | 600 (frame_offset + bigend_correction 739 HOST_WIDE_INT frame_offset_old = frame_offset; 768 p->size = frame_offset_old - frame_offset; 775 p->base_offset = frame_offset; 776 p->full_size = frame_offset_old - frame_offset; 779 p->full_size = frame_offset - frame_offset_old; 6362 frame_offset = 0; in prepare_function_start()
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/gas/config/ |
| H A D | tc-iq2000.c | 80 unsigned long frame_offset; member
|
| H A D | tc-mips.c | 13978 unsigned long frame_offset; member 14214 md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4); in s_mips_end() 14302 cur_proc_ptr->frame_offset = val; in s_mips_frame()
|
| /openbsd-src/gnu/usr.bin/binutils/gas/config/ |
| H A D | tc-iq2000.c | 80 unsigned long frame_offset; member
|
| H A D | tc-mips.c | 13863 unsigned long frame_offset; member 14084 md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4); in s_mips_end() 14172 cur_proc_ptr->frame_offset = val; in s_mips_frame()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/hwasan/ |
| H A D | hwasan_report.cpp | 217 (untagged_addr - fp - local.frame_offset) & (kRecordFPModulus - 1); in PrintStackAllocations()
|