1 /* Memory attributes support, for GDB.
3 Copyright (C) 2001-2025 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/>. */
21 #include "cli/cli-cmds.h"
22 #include "cli/cli-style.h"
25 #include "target-dcache.h"
28 #include "breakpoint.h"
29 #include "cli/cli-utils.h"
33 #include "progspace.h"
35 static std::vector
<mem_region
> user_mem_region_list
, target_mem_region_list
;
36 static std::vector
<mem_region
> *mem_region_list
= &target_mem_region_list
;
37 static int mem_number
= 0;
39 /* If this flag is set, the memory region list should be automatically
40 updated from the target. If it is clear, the list is user-controlled
41 and should be left alone. */
46 return mem_region_list
== &target_mem_region_list
;
49 /* If this flag is set, we have tried to fetch the target memory regions
50 since the last time it was invalidated. If that list is still
51 empty, then the target can't supply memory regions. */
52 static bool target_mem_regions_valid
;
54 /* If this flag is set, gdb will assume that memory ranges not
55 specified by the memory map have type MEM_NONE, and will
56 emit errors on all accesses to that memory. */
57 static bool inaccessible_by_default
= true;
60 show_inaccessible_by_default (struct ui_file
*file
, int from_tty
,
61 struct cmd_list_element
*c
,
64 if (inaccessible_by_default
)
65 gdb_printf (file
, _("Unknown memory addresses will "
66 "be treated as inaccessible.\n"));
68 gdb_printf (file
, _("Unknown memory addresses "
69 "will be treated as RAM.\n"));
72 /* This function should be called before any command which would
73 modify the memory region list. It will handle switching from
74 a target-provided list to a local list, if necessary. */
77 require_user_regions (int from_tty
)
79 /* If we're already using a user-provided list, nothing to do. */
80 if (!mem_use_target ())
83 /* Switch to a user-provided list (possibly a copy of the current
85 mem_region_list
= &user_mem_region_list
;
87 /* If we don't have a target-provided region list yet, then
89 if (target_mem_region_list
.empty ())
92 /* Otherwise, let the user know how to get back. */
94 warning (_("Switching to manual control of memory regions; use "
95 "\"%ps\" to fetch regions from the target again."),
96 styled_string (command_style
.style (), "mem auto"));
98 /* And create a new list (copy of the target-supplied regions) for the user
100 user_mem_region_list
= target_mem_region_list
;
103 /* This function should be called before any command which would
104 read the memory region list, other than those which call
105 require_user_regions. It will handle fetching the
106 target-provided list, if necessary. */
109 require_target_regions (void)
111 if (mem_use_target () && !target_mem_regions_valid
)
113 target_mem_regions_valid
= true;
114 target_mem_region_list
= target_memory_map ();
118 /* Create a new user-defined memory region. */
121 create_user_mem_region (CORE_ADDR lo
, CORE_ADDR hi
,
122 const mem_attrib
&attrib
)
124 /* lo == hi is a useless empty region. */
125 if (lo
>= hi
&& hi
!= 0)
127 gdb_printf (_("invalid memory region: low >= high\n"));
131 mem_region
newobj (lo
, hi
, attrib
);
133 auto it
= std::lower_bound (user_mem_region_list
.begin (),
134 user_mem_region_list
.end (),
136 int ix
= std::distance (user_mem_region_list
.begin (), it
);
138 /* Check for an overlapping memory region. We only need to check
139 in the vicinity - at most one before and one after the
141 for (int i
= ix
- 1; i
< ix
+ 1; i
++)
145 if (i
>= user_mem_region_list
.size ())
148 mem_region
&n
= user_mem_region_list
[i
];
150 if ((lo
>= n
.lo
&& (lo
< n
.hi
|| n
.hi
== 0))
151 || (hi
> n
.lo
&& (hi
<= n
.hi
|| n
.hi
== 0))
152 || (lo
<= n
.lo
&& ((hi
>= n
.hi
&& n
.hi
!= 0) || hi
== 0)))
154 gdb_printf (_("overlapping memory region\n"));
159 newobj
.number
= ++mem_number
;
160 user_mem_region_list
.insert (it
, newobj
);
163 /* Look up the memory region corresponding to ADDR. */
166 lookup_mem_region (CORE_ADDR addr
)
168 static struct mem_region
region (0, 0);
172 require_target_regions ();
174 /* First we initialize LO and HI so that they describe the entire
175 memory space. As we process the memory region chain, they are
176 redefined to describe the minimal region containing ADDR. LO
177 and HI are used in the case where no memory region is defined
178 that contains ADDR. If a memory region is disabled, it is
179 treated as if it does not exist. The initial values for LO
180 and HI represent the bottom and top of memory. */
185 /* Either find memory range containing ADDR, or set LO and HI
186 to the nearest boundaries of an existing memory range.
188 If we ever want to support a huge list of memory regions, this
189 check should be replaced with a binary search (probably using
191 for (mem_region
&m
: *mem_region_list
)
193 if (m
.enabled_p
== 1)
195 /* If the address is in the memory region, return that
197 if (addr
>= m
.lo
&& (addr
< m
.hi
|| m
.hi
== 0))
200 /* This (correctly) won't match if m->hi == 0, representing
201 the top of the address space, because CORE_ADDR is unsigned;
202 no value of LO is less than zero. */
203 if (addr
>= m
.hi
&& lo
< m
.hi
)
206 /* This will never set HI to zero; if we're here and ADDR
207 is at or below M, and the region starts at zero, then ADDR
208 would have been in the region. */
209 if (addr
<= m
.lo
&& (hi
== 0 || hi
> m
.lo
))
214 /* Because no region was found, we must cons up one based on what
215 was learned above. */
219 /* When no memory map is defined at all, we always return
220 'default_mem_attrib', so that we do not make all memory
221 inaccessible for targets that don't provide a memory map. */
222 if (inaccessible_by_default
&& !mem_region_list
->empty ())
223 region
.attrib
= mem_attrib::unknown ();
225 region
.attrib
= mem_attrib ();
230 /* Invalidate any memory regions fetched from the target. */
233 invalidate_target_mem_regions (void)
235 if (!target_mem_regions_valid
)
238 target_mem_regions_valid
= false;
239 target_mem_region_list
.clear ();
242 /* Clear user-defined memory region list. */
245 user_mem_clear (void)
247 user_mem_region_list
.clear ();
252 mem_command (const char *args
, int from_tty
)
257 error_no_arg (_("No mem"));
259 /* For "mem auto", switch back to using a target provided list. */
260 if (strcmp (args
, "auto") == 0)
262 if (mem_use_target ())
266 mem_region_list
= &target_mem_region_list
;
271 require_user_regions (from_tty
);
273 std::string tok
= extract_arg (&args
);
275 error (_("no lo address"));
276 lo
= parse_and_eval_address (tok
.c_str ());
278 tok
= extract_arg (&args
);
280 error (_("no hi address"));
281 hi
= parse_and_eval_address (tok
.c_str ());
284 while ((tok
= extract_arg (&args
)) != "")
287 attrib
.mode
= MEM_RW
;
288 else if (tok
== "ro")
289 attrib
.mode
= MEM_RO
;
290 else if (tok
== "wo")
291 attrib
.mode
= MEM_WO
;
294 attrib
.width
= MEM_WIDTH_8
;
295 else if (tok
== "16")
297 if ((lo
% 2 != 0) || (hi
% 2 != 0))
298 error (_("region bounds not 16 bit aligned"));
299 attrib
.width
= MEM_WIDTH_16
;
301 else if (tok
== "32")
303 if ((lo
% 4 != 0) || (hi
% 4 != 0))
304 error (_("region bounds not 32 bit aligned"));
305 attrib
.width
= MEM_WIDTH_32
;
307 else if (tok
== "64")
309 if ((lo
% 8 != 0) || (hi
% 8 != 0))
310 error (_("region bounds not 64 bit aligned"));
311 attrib
.width
= MEM_WIDTH_64
;
315 else if (tok
== "hwbreak")
317 else if (tok
== "swbreak")
321 else if (tok
== "cache")
323 else if (tok
== "nocache")
327 else if (tok
== "verify")
329 else if (tok
== "noverify")
334 error (_("unknown attribute: %s"), tok
.c_str ());
337 create_user_mem_region (lo
, hi
, attrib
);
342 info_mem_command (const char *args
, int from_tty
)
344 if (mem_use_target ())
345 gdb_printf (_("Using memory regions provided by the target.\n"));
347 gdb_printf (_("Using user-defined memory regions.\n"));
349 require_target_regions ();
351 if (mem_region_list
->empty ())
353 gdb_printf (_("There are no memory regions defined.\n"));
359 gdb_printf ("Low Addr ");
360 if (gdbarch_addr_bit (current_inferior ()->arch ()) > 32)
362 gdb_printf ("High Addr ");
363 if (gdbarch_addr_bit (current_inferior ()->arch ()) > 32)
365 gdb_printf ("Attrs ");
368 for (const mem_region
&m
: *mem_region_list
)
372 gdb_printf ("%-3d %-3c\t",
374 m
.enabled_p
? 'y' : 'n');
375 if (gdbarch_addr_bit (current_inferior ()->arch ()) <= 32)
376 tmp
= hex_string_custom (m
.lo
, 8);
378 tmp
= hex_string_custom (m
.lo
, 16);
380 gdb_printf ("%s ", tmp
);
382 if (gdbarch_addr_bit (current_inferior ()->arch ()) <= 32)
387 tmp
= hex_string_custom (m
.hi
, 8);
392 tmp
= "0x10000000000000000";
394 tmp
= hex_string_custom (m
.hi
, 16);
397 gdb_printf ("%s ", tmp
);
399 /* Print a token for each attribute.
401 * FIXME: Should we output a comma after each token? It may
402 * make it easier for users to read, but we'd lose the ability
403 * to cut-and-paste the list of attributes when defining a new
404 * region. Perhaps that is not important.
406 * FIXME: If more attributes are added to GDB, the output may
407 * become cluttered and difficult for users to read. At that
408 * time, we may want to consider printing tokens only if they
409 * are different from the default attribute. */
411 switch (m
.attrib
.mode
)
423 gdb_printf ("flash blocksize 0x%x ", m
.attrib
.blocksize
);
427 switch (m
.attrib
.width
)
441 case MEM_WIDTH_UNSPECIFIED
:
447 gdb_printf ("hwbreak");
449 gdb_printf ("swbreak");
453 gdb_printf ("cache ");
455 gdb_printf ("nocache ");
459 gdb_printf ("verify ");
461 gdb_printf ("noverify ");
469 /* Enable the memory region number NUM. */
474 for (mem_region
&m
: *mem_region_list
)
480 gdb_printf (_("No memory region number %d.\n"), num
);
484 enable_mem_command (const char *args
, int from_tty
)
486 require_user_regions (from_tty
);
488 target_dcache_invalidate (current_program_space
->aspace
);
490 if (args
== NULL
|| *args
== '\0')
491 { /* Enable all mem regions. */
492 for (mem_region
&m
: *mem_region_list
)
497 number_or_range_parser
parser (args
);
498 while (!parser
.finished ())
500 int num
= parser
.get_number ();
507 /* Disable the memory region number NUM. */
510 mem_disable (int num
)
512 for (mem_region
&m
: *mem_region_list
)
518 gdb_printf (_("No memory region number %d.\n"), num
);
522 disable_mem_command (const char *args
, int from_tty
)
524 require_user_regions (from_tty
);
526 target_dcache_invalidate (current_program_space
->aspace
);
528 if (args
== NULL
|| *args
== '\0')
530 for (mem_region
&m
: *mem_region_list
)
535 number_or_range_parser
parser (args
);
536 while (!parser
.finished ())
538 int num
= parser
.get_number ();
544 /* Delete the memory region number NUM. */
549 if (!mem_region_list
)
551 gdb_printf (_("No memory region number %d.\n"), num
);
555 auto it
= std::remove_if (mem_region_list
->begin (), mem_region_list
->end (),
556 [num
] (const mem_region
&m
)
558 return m
.number
== num
;
561 if (it
!= mem_region_list
->end ())
562 mem_region_list
->erase (it
);
564 gdb_printf (_("No memory region number %d.\n"), num
);
568 delete_mem_command (const char *args
, int from_tty
)
570 require_user_regions (from_tty
);
572 target_dcache_invalidate (current_program_space
->aspace
);
574 if (args
== NULL
|| *args
== '\0')
576 if (query (_("Delete all memory regions? ")))
582 number_or_range_parser
parser (args
);
583 while (!parser
.finished ())
585 int num
= parser
.get_number ();
592 static struct cmd_list_element
*mem_set_cmdlist
;
593 static struct cmd_list_element
*mem_show_cmdlist
;
597 add_com ("mem", class_vars
, mem_command
, _("\
598 Define or reset attributes for memory regions.\n\
600 mem LOW HIGH [MODE WIDTH CACHE],\n\
601 where MODE may be rw (read/write), ro (read-only) or wo (write-only),\n\
602 WIDTH may be 8, 16, 32, or 64, and\n\
603 CACHE may be cache or nocache"));
605 add_cmd ("mem", class_vars
, enable_mem_command
, _("\
606 Enable memory region.\n\
607 Arguments are the IDs of the memory regions to enable.\n\
608 Usage: enable mem [ID]...\n\
609 Do \"info mem\" to see current list of IDs."), &enablelist
);
611 add_cmd ("mem", class_vars
, disable_mem_command
, _("\
612 Disable memory region.\n\
613 Arguments are the IDs of the memory regions to disable.\n\
614 Usage: disable mem [ID]...\n\
615 Do \"info mem\" to see current list of IDs."), &disablelist
);
617 add_cmd ("mem", class_vars
, delete_mem_command
, _("\
618 Delete memory region.\n\
619 Arguments are the IDs of the memory regions to delete.\n\
620 Usage: delete mem [ID]...\n\
621 Do \"info mem\" to see current list of IDs."), &deletelist
);
623 add_info ("mem", info_mem_command
,
624 _("Memory region attributes."));
626 add_setshow_prefix_cmd ("mem", class_vars
,
627 _("Memory regions settings."),
628 _("Memory regions settings."),
629 &mem_set_cmdlist
, &mem_show_cmdlist
,
630 &setlist
, &showlist
);
632 add_setshow_boolean_cmd ("inaccessible-by-default", no_class
,
633 &inaccessible_by_default
, _("\
634 Set handling of unknown memory regions."), _("\
635 Show handling of unknown memory regions."), _("\
636 If on, and some memory map is defined, debugger will emit errors on\n\
637 accesses to memory not defined in the memory map. If off, accesses to all\n\
638 memory addresses will be allowed."),
640 show_inaccessible_by_default
,