Lines Matching refs:this_trad_cache

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()
171 trad_frame_get_register (struct trad_frame_cache *this_trad_cache, in trad_frame_get_register() argument
177 trad_frame_get_prev_register (next_frame, this_trad_cache->prev_regs, in trad_frame_get_register()
183 trad_frame_set_id (struct trad_frame_cache *this_trad_cache, in trad_frame_set_id() argument
186 this_trad_cache->this_id = this_id; in trad_frame_set_id()
190 trad_frame_get_id (struct trad_frame_cache *this_trad_cache, in trad_frame_get_id() argument
193 (*this_id) = this_trad_cache->this_id; in trad_frame_get_id()
197 trad_frame_set_this_base (struct trad_frame_cache *this_trad_cache, in trad_frame_set_this_base() argument
200 this_trad_cache->this_base = this_base; in trad_frame_set_this_base()
204 trad_frame_get_this_base (struct trad_frame_cache *this_trad_cache) in trad_frame_get_this_base() argument
206 return this_trad_cache->this_base; in trad_frame_get_this_base()