[ARC] Object attributes.
[deliverable/binutils-gdb.git] / gdb / memrange.c
CommitLineData
2a7498d8
PA
1/* Memory ranges
2
61baf725 3 Copyright (C) 2010-2017 Free Software Foundation, Inc.
2a7498d8
PA
4
5 This file is part of GDB.
6
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.
11
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.
16
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/>. */
19
20#include "defs.h"
21#include "memrange.h"
325fac50 22#include <algorithm>
2a7498d8
PA
23
24int
25mem_ranges_overlap (CORE_ADDR start1, int len1,
26 CORE_ADDR start2, int len2)
27{
28 ULONGEST h, l;
29
325fac50
PA
30 l = std::max (start1, start2);
31 h = std::min (start1 + len1, start2 + len2);
2a7498d8
PA
32 return (l < h);
33}
34
3437254d
PA
35/* See memrange.h. */
36
37int
38address_in_mem_range (CORE_ADDR address, const struct mem_range *r)
39{
40 return (r->start <= address
41 && (address - r->start) < r->length);
42}
43
c0f61f9c
PA
44/* qsort comparison function, that compares mem_ranges. Ranges are
45 sorted in ascending START order. */
2a7498d8
PA
46
47static int
48compare_mem_ranges (const void *ap, const void *bp)
49{
19ba03f4
SM
50 const struct mem_range *r1 = (const struct mem_range *) ap;
51 const struct mem_range *r2 = (const struct mem_range *) bp;
2a7498d8
PA
52
53 if (r1->start > r2->start)
54 return 1;
55 else if (r1->start < r2->start)
56 return -1;
57 else
58 return 0;
59}
60
61void
62normalize_mem_ranges (VEC(mem_range_s) *ranges)
63{
c0f61f9c
PA
64 /* This function must not use any VEC operation on RANGES that
65 reallocates the memory block as that invalidates the RANGES
66 pointer, which callers expect to remain valid. */
67
2a7498d8
PA
68 if (!VEC_empty (mem_range_s, ranges))
69 {
70 struct mem_range *ra, *rb;
71 int a, b;
72
73 qsort (VEC_address (mem_range_s, ranges),
74 VEC_length (mem_range_s, ranges),
75 sizeof (mem_range_s),
76 compare_mem_ranges);
77
78 a = 0;
79 ra = VEC_index (mem_range_s, ranges, a);
80 for (b = 1; VEC_iterate (mem_range_s, ranges, b, rb); b++)
81 {
82 /* If mem_range B overlaps or is adjacent to mem_range A,
83 merge them. */
84 if (rb->start <= ra->start + ra->length)
85 {
325fac50 86 ra->length = std::max ((CORE_ADDR) ra->length,
c0f61f9c 87 (rb->start - ra->start) + rb->length);
2a7498d8
PA
88 continue; /* next b, same a */
89 }
90 a++; /* next a */
91 ra = VEC_index (mem_range_s, ranges, a);
92
93 if (a != b)
94 *ra = *rb;
95 }
96 VEC_truncate (mem_range_s, ranges, a + 1);
97 }
98}
This page took 0.567405 seconds and 4 git commands to generate.