diff options
author | Andreas Arnez <arnez@linux.vnet.ibm.com> | 2016-09-16 19:25:54 +0200 |
---|---|---|
committer | Andreas Arnez <arnez@linux.vnet.ibm.com> | 2016-09-16 19:25:54 +0200 |
commit | 17c84ccaf042dfb7dd81e4670b74768fe5a96017 (patch) | |
tree | 268c19c9e07a5df4732a59e2d3f88552d1de9e26 /gdb/s390-linux-nat.c | |
parent | 9c2996c98278a95593afaa79db0dc00bb2aff189 (diff) | |
download | gdb-17c84ccaf042dfb7dd81e4670b74768fe5a96017.zip gdb-17c84ccaf042dfb7dd81e4670b74768fe5a96017.tar.gz gdb-17c84ccaf042dfb7dd81e4670b74768fe5a96017.tar.bz2 |
S390: Migrate watch areas from list to VEC type
For S390, the list of active watchpoints is maintained in a list based
at "watch_base". This refactors the list to a vector "watch_areas".
gdb/ChangeLog:
* s390-linux-nat.c (s390_watch_area): New typedef. Define a VEC.
(watch_base): Remove variable.
(watch_areas): New variable.
(s390_stopped_by_watchpoint): Transform operations on the
watch_base list to equivalent operations on the watch_areas VEC.
(s390_prepare_to_resume): Likewise.
(s390_insert_watchpoint): Likewise.
(s390_remove_watchpoint): Likewise.
Diffstat (limited to 'gdb/s390-linux-nat.c')
-rw-r--r-- | gdb/s390-linux-nat.c | 71 |
1 files changed, 34 insertions, 37 deletions
diff --git a/gdb/s390-linux-nat.c b/gdb/s390-linux-nat.c index 1e937f9..13bf7fd 100644 --- a/gdb/s390-linux-nat.c +++ b/gdb/s390-linux-nat.c @@ -436,14 +436,15 @@ s390_linux_store_inferior_registers (struct target_ops *ops, The only thing we actually need is the total address space area spanned by the watchpoints. */ -struct watch_area +typedef struct watch_area { - struct watch_area *next; CORE_ADDR lo_addr; CORE_ADDR hi_addr; -}; +} s390_watch_area; + +DEF_VEC_O (s390_watch_area); -static struct watch_area *watch_base = NULL; +VEC_s390_watch_area *watch_areas = NULL; static int s390_stopped_by_watchpoint (struct target_ops *ops) @@ -453,7 +454,7 @@ s390_stopped_by_watchpoint (struct target_ops *ops) int result; /* Speed up common case. */ - if (!watch_base) + if (VEC_empty (s390_watch_area, watch_areas)) return 0; parea.len = sizeof (per_lowcore); @@ -487,7 +488,8 @@ s390_prepare_to_resume (struct lwp_info *lp) ptrace_area parea; CORE_ADDR watch_lo_addr = (CORE_ADDR)-1, watch_hi_addr = 0; - struct watch_area *area; + unsigned ix; + s390_watch_area *area; struct arch_lwp_info *lp_priv = lwp_arch_private_info (lp); if (lp_priv == NULL || !lp_priv->per_info_changed) @@ -499,20 +501,22 @@ s390_prepare_to_resume (struct lwp_info *lp) if (tid == 0) tid = ptid_get_pid (ptid_of_lwp (lp)); - for (area = watch_base; area; area = area->next) - { - watch_lo_addr = min (watch_lo_addr, area->lo_addr); - watch_hi_addr = max (watch_hi_addr, area->hi_addr); - } - parea.len = sizeof (per_info); parea.process_addr = (addr_t) & per_info; parea.kernel_addr = offsetof (struct user_regs_struct, per_info); if (ptrace (PTRACE_PEEKUSR_AREA, tid, &parea, 0) < 0) perror_with_name (_("Couldn't retrieve watchpoint status")); - if (watch_base) + if (!VEC_empty (s390_watch_area, watch_areas)) { + for (ix = 0; + VEC_iterate (s390_watch_area, watch_areas, ix, area); + ix++) + { + watch_lo_addr = min (watch_lo_addr, area->lo_addr); + watch_hi_addr = max (watch_hi_addr, area->hi_addr); + } + per_info.control_regs.bits.em_storage_alteration = 1; per_info.control_regs.bits.storage_alt_space_ctl = 1; } @@ -575,16 +579,11 @@ s390_insert_watchpoint (struct target_ops *self, CORE_ADDR addr, int len, enum target_hw_bp_type type, struct expression *cond) { - struct watch_area *area = XNEW (struct watch_area); + s390_watch_area area; - if (!area) - return -1; - - area->lo_addr = addr; - area->hi_addr = addr + len - 1; - - area->next = watch_base; - watch_base = area; + area.lo_addr = addr; + area.hi_addr = addr + len - 1; + VEC_safe_push (s390_watch_area, watch_areas, &area); return s390_refresh_per_info (); } @@ -594,25 +593,23 @@ s390_remove_watchpoint (struct target_ops *self, CORE_ADDR addr, int len, enum target_hw_bp_type type, struct expression *cond) { - struct watch_area *area, **parea; - - for (parea = &watch_base; *parea; parea = &(*parea)->next) - if ((*parea)->lo_addr == addr - && (*parea)->hi_addr == addr + len - 1) - break; + unsigned ix; + s390_watch_area *area; - if (!*parea) + for (ix = 0; + VEC_iterate (s390_watch_area, watch_areas, ix, area); + ix++) { - fprintf_unfiltered (gdb_stderr, - "Attempt to remove nonexistent watchpoint.\n"); - return -1; + if (area->lo_addr == addr && area->hi_addr == addr + len - 1) + { + VEC_unordered_remove (s390_watch_area, watch_areas, ix); + return s390_refresh_per_info (); + } } - area = *parea; - *parea = area->next; - xfree (area); - - return s390_refresh_per_info (); + fprintf_unfiltered (gdb_stderr, + "Attempt to remove nonexistent watchpoint.\n"); + return -1; } static int |