3 Copyright (C) 2010-2014 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24 mem_ranges_overlap (CORE_ADDR start1, int len1,
25 CORE_ADDR start2, int len2)
29 l = max (start1, start2);
30 h = min (start1 + len1, start2 + len2);
34 /* qsort comparison function, that compares mem_ranges. Ranges are
35 sorted in ascending START order. */
38 compare_mem_ranges (const void *ap, const void *bp)
40 const struct mem_range *r1 = ap;
41 const struct mem_range *r2 = bp;
43 if (r1->start > r2->start)
45 else if (r1->start < r2->start)
52 normalize_mem_ranges (VEC(mem_range_s) *ranges)
54 /* This function must not use any VEC operation on RANGES that
55 reallocates the memory block as that invalidates the RANGES
56 pointer, which callers expect to remain valid. */
58 if (!VEC_empty (mem_range_s, ranges))
60 struct mem_range *ra, *rb;
63 qsort (VEC_address (mem_range_s, ranges),
64 VEC_length (mem_range_s, ranges),
69 ra = VEC_index (mem_range_s, ranges, a);
70 for (b = 1; VEC_iterate (mem_range_s, ranges, b, rb); b++)
72 /* If mem_range B overlaps or is adjacent to mem_range A,
74 if (rb->start <= ra->start + ra->length)
76 ra->length = max (ra->length,
77 (rb->start - ra->start) + rb->length);
78 continue; /* next b, same a */
81 ra = VEC_index (mem_range_s, ranges, a);
86 VEC_truncate (mem_range_s, ranges, a + 1);