HomeSort by: relevance | last modified time | path
    Searched refs:next_frame (Results 1 - 25 of 79) sorted by relevancy

1 2 3 4

  /src/external/gpl3/gdb.old/dist/gdb/
microblaze-linux-tdep.c 64 microblaze_linux_sigtramp_cache (const frame_info_ptr &next_frame,
73 base = frame_unwind_register_unsigned (next_frame, MICROBLAZE_SP_REGNUM);
74 if (bias > 0 && get_frame_address_in_block (next_frame) != func)
92 const frame_info_ptr &next_frame,
96 microblaze_linux_sigtramp_cache (next_frame, this_cache, func,
inline-frame.c 222 frame_info_ptr next_frame; local
245 for (next_frame = get_next_frame (this_frame);
246 next_frame && get_frame_type (next_frame) == INLINE_FRAME;
247 next_frame = get_next_frame (next_frame))
256 if (state != NULL && state->skipped_frames > 0 && next_frame == NULL)
506 frame_info_ptr next_frame; local
511 for (next_frame = get_next_frame (this_frame);
512 next_frame && get_frame_type (next_frame) == INLINE_FRAME
    [all...]
frame.c 666 get_stack_frame_id (const frame_info_ptr &next_frame)
668 return get_frame_id (skip_artificial_frames (next_frame));
679 frame_info_ptr next_frame = skip_artificial_frames (initial_next_frame); local
680 if (next_frame == NULL)
683 frame_info_ptr this_frame = get_prev_frame_always (next_frame);
1059 frame_info *next_frame = this_frame->next; local
1061 if (next_frame->prev_func.status == CC_UNKNOWN)
1069 next_frame->prev_func.status = CC_UNAVAILABLE;
1076 next_frame->prev_func.status = CC_VALUE;
1077 next_frame->prev_func.addr = get_pc_function_start (addr_in_block)
2871 frame_info_ptr next_frame; local
3109 frame_info_ptr next_frame = skip_artificial_frames (initial_next_frame); local
    [all...]
sh-netbsd-tdep.c 166 const frame_info_ptr& next_frame,
170 struct gdbarch *gdbarch = get_frame_arch (next_frame);
173 CORE_ADDR sp = get_frame_register_unsigned (next_frame, sp_regnum);
findvar.c 51 value_of_register (int regnum, const frame_info_ptr &next_frame)
53 gdbarch *gdbarch = frame_unwind_arch (next_frame);
58 return value_of_user_reg (regnum, get_prev_frame_always (next_frame));
60 value *reg_val = value_of_register_lazy (next_frame, regnum);
68 value_of_register_lazy (const frame_info_ptr &next_frame, int regnum)
70 gdbarch *gdbarch = frame_unwind_arch (next_frame);
73 gdb_assert (next_frame != nullptr);
75 return value::allocate_register_lazy (next_frame, regnum);
558 frame_info_ptr next_frame = frame_find_by_id (value->next_frame_id ());
559 gdb_assert (next_frame != nullptr)
557 frame_info_ptr next_frame = frame_find_by_id (value->next_frame_id ()); local
    [all...]
microblaze-tdep.c 377 microblaze_unwind_pc (struct gdbarch *gdbarch, const frame_info_ptr &next_frame)
382 frame_unwind_register (next_frame, MICROBLAZE_PC_REGNUM, buf);
387 if (frame_relative_level (next_frame) >= 0)
426 microblaze_frame_cache (const frame_info_ptr &next_frame, void **this_cache)
429 struct gdbarch *gdbarch = get_frame_arch (next_frame);
437 cache->saved_regs = trad_frame_alloc_saved_regs (next_frame);
444 get_frame_func (next_frame);
446 cache->pc = get_frame_address_in_block (next_frame);
452 microblaze_frame_this_id (const frame_info_ptr &next_frame, void **this_cache,
456 microblaze_frame_cache (next_frame, this_cache)
    [all...]
frame.h 603 extern frame_id frame_unwind_caller_id (const frame_info_ptr &next_frame);
703 extern void frame_unwind_register (const frame_info_ptr &next_frame,
708 struct value *frame_unwind_register_value (const frame_info_ptr &next_frame,
713 extern LONGEST frame_unwind_register_signed (const frame_info_ptr &next_frame,
718 (const frame_info_ptr &next_frame, int regnum);
730 /* The reverse. Store a register value relative to NEXT_FRAME's previous frame.
733 extern void put_frame_register (const frame_info_ptr &next_frame, int regnum,
737 NEXT_FRAME's previous frame, starting at OFFSET, into BUF. If the register
740 extern bool get_frame_register_bytes (const frame_info_ptr &next_frame,
746 in NEXT_FRAME's previous frame, starting at OFFSET. *
    [all...]
frame-unwind.h 77 const frame_info_ptr &next_frame);
83 const frame_info_ptr &next_frame);
frame-unwind.c 243 default_unwind_pc (struct gdbarch *gdbarch, const frame_info_ptr &next_frame)
246 CORE_ADDR pc = frame_unwind_register_unsigned (next_frame, pc_regnum);
254 default_unwind_sp (struct gdbarch *gdbarch, const frame_info_ptr &next_frame)
257 return frame_unwind_register_unsigned (next_frame, sp_regnum);
sparc64-tdep.h 134 const frame_info_ptr &next_frame);
value.h 163 to NEXT_FRAME. If TYPE is non-nullptr, use it as the value type.
165 static struct value *allocate_register_lazy (const frame_info_ptr &next_frame,
172 static struct value *allocate_register (const frame_info_ptr &next_frame,
1145 previous to NEXT_FRAME. */
1147 extern value *value_of_register (int regnum, const frame_info_ptr &next_frame);
1151 extern value *value_of_register_lazy (const frame_info_ptr &next_frame, int regnum);
1687 value *pseudo_from_raw_part (const frame_info_ptr &next_frame, int pseudo_reg_num,
1693 void pseudo_to_raw_part (const frame_info_ptr &next_frame,
1703 value *pseudo_from_concat_raw (const frame_info_ptr &next_frame, int pseudo_reg_num,
1709 void pseudo_to_concat_raw (const frame_info_ptr &next_frame,
    [all...]
hppa-tdep.h 211 const frame_info_ptr &next_frame);
  /src/external/gpl3/gdb/dist/gdb/
microblaze-linux-tdep.c 68 microblaze_linux_sigtramp_cache (const frame_info_ptr &next_frame,
77 base = frame_unwind_register_unsigned (next_frame, MICROBLAZE_SP_REGNUM);
78 if (bias > 0 && get_frame_address_in_block (next_frame) != func)
96 const frame_info_ptr &next_frame,
100 microblaze_linux_sigtramp_cache (next_frame, this_cache, func,
inline-frame.c 222 frame_info_ptr next_frame; local
245 for (next_frame = get_next_frame (this_frame);
246 next_frame && get_frame_type (next_frame) == INLINE_FRAME;
247 next_frame = get_next_frame (next_frame))
256 if (state != NULL && state->skipped_frames > 0 && next_frame == NULL)
507 frame_info_ptr next_frame; local
512 for (next_frame = get_next_frame (this_frame);
513 next_frame && get_frame_type (next_frame) == INLINE_FRAME
    [all...]
frame.c 663 get_stack_frame_id (const frame_info_ptr &next_frame)
665 return get_frame_id (skip_artificial_frames (next_frame));
676 frame_info_ptr next_frame = skip_artificial_frames (initial_next_frame); local
677 if (next_frame == NULL)
680 frame_info_ptr this_frame = get_prev_frame_always (next_frame);
1056 frame_info *next_frame = this_frame->next; local
1058 if (next_frame->prev_func.status == CC_UNKNOWN)
1066 next_frame->prev_func.status = CC_UNAVAILABLE;
1073 next_frame->prev_func.status = CC_VALUE;
1074 next_frame->prev_func.addr = get_pc_function_start (addr_in_block)
2869 frame_info_ptr next_frame; local
3104 frame_info_ptr next_frame = skip_artificial_frames (initial_next_frame); local
    [all...]
findvar.c 51 value_of_register (int regnum, const frame_info_ptr &next_frame)
53 gdbarch *gdbarch = frame_unwind_arch (next_frame);
58 return value_of_user_reg (regnum, get_prev_frame_always (next_frame));
60 value *reg_val = value_of_register_lazy (next_frame, regnum);
68 value_of_register_lazy (const frame_info_ptr &next_frame, int regnum)
70 gdbarch *gdbarch = frame_unwind_arch (next_frame);
73 gdb_assert (next_frame != nullptr);
75 return value::allocate_register_lazy (next_frame, regnum);
576 frame_info_ptr next_frame = frame_find_by_id (value->next_frame_id ());
577 gdb_assert (next_frame != nullptr)
575 frame_info_ptr next_frame = frame_find_by_id (value->next_frame_id ()); local
    [all...]
microblaze-tdep.c 377 microblaze_unwind_pc (struct gdbarch *gdbarch, const frame_info_ptr &next_frame)
382 frame_unwind_register (next_frame, MICROBLAZE_PC_REGNUM, buf);
387 if (frame_relative_level (next_frame) >= 0)
426 microblaze_frame_cache (const frame_info_ptr &next_frame, void **this_cache)
429 struct gdbarch *gdbarch = get_frame_arch (next_frame);
437 cache->saved_regs = trad_frame_alloc_saved_regs (next_frame);
444 get_frame_func (next_frame);
446 cache->pc = get_frame_address_in_block (next_frame);
452 microblaze_frame_this_id (const frame_info_ptr &next_frame, void **this_cache,
456 microblaze_frame_cache (next_frame, this_cache)
    [all...]
sh-netbsd-tdep.c 166 const frame_info_ptr& next_frame,
170 struct gdbarch *gdbarch = get_frame_arch (next_frame);
173 CORE_ADDR sp = get_frame_register_unsigned (next_frame, sp_regnum);
frame.h 604 extern frame_id frame_unwind_caller_id (const frame_info_ptr &next_frame);
704 extern void frame_unwind_register (const frame_info_ptr &next_frame,
709 struct value *frame_unwind_register_value (const frame_info_ptr &next_frame,
714 extern LONGEST frame_unwind_register_signed (const frame_info_ptr &next_frame,
719 (const frame_info_ptr &next_frame, int regnum);
731 /* The reverse. Store a register value relative to NEXT_FRAME's previous frame.
734 extern void put_frame_register (const frame_info_ptr &next_frame, int regnum,
738 NEXT_FRAME's previous frame, starting at OFFSET, into BUF. If the register
741 extern bool get_frame_register_bytes (const frame_info_ptr &next_frame,
747 in NEXT_FRAME's previous frame, starting at OFFSET. *
    [all...]
sparc64-tdep.h 134 const frame_info_ptr &next_frame);
frame-unwind.h 77 const frame_info_ptr &next_frame);
83 const frame_info_ptr &next_frame);
value.h 163 to NEXT_FRAME. If TYPE is non-nullptr, use it as the value type.
165 static struct value *allocate_register_lazy (const frame_info_ptr &next_frame,
172 static struct value *allocate_register (const frame_info_ptr &next_frame,
1156 previous to NEXT_FRAME. */
1158 extern value *value_of_register (int regnum, const frame_info_ptr &next_frame);
1162 extern value *value_of_register_lazy (const frame_info_ptr &next_frame, int regnum);
1697 value *pseudo_from_raw_part (const frame_info_ptr &next_frame, int pseudo_reg_num,
1703 void pseudo_to_raw_part (const frame_info_ptr &next_frame,
1713 value *pseudo_from_concat_raw (const frame_info_ptr &next_frame, int pseudo_reg_num,
1719 void pseudo_to_concat_raw (const frame_info_ptr &next_frame,
    [all...]
  /src/crypto/external/apache2/openssl/dist/ssl/quic/
quic_sf_list.c 55 STREAM_FRAME *sf, *next_frame; local
57 for (sf = fl->head; sf != NULL; sf = next_frame) {
58 next_frame = sf->next;
83 STREAM_FRAME *sf, *new_frame, *prev_frame, *next_frame; local
136 for (next_frame = sf;
137 next_frame != NULL && next_frame->range.end <= range->end;) {
138 STREAM_FRAME *drop_frame = next_frame;
140 next_frame = next_frame->next
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/dwarf2/
frame-tailcall.c 216 frame_info_ptr next_frame; local
219 next_frame = get_next_frame (this_frame);
220 gdb_assert (next_frame != NULL);
222 *this_id = get_frame_id (next_frame);
320 frame_info_ptr next_frame; local
328 next_frame = get_next_frame (this_frame);
329 if (next_frame == NULL)
332 cache = cache_find (next_frame);
  /src/external/gpl3/gdb/dist/gdb/dwarf2/
frame-tailcall.c 216 frame_info_ptr next_frame; local
219 next_frame = get_next_frame (this_frame);
220 gdb_assert (next_frame != NULL);
222 *this_id = get_frame_id (next_frame);
320 frame_info_ptr next_frame; local
325 next_frame = get_next_frame (this_frame);
326 if (next_frame == NULL)
329 cache = cache_find (next_frame);

Completed in 115 milliseconds

1 2 3 4