sim: constify prog_name
authorMike Frysinger <vapier@gentoo.org>
Thu, 20 Feb 2014 05:13:48 +0000 (00:13 -0500)
committerMike Frysinger <vapier@gentoo.org>
Wed, 5 Mar 2014 06:42:44 +0000 (01:42 -0500)
There's no need for the prog_name handed down to the core to be mutable,
so add const markings to it and all the related funcs.

39 files changed:
gdb/ChangeLog
gdb/remote-sim.c
include/gdb/ChangeLog
include/gdb/remote-sim.h
sim/arm/ChangeLog
sim/arm/wrapper.c
sim/avr/ChangeLog
sim/avr/interp.c
sim/common/ChangeLog
sim/common/sim-hload.c
sim/common/sim-load.c
sim/common/sim-utils.c
sim/common/sim-utils.h
sim/cr16/ChangeLog
sim/cr16/interp.c
sim/cris/ChangeLog
sim/cris/sim-if.c
sim/d10v/ChangeLog
sim/d10v/interp.c
sim/erc32/ChangeLog
sim/erc32/interf.c
sim/h8300/ChangeLog
sim/h8300/compile.c
sim/m32c/ChangeLog
sim/m32c/gdb-if.c
sim/mcore/ChangeLog
sim/mcore/interp.c
sim/microblaze/ChangeLog
sim/microblaze/interp.c
sim/moxie/ChangeLog
sim/moxie/interp.c
sim/ppc/ChangeLog
sim/ppc/sim_calls.c
sim/rl78/ChangeLog
sim/rl78/gdb-if.c
sim/rx/ChangeLog
sim/rx/gdb-if.c
sim/sh/ChangeLog
sim/sh/interp.c

index 2129d6f..8108e50 100644 (file)
@@ -1,3 +1,7 @@
+2014-03-05  Mike Frysinger  <vapier@gentoo.org>
+
+       * remote-sim.c (gdbsim_load): Add const to prog.
+
 2014-03-03  Tom Tromey  <tromey@redhat.com>
 
        * elfread.c (probe_key): Change to bfd_data.
index 0614690..3bda043 100644 (file)
@@ -564,7 +564,7 @@ static void
 gdbsim_load (struct target_ops *self, char *args, int fromtty)
 {
   char **argv;
-  char *prog;
+  const char *prog;
   struct sim_inferior_data *sim_data
     = get_sim_inferior_data (current_inferior (), SIM_INSTANCE_NEEDED);
 
index d5afee2..5ffeef3 100644 (file)
@@ -1,3 +1,7 @@
+2014-03-05  Mike Frysinger  <vapier@gentoo.org>
+
+       * remote-sim.h (sim_load): Add const to prog.
+
 2014-02-09  Doug Evans  <xdje42@gmail.com>
 
        * section-scripts.h: New file.
index 985b2cd..b8b2406 100644 (file)
@@ -140,7 +140,7 @@ void sim_close (SIM_DESC sd, int quitting);
    Such manipulation should probably (?) occure in
    sim_create_inferior. */
 
-SIM_RC sim_load (SIM_DESC sd, char *prog, struct bfd *abfd, int from_tty);
+SIM_RC sim_load (SIM_DESC sd, const char *prog, struct bfd *abfd, int from_tty);
 
 
 /* Prepare to run the simulated program.
index 7ad1e3d..69e3447 100644 (file)
@@ -1,3 +1,7 @@
+2014-03-05  Mike Frysinger  <vapier@gentoo.org>
+
+       * wrapper.c (sim_load): Add const to prog.
+
 2013-09-23  Alan Modra  <amodra@gmail.com>
 
        * configure: Regenerate.
index 0ea9ee1..c475962 100644 (file)
@@ -888,7 +888,7 @@ sim_close (sd, quitting)
 SIM_RC
 sim_load (sd, prog, abfd, from_tty)
      SIM_DESC sd;
-     char *prog;
+     const char *prog;
      bfd *abfd;
      int from_tty ATTRIBUTE_UNUSED;
 {
index 8dd3ec5..56f79be 100644 (file)
@@ -1,3 +1,7 @@
+2014-03-05  Mike Frysinger  <vapier@gentoo.org>
+
+       * interp.c (sim_load): Add const to prog.
+
 2013-09-23  Alan Modra  <amodra@gmail.com>
 
        * configure: Regenerate.
@@ -13,8 +17,7 @@
 2012-05-24  Pedro Alves  <palves@redhat.com>
 
        PR gdb/7205
-
-        Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
+       * Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
 
 2012-03-24  Mike Frysinger  <vapier@gentoo.org>
 
index f14514b..1ee6507 100644 (file)
@@ -1793,7 +1793,7 @@ sim_close (SIM_DESC sd, int quitting)
 }
 
 SIM_RC
-sim_load (SIM_DESC sd, char *prog, bfd *abfd, int from_tty)
+sim_load (SIM_DESC sd, const char *prog, bfd *abfd, int from_tty)
 {
   bfd *prog_bfd;
 
index 89e37ca..9bf58e2 100644 (file)
@@ -1,3 +1,11 @@
+2014-03-05  Mike Frysinger  <vapier@gentoo.org>
+
+       * sim-hload.c (sim_load): Add const to prog.
+       * sim-load.c (sim_load_file): Likewise.
+       * sim-utils.c (sim_analyze_program): Likewise.
+       * sim-utils.h (sim_analyze_program): Likewise.
+       (sim_load_file): Likewise.
+
 2014-03-04  Mike Frysinger  <vapier@gentoo.org>
 
        * acinclude.m4 (build_warnings): Copy from gdb/configure.ac.
index 66a981b..b380ee0 100644 (file)
@@ -27,7 +27,7 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
    modeling a hardware platform. */
 
 SIM_RC
-sim_load (SIM_DESC sd, char *prog_name, struct bfd *prog_bfd, int from_tty)
+sim_load (SIM_DESC sd, const char *prog_name, struct bfd *prog_bfd, int from_tty)
 {
   bfd *result_bfd;
 
index f077065..7e29f6c 100644 (file)
@@ -57,7 +57,7 @@ static void xprintf_bfd_vma (host_callback *, bfd_vma);
 
 bfd *
 sim_load_file (SIM_DESC sd, const char *myname, host_callback *callback,
-              char *prog, bfd *prog_bfd, int verbose_p, int lma_p,
+              const char *prog, bfd *prog_bfd, int verbose_p, int lma_p,
               sim_write_fn do_write)
 {
   asection *s;
index 2ec7c7c..64291f0 100644 (file)
@@ -211,7 +211,7 @@ sim_add_commas (char *buf, int sizeof_buf, unsigned long value)
    bfd open.  */
 
 SIM_RC
-sim_analyze_program (SIM_DESC sd, char *prog_name, bfd *prog_bfd)
+sim_analyze_program (SIM_DESC sd, const char *prog_name, bfd *prog_bfd)
 {
   asection *s;
   SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
index ddb19ab..30fac1a 100644 (file)
@@ -45,7 +45,7 @@ unsigned long sim_elapsed_time_since (SIM_ELAPSED_TIME start);
 
 /* Utilities for manipulating the load image.  */
 
-SIM_RC sim_analyze_program (SIM_DESC sd, char *prog_name,
+SIM_RC sim_analyze_program (SIM_DESC sd, const char *prog_name,
                            struct bfd *prog_bfd);
 
 /* Load program PROG into the simulator using the function DO_LOAD.
@@ -63,7 +63,7 @@ SIM_RC sim_analyze_program (SIM_DESC sd, char *prog_name,
 typedef int sim_write_fn (SIM_DESC sd, SIM_ADDR mem,
                          const unsigned char *buf, int length);
 struct bfd *sim_load_file (SIM_DESC sd, const char *myname,
-                          host_callback *callback, char *prog,
+                          host_callback *callback, const char *prog,
                           struct bfd *prog_bfd, int verbose_p,
                           int lma_p, sim_write_fn do_load);
 
index 8e32571..9903ad4 100644 (file)
@@ -1,3 +1,7 @@
+2014-03-05  Mike Frysinger  <vapier@gentoo.org>
+
+       * interp.c (sim_load): Add const to prog.
+
 2014-03-04  Mike Frysinger  <vapier@gentoo.org>
 
        * configure: Regenerate.
index 2ef14cb..48da916 100644 (file)
@@ -1567,7 +1567,7 @@ sim_do_command (sd, cmd)
 }
 
 SIM_RC
-sim_load (SIM_DESC sd, char *prog, struct bfd *abfd, int from_tty)
+sim_load (SIM_DESC sd, const char *prog, struct bfd *abfd, int from_tty)
 {
   extern bfd *sim_load_file (); /* ??? Don't know where this should live.  */
 
index 07d04b0..5b30229 100644 (file)
@@ -1,3 +1,7 @@
+2014-03-05  Mike Frysinger  <vapier@gentoo.org>
+
+       * sim-if.c (sim_load): Add const to prog.
+
 2014-03-04  Mike Frysinger  <vapier@gentoo.org>
 
        * configure: Regenerate.
index 4ecba06..325321f 100644 (file)
@@ -343,7 +343,7 @@ cris_program_offset_write (SIM_DESC sd, SIM_ADDR mem, unsigned char *buf,
    files differently.  */
 
 SIM_RC
-sim_load (SIM_DESC sd, char *prog_name, struct bfd *prog_bfd,
+sim_load (SIM_DESC sd, const char *prog_name, struct bfd *prog_bfd,
          int from_tty ATTRIBUTE_UNUSED)
 {
   bfd *result_bfd;
index 1231a5f..4a878b0 100644 (file)
@@ -1,3 +1,7 @@
+2014-03-05  Mike Frysinger  <vapier@gentoo.org>
+
+       * interp.c (sim_load): Add const to prog.
+
 2014-03-04  Mike Frysinger  <vapier@gentoo.org>
 
        * configure: Regenerate.
index a0b334d..f07520e 100644 (file)
@@ -1490,7 +1490,7 @@ sim_do_command (sd, cmd)
 SIM_RC
 sim_load (sd, prog, abfd, from_tty)
      SIM_DESC sd;
-     char *prog;
+     const char *prog;
      bfd *abfd;
      int from_tty;
 {
index d7266fd..1592693 100644 (file)
@@ -1,3 +1,7 @@
+2014-03-05  Mike Frysinger  <vapier@gentoo.org>
+
+       * interf.c (sim_load): Add const to prog.
+
 2013-10-09  Sergio Durigan Junior  <sergiodj@redhat.com>
 
        PR sim/16018:
index e2db44e..84229cd 100644 (file)
@@ -290,7 +290,7 @@ sim_close(sd, quitting)
 SIM_RC
 sim_load(sd, prog, abfd, from_tty)
      SIM_DESC sd;
-     char *prog;
+     const char *prog;
      bfd *abfd;
      int from_tty;
 {
index 38280e8..13bff7a 100644 (file)
@@ -1,3 +1,7 @@
+2014-03-05  Mike Frysinger  <vapier@gentoo.org>
+
+       * compile.c (sim_load): Add const to prog.
+
 2014-02-17  Mike Frysinger  <vapier@gentoo.org>
 
        PR gdb/16450
index 2c7316c..348cdbb 100644 (file)
@@ -4974,7 +4974,7 @@ sim_close (SIM_DESC sd, int quitting)
 /* Called by gdb to load a program into memory.  */
 
 SIM_RC
-sim_load (SIM_DESC sd, char *prog, bfd *abfd, int from_tty)
+sim_load (SIM_DESC sd, const char *prog, bfd *abfd, int from_tty)
 {
   bfd *prog_bfd;
 
index 9cd5fb6..e202191 100644 (file)
@@ -1,3 +1,7 @@
+2014-03-05  Mike Frysinger  <vapier@gentoo.org>
+
+       * gdb-if.c (sim_load): Add const to prog.
+
 2013-09-23  Alan Modra  <amodra@gmail.com>
 
        * configure: Regenerate.
index 56e0862..bec9d48 100644 (file)
@@ -128,7 +128,7 @@ open_objfile (const char *filename)
 
 
 SIM_RC
-sim_load (SIM_DESC sd, char *prog, struct bfd * abfd, int from_tty)
+sim_load (SIM_DESC sd, const char *prog, struct bfd * abfd, int from_tty)
 {
   check_desc (sd);
 
index a034cde..c97a2c5 100644 (file)
@@ -1,3 +1,7 @@
+2014-03-05  Mike Frysinger  <vapier@gentoo.org>
+
+       * interp.c (sim_load): Add const to prog.
+
 2014-02-17  Mike Frysinger  <vapier@gentoo.org>
 
        PR gdb/16450
index 72c59f7..9b08de0 100644 (file)
@@ -1922,7 +1922,7 @@ sim_close (sd, quitting)
 SIM_RC
 sim_load (sd, prog, abfd, from_tty)
      SIM_DESC sd;
-     char * prog;
+     const char * prog;
      bfd * abfd;
      int from_tty;
 {
index fe6add2..911a8b3 100644 (file)
@@ -1,3 +1,7 @@
+2014-03-05  Mike Frysinger  <vapier@gentoo.org>
+
+       * interp.c (sim_load): Add const to prog.
+
 2014-02-17  Mike Frysinger  <vapier@gentoo.org>
 
        PR gdb/16450
index 4907b73..8fcf9d9 100644 (file)
@@ -887,7 +887,7 @@ sim_close (SIM_DESC sd, int quitting)
 }
 
 SIM_RC
-sim_load (SIM_DESC sd, char *prog, bfd *abfd, int from_tty)
+sim_load (SIM_DESC sd, const char *prog, bfd *abfd, int from_tty)
 {
   /* Do the right thing for ELF executables; this turns out to be
      just about the right thing for any object format that:
index 95daaef..33a2785 100644 (file)
@@ -1,3 +1,7 @@
+2014-03-05  Mike Frysinger  <vapier@gentoo.org>
+
+       * interp.c (sim_load): Add const to prog.
+
 2014-02-17  Mike Frysinger  <vapier@gentoo.org>
 
        PR gdb/16450
index 63dc8fc..3268732 100644 (file)
@@ -1230,7 +1230,7 @@ load_dtb (SIM_DESC sd, const char *filename)
 SIM_RC
 sim_load (sd, prog, abfd, from_tty)
      SIM_DESC sd;
-     char * prog;
+     const char * prog;
      bfd * abfd;
      int from_tty;
 {
index 749ece7..3f279fe 100644 (file)
@@ -1,3 +1,7 @@
+2014-03-05  Mike Frysinger  <vapier@gentoo.org>
+
+       * sim_calls.c (sim_load): Add const to prog.
+
 2014-02-17  Aaro Koskinen  <aaro.koskinen@iki.fi>
 
        PR gdb/12202
index a3ebba0..27ee1fe 100644 (file)
@@ -97,7 +97,7 @@ sim_close (SIM_DESC sd, int quitting)
 
 
 SIM_RC
-sim_load (SIM_DESC sd, char *prog, bfd *abfd, int from_tty)
+sim_load (SIM_DESC sd, const char *prog, bfd *abfd, int from_tty)
 {
   TRACE(trace_gdb, ("sim_load(prog=%s, from_tty=%d) called\n",
                    prog, from_tty));
index 1cf0e39..4b556cc 100644 (file)
@@ -1,3 +1,7 @@
+2014-03-05  Mike Frysinger  <vapier@gentoo.org>
+
+       * gdb-if.c (sim_load): Add const to prog.
+
 2013-09-23  Alan Modra  <amodra@gmail.com>
 
        * configure: Regenerate.
index 5dce5cd..6c4b5b5 100644 (file)
@@ -140,7 +140,7 @@ open_objfile (const char *filename)
 /* Load a program.  */
 
 SIM_RC
-sim_load (SIM_DESC sd, char *prog, struct bfd *abfd, int from_tty)
+sim_load (SIM_DESC sd, const char *prog, struct bfd *abfd, int from_tty)
 {
   check_desc (sd);
 
index dc2e3e5..3ce615e 100644 (file)
@@ -1,3 +1,7 @@
+2014-03-05  Mike Frysinger  <vapier@gentoo.org>
+
+       * gdb-if.c (sim_load): Add const to prog.
+
 2014-02-17  Kevin Buettner  <kevinb@redhat.com>
 
        * gdb-if.c (rx_signal_to_host):  Rename to
index 4c4434c..77048a0 100644 (file)
@@ -192,7 +192,7 @@ addr_in_swap_list (bfd_vma addr)
 }
 
 SIM_RC
-sim_load (SIM_DESC sd, char *prog, struct bfd *abfd, int from_tty)
+sim_load (SIM_DESC sd, const char *prog, struct bfd *abfd, int from_tty)
 {
   check_desc (sd);
 
index 8c1b09b..d479841 100644 (file)
@@ -1,3 +1,7 @@
+2014-03-05  Mike Frysinger  <vapier@gentoo.org>
+
+       * interp.c (sim_load): Add const to prog.
+
 2014-02-17  Mike Frysinger  <vapier@gentoo.org>
 
        PR gdb/16450
index 5689511..cf6fd8d 100644 (file)
@@ -2685,7 +2685,7 @@ sim_close (sd, quitting)
 SIM_RC
 sim_load (sd, prog, abfd, from_tty)
      SIM_DESC sd;
-     char *prog;
+     const char *prog;
      bfd *abfd;
      int from_tty;
 {