gdb/sentinel-frame.c - gdb
Global variables defined
Data types defined
Functions defined
Source code
- #include "defs.h"
- #include "regcache.h"
- #include "sentinel-frame.h"
- #include "inferior.h"
- #include "frame-unwind.h"
- struct frame_unwind_cache
- {
- struct regcache *regcache;
- };
- void *
- sentinel_frame_cache (struct regcache *regcache)
- {
- struct frame_unwind_cache *cache =
- FRAME_OBSTACK_ZALLOC (struct frame_unwind_cache);
- cache->regcache = regcache;
- return cache;
- }
- static struct value *
- sentinel_frame_prev_register (struct frame_info *this_frame,
- void **this_prologue_cache,
- int regnum)
- {
- struct frame_unwind_cache *cache = *this_prologue_cache;
- struct value *value;
- value = regcache_cooked_read_value (cache->regcache, regnum);
- VALUE_FRAME_ID (value) = get_frame_id (this_frame);
- return value;
- }
- static void
- sentinel_frame_this_id (struct frame_info *this_frame,
- void **this_prologue_cache,
- struct frame_id *this_id)
- {
-
- internal_error (__FILE__, __LINE__, _("sentinel_frame_this_id called"));
- }
- static struct gdbarch *
- sentinel_frame_prev_arch (struct frame_info *this_frame,
- void **this_prologue_cache)
- {
- struct frame_unwind_cache *cache = *this_prologue_cache;
- return get_regcache_arch (cache->regcache);
- }
- const struct frame_unwind sentinel_frame_unwind =
- {
- SENTINEL_FRAME,
- default_frame_unwind_stop_reason,
- sentinel_frame_this_id,
- sentinel_frame_prev_register,
- NULL,
- NULL,
- NULL,
- sentinel_frame_prev_arch,
- };