Home
last modified time | relevance | path

Searched refs:this_cache (Results 1 – 13 of 13) sorted by relevance

/dflybsd-src/contrib/gdb-7/gdb/
H A Dtramp-frame.c45 void **this_cache) in tramp_frame_cache() argument
47 struct tramp_frame_cache *tramp_cache = (*this_cache); in tramp_frame_cache()
62 void **this_cache, in tramp_frame_this_id() argument
66 = tramp_frame_cache (this_frame, this_cache); in tramp_frame_this_id()
73 void **this_cache, in tramp_frame_prev_register() argument
77 = tramp_frame_cache (this_frame, this_cache); in tramp_frame_prev_register()
120 void **this_cache) in tramp_frame_sniffer() argument
137 (*this_cache) = tramp_cache; in tramp_frame_sniffer()
H A Dframe-base.c31 default_frame_base_address (struct frame_info *this_frame, void **this_cache) in default_frame_base_address() argument
37 default_frame_locals_address (struct frame_info *this_frame, void **this_cache) in default_frame_locals_address() argument
39 return default_frame_base_address (this_frame, this_cache); in default_frame_locals_address()
43 default_frame_args_address (struct frame_info *this_frame, void **this_cache) in default_frame_args_address() argument
45 return default_frame_base_address (this_frame, this_cache); in default_frame_args_address()
H A Ddwarf2-frame-tailcall.c213 tailcall_frame_this_id (struct frame_info *this_frame, void **this_cache, in tailcall_frame_this_id() argument
216 struct tailcall_cache *cache = *this_cache; in tailcall_frame_this_id()
298 void **this_cache, int regnum) in tailcall_frame_prev_register() argument
300 struct tailcall_cache *cache = *this_cache; in tailcall_frame_prev_register()
305 val = dwarf2_tailcall_prev_register_first (this_frame, this_cache, regnum); in tailcall_frame_prev_register()
319 struct frame_info *this_frame, void **this_cache) in tailcall_frame_sniffer() argument
348 *this_cache = cache; in tailcall_frame_sniffer()
435 tailcall_frame_dealloc_cache (struct frame_info *self, void *this_cache) in tailcall_frame_dealloc_cache() argument
437 struct tailcall_cache *cache = this_cache; in tailcall_frame_dealloc_cache()
H A Damd64-tdep.c2354 amd64_frame_cache (struct frame_info *this_frame, void **this_cache) in amd64_frame_cache() argument
2359 if (*this_cache) in amd64_frame_cache()
2360 return *this_cache; in amd64_frame_cache()
2363 *this_cache = cache; in amd64_frame_cache()
2377 void **this_cache) in amd64_frame_unwind_stop_reason() argument
2380 amd64_frame_cache (this_frame, this_cache); in amd64_frame_unwind_stop_reason()
2393 amd64_frame_this_id (struct frame_info *this_frame, void **this_cache, in amd64_frame_this_id() argument
2397 amd64_frame_cache (this_frame, this_cache); in amd64_frame_this_id()
2410 amd64_frame_prev_register (struct frame_info *this_frame, void **this_cache, in amd64_frame_prev_register() argument
2415 amd64_frame_cache (this_frame, this_cache); in amd64_frame_prev_register()
[all …]
H A Dframe-unwind.h70 void **this_cache);
134 void *this_cache);
180 void **this_cache);
H A Ddwarf2-frame.c1006 dwarf2_frame_cache (struct frame_info *this_frame, void **this_cache) in dwarf2_frame_cache() argument
1021 if (*this_cache) in dwarf2_frame_cache()
1022 return *this_cache; in dwarf2_frame_cache()
1027 *this_cache = cache; in dwarf2_frame_cache()
1028 reset_cache_cleanup = make_cleanup (clear_pointer_cleanup, this_cache); in dwarf2_frame_cache()
1246 void **this_cache) in dwarf2_frame_unwind_stop_reason() argument
1249 = dwarf2_frame_cache (this_frame, this_cache); in dwarf2_frame_unwind_stop_reason()
1261 dwarf2_frame_this_id (struct frame_info *this_frame, void **this_cache, in dwarf2_frame_this_id() argument
1265 dwarf2_frame_cache (this_frame, this_cache); in dwarf2_frame_this_id()
1277 dwarf2_frame_prev_register (struct frame_info *this_frame, void **this_cache, in dwarf2_frame_prev_register() argument
[all …]
H A Dframe-unwind.c96 frame_unwind_find_by_frame (struct frame_info *this_frame, void **this_cache) in frame_unwind_find_by_frame() argument
113 this_cache); in frame_unwind_find_by_frame()
151 void **this_cache) in default_frame_unwind_stop_reason() argument
H A Dinline-frame.c150 void **this_cache, in inline_frame_this_id() argument
185 inline_frame_prev_register (struct frame_info *this_frame, void **this_cache, in inline_frame_prev_register() argument
208 void **this_cache) in inline_frame_sniffer() argument
H A Di386-tdep.c1822 i386_frame_cache (struct frame_info *this_frame, void **this_cache) in i386_frame_cache() argument
1827 if (*this_cache) in i386_frame_cache()
1828 return *this_cache; in i386_frame_cache()
1831 *this_cache = cache; in i386_frame_cache()
1844 i386_frame_this_id (struct frame_info *this_frame, void **this_cache, in i386_frame_this_id() argument
1847 struct i386_frame_cache *cache = i386_frame_cache (this_frame, this_cache); in i386_frame_this_id()
1859 void **this_cache) in i386_frame_unwind_stop_reason() argument
1861 struct i386_frame_cache *cache = i386_frame_cache (this_frame, this_cache); in i386_frame_unwind_stop_reason()
1874 i386_frame_prev_register (struct frame_info *this_frame, void **this_cache, in i386_frame_prev_register() argument
1877 struct i386_frame_cache *cache = i386_frame_cache (this_frame, this_cache); in i386_frame_prev_register()
[all …]
H A Dtramp-frame.h70 struct trad_frame_cache *this_cache,
H A Ddwarf2-frame.h78 struct value *(*fn) (struct frame_info *this_frame, void **this_cache,
H A Dtrad-frame.h50 void trad_frame_set_reg_value (struct trad_frame_cache *this_cache,
/dflybsd-src/gnu/usr.bin/gdb/kgdb/
H A Dtrgt_x86_64.c155 kgdb_trgt_frame_cache(struct frame_info *next_frame, void **this_cache) in kgdb_trgt_frame_cache() argument
160 cache = *this_cache; in kgdb_trgt_frame_cache()
163 *this_cache = cache; in kgdb_trgt_frame_cache()
181 kgdb_trgt_trapframe_this_id(struct frame_info *next_frame, void **this_cache, in kgdb_trgt_trapframe_this_id() argument
186 cache = kgdb_trgt_frame_cache(next_frame, this_cache); in kgdb_trgt_trapframe_this_id()
192 void **this_cache, int regnum) in kgdb_trgt_trapframe_prev_register() argument
203 cache = kgdb_trgt_frame_cache(next_frame, this_cache); in kgdb_trgt_trapframe_prev_register()
233 void **this_cache) in kgdb_trgt_trapframe_unwind_reason() argument