Home
last modified time | relevance | path

Searched refs:this_base (Results 1 – 15 of 15) sorted by relevance

/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dtrad-frame.c30 CORE_ADDR this_base; member
198 CORE_ADDR this_base) in trad_frame_set_this_base() argument
200 this_trad_cache->this_base = this_base; in trad_frame_set_this_base()
206 return this_trad_cache->this_base; in trad_frame_get_this_base()
H A Dm32r-tdep.c515 ULONGEST this_base; in m32r_frame_unwind_cache() local
603 this_base = frame_unwind_register_unsigned (next_frame, M32R_FP_REGNUM); in m32r_frame_unwind_cache()
606 prev_sp = this_base + info->size; in m32r_frame_unwind_cache()
612 this_base = frame_unwind_register_unsigned (next_frame, M32R_SP_REGNUM); in m32r_frame_unwind_cache()
613 prev_sp = this_base + info->size; in m32r_frame_unwind_cache()
618 info->base = this_base; in m32r_frame_unwind_cache()
H A Davr-tdep.c862 ULONGEST this_base; in avr_frame_unwind_cache() local
889 frame_unwind_unsigned_register (next_frame, AVR_FP_REGNUM, &this_base); in avr_frame_unwind_cache()
891 this_base += (high_base << 8); in avr_frame_unwind_cache()
895 prev_sp = this_base + info->size; in avr_frame_unwind_cache()
901 frame_unwind_unsigned_register (next_frame, AVR_SP_REGNUM, &this_base); in avr_frame_unwind_cache()
902 prev_sp = this_base + info->size; in avr_frame_unwind_cache()
909 info->base = avr_make_saddr (this_base); in avr_frame_unwind_cache()
H A Dm68hc11-tdep.c789 ULONGEST this_base; in m68hc11_frame_unwind_cache() local
809 frame_unwind_unsigned_register (next_frame, SOFT_FP_REGNUM, &this_base); in m68hc11_frame_unwind_cache()
810 if (this_base == 0) in m68hc11_frame_unwind_cache()
825 frame_unwind_unsigned_register (next_frame, HARD_SP_REGNUM, &this_base); in m68hc11_frame_unwind_cache()
826 prev_sp = this_base + info->sp_offset + 2; in m68hc11_frame_unwind_cache()
827 this_base += STACK_CORRECTION; in m68hc11_frame_unwind_cache()
833 prev_sp = this_base + info->size + 2; in m68hc11_frame_unwind_cache()
835 this_base += STACK_CORRECTION; in m68hc11_frame_unwind_cache()
860 info->base = this_base; in m68hc11_frame_unwind_cache()
867 info->saved_regs[i].addr += this_base; in m68hc11_frame_unwind_cache()
H A Dfrv-tdep.c940 ULONGEST this_base; in frv_analyze_prologue() local
948 frame_unwind_unsigned_register (next_frame, fp_regnum, &this_base); in frv_analyze_prologue()
950 frame_unwind_unsigned_register (next_frame, sp_regnum, &this_base); in frv_analyze_prologue()
954 info->saved_regs[i].addr = this_base - fp_offset + gr_sp_offset[i]; in frv_analyze_prologue()
956 info->prev_sp = this_base - fp_offset + framesize; in frv_analyze_prologue()
957 info->base = this_base; in frv_analyze_prologue()
961 info->saved_regs[lr_regnum].addr = this_base - fp_offset + lr_sp_offset; in frv_analyze_prologue()
1015 ULONGEST this_base; in frv_frame_unwind_cache() local
H A Dframe-base.h65 frame_this_base_ftype *this_base; member
H A Dtrad-frame.h43 CORE_ADDR this_base);
H A Dd10v-tdep.c659 ULONGEST this_base; in d10v_frame_unwind_cache() local
736 frame_unwind_unsigned_register (next_frame, D10V_FP_REGNUM, &this_base); in d10v_frame_unwind_cache()
739 prev_sp = this_base + info->size; in d10v_frame_unwind_cache()
745 frame_unwind_unsigned_register (next_frame, D10V_SP_REGNUM, &this_base); in d10v_frame_unwind_cache()
746 prev_sp = this_base + info->size; in d10v_frame_unwind_cache()
751 info->base = d10v_make_daddr (this_base); in d10v_frame_unwind_cache()
H A Dcris-tdep.c1149 ULONGEST this_base; in cris_scan_prologue() local
1154 &this_base); in cris_scan_prologue()
1155 info->base = this_base; in cris_scan_prologue()
1164 ULONGEST this_base; in cris_scan_prologue() local
1167 frame_unwind_unsigned_register (next_frame, SP_REGNUM, &this_base); in cris_scan_prologue()
1168 info->base = this_base; in cris_scan_prologue()
H A Damd64obsd-tdep.c413 CORE_ADDR this_base; member
H A Dframe.c1330 return fi->base->this_base (fi->next, &fi->prologue_cache); in get_frame_base_address()
1331 return fi->base->this_base (fi->next, &fi->base_cache); in get_frame_base_address()
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/config/
H A Dobj-coff.c837 int this_base; in obj_coff_line() local
846 this_base = get_absolute_expression (); in obj_coff_line()
848 coff_line_base = this_base; in obj_coff_line()
851 SA_SET_SYM_LNNO (def_symbol_in_progress, this_base); in obj_coff_line()
861 listing_source_line ((unsigned int) this_base); in obj_coff_line()
/openbsd-src/gnu/usr.bin/binutils/gas/config/
H A Dobj-coff.c961 int this_base; local
970 this_base = get_absolute_expression ();
972 coff_line_base = this_base;
975 SA_SET_SYM_LNNO (def_symbol_in_progress, this_base);
985 listing_source_line ((unsigned int) this_base);
2695 int this_base; local
2705 this_base = get_absolute_expression ();
2713 if (this_base > line_base)
2715 line_base = this_base;
2727 SA_SET_SYM_LNNO (def_symbol_in_progress, this_base);
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/
H A DChangeLog-92956763 this_base, not line_base. (Patch from Andreas Arens,
/openbsd-src/gnu/usr.bin/binutils/gas/
H A DChangeLog-92956763 this_base, not line_base. (Patch from Andreas Arens,