Searched refs:this_trad_cache (Results 1 – 3 of 3) sorted by relevance
| /openbsd-src/gnu/usr.bin/binutils/gdb/ |
| H A D | trad-frame.c | 38 struct trad_frame_cache *this_trad_cache; in trad_frame_cache_zalloc() local 40 this_trad_cache = FRAME_OBSTACK_ZALLOC (struct trad_frame_cache); in trad_frame_cache_zalloc() 41 this_trad_cache->prev_regs = trad_frame_alloc_saved_regs (next_frame); in trad_frame_cache_zalloc() 42 this_trad_cache->next_frame = next_frame; in trad_frame_cache_zalloc() 43 return this_trad_cache; in trad_frame_cache_zalloc() 101 trad_frame_set_reg_realreg (struct trad_frame_cache *this_trad_cache, in trad_frame_set_reg_realreg() argument 104 this_trad_cache->prev_regs[regnum].realreg = realreg; in trad_frame_set_reg_realreg() 105 this_trad_cache->prev_regs[regnum].addr = -1; in trad_frame_set_reg_realreg() 109 trad_frame_set_reg_addr (struct trad_frame_cache *this_trad_cache, in trad_frame_set_reg_addr() argument 112 this_trad_cache->prev_regs[regnum].addr = addr; in trad_frame_set_reg_addr() [all …]
|
| H A D | trad-frame.h | 38 void trad_frame_set_id (struct trad_frame_cache *this_trad_cache, 40 void trad_frame_get_id (struct trad_frame_cache *this_trad_cache, 42 void trad_frame_set_this_base (struct trad_frame_cache *this_trad_cache, 44 CORE_ADDR trad_frame_get_this_base (struct trad_frame_cache *this_trad_cache); 46 void trad_frame_set_reg_realreg (struct trad_frame_cache *this_trad_cache, 48 void trad_frame_set_reg_unknown (struct trad_frame_cache *this_trad_cache, 50 void trad_frame_set_reg_addr (struct trad_frame_cache *this_trad_cache, 52 void trad_frame_get_register (struct trad_frame_cache *this_trad_cache,
|
| H A D | mips-tdep.c | 2035 struct trad_frame_cache *this_trad_cache; in mips_stub_frame_cache() local 2039 this_trad_cache = trad_frame_cache_zalloc (next_frame); in mips_stub_frame_cache() 2040 (*this_cache) = this_trad_cache; in mips_stub_frame_cache() 2043 trad_frame_set_reg_realreg (this_trad_cache, PC_REGNUM, MIPS_RA_REGNUM); in mips_stub_frame_cache() 2050 trad_frame_set_id (this_trad_cache, frame_id_build (start_addr, stack_addr)); in mips_stub_frame_cache() 2054 trad_frame_set_this_base (this_trad_cache, stack_addr); in mips_stub_frame_cache() 2056 return this_trad_cache; in mips_stub_frame_cache() 2063 struct trad_frame_cache *this_trad_cache in mips_stub_frame_this_id() local 2065 trad_frame_get_id (this_trad_cache, this_id); in mips_stub_frame_this_id() 2075 struct trad_frame_cache *this_trad_cache in mips_stub_frame_prev_register() local [all …]
|