From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1062) id F2EE33858C2F; Fri, 5 Aug 2022 22:41:11 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org F2EE33858C2F Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Alan Modra To: gdb-cvs@sourceware.org Subject: [binutils-gdb] Don't use BFD_VMA_FMT in gdb and sim X-Act-Checkin: binutils-gdb X-Git-Author: Alan Modra X-Git-Refname: refs/heads/master X-Git-Oldrev: 99c902690493e35aad16b2083bad34cf79c366bf X-Git-Newrev: 29136be7df3418fc09555eeac5dde6b43106e9be Message-Id: <20220805224111.F2EE33858C2F@sourceware.org> Date: Fri, 5 Aug 2022 22:41:11 +0000 (GMT) X-BeenThere: gdb-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Aug 2022 22:41:12 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D29136be7df34= 18fc09555eeac5dde6b43106e9be commit 29136be7df3418fc09555eeac5dde6b43106e9be Author: Alan Modra Date: Thu Aug 4 12:48:05 2022 +0930 Don't use BFD_VMA_FMT in gdb and sim =20 Like commit b82817674f, this replaces BFD_VMA_FMT "x" in sim/ with PRIx64 and casts to promote bfd_vma to uint64_t. The one file using BFD_VMA_FMT in gdb/ instead now uses hex_string, and a typo in the warning message is fixed. Diff: --- gdb/windows-tdep.c | 18 ++++++++++-------- sim/common/cgen-trace.c | 4 ++-- sim/common/sim-load.c | 13 ++++++------- sim/cr16/interp.c | 4 ++-- sim/cris/sim-if.c | 25 +++++++++++++------------ sim/d10v/interp.c | 4 ++-- sim/erc32/func.c | 4 ++-- sim/m32c/load.c | 4 ++-- sim/rl78/load.c | 22 +++++++++++----------- sim/rx/load.c | 14 ++++++++------ 10 files changed, 58 insertions(+), 54 deletions(-) diff --git a/gdb/windows-tdep.c b/gdb/windows-tdep.c index a34ac5e5f0a..702af65d450 100644 --- a/gdb/windows-tdep.c +++ b/gdb/windows-tdep.c @@ -1007,10 +1007,11 @@ is_linked_with_cygwin_dll (bfd *abfd) || import_table_va >=3D idata_section_end_va) { warning (_("\ -%s: import table's virtual address (0x%" BFD_VMA_FMT "x) is outside .idata= \ -section's range [0x%" BFD_VMA_FMT "x, 0x%" BFD_VMA_FMT "x[."), - bfd_get_filename (abfd), import_table_va, idata_section_va, - idata_section_end_va); +%s: import table's virtual address (%s) is outside .idata \ +section's range [%s, %s]."), + bfd_get_filename (abfd), hex_string (import_table_va), + hex_string (idata_section_va), + hex_string (idata_section_end_va)); return false; } =20 @@ -1057,10 +1058,11 @@ section's range [0x%" BFD_VMA_FMT "x, 0x%" BFD_VMA_= FMT "x[."), if (name_va < idata_section_va || name_va >=3D idata_section_end_va) { warning (_("\ -%s: name's virtual address (0x%" BFD_VMA_FMT "x) is outside .idata section= 's \ -range [0x%" BFD_VMA_FMT "x, 0x%" BFD_VMA_FMT "x[."), - bfd_get_filename (abfd), name_va, idata_section_va, - idata_section_end_va); +%s: name's virtual address (%s) is outside .idata section's \ +range [%s, %s]."), + bfd_get_filename (abfd), hex_string (name_va), + hex_string (idata_section_va), + hex_string (idata_section_end_va)); break; } =20 diff --git a/sim/common/cgen-trace.c b/sim/common/cgen-trace.c index 3df30c55833..e79e93c7b39 100644 --- a/sim/common/cgen-trace.c +++ b/sim/common/cgen-trace.c @@ -366,8 +366,8 @@ sim_disasm_perror_memory (int status, bfd_vma memaddr, /* Actually, address between memaddr and memaddr + len was out of bounds. */ info->fprintf_func (info->stream, - "Address 0x%" BFD_VMA_FMT "x is out of bounds.", - memaddr); + "Address 0x%" PRIx64 " is out of bounds.", + (uint64_t) memaddr); } =20 /* Disassemble using the CGEN opcode table. diff --git a/sim/common/sim-load.c b/sim/common/sim-load.c index 020165a0dce..80fa2ea4f90 100644 --- a/sim/common/sim-load.c +++ b/sim/common/sim-load.c @@ -121,11 +121,10 @@ sim_load_file (SIM_DESC sd, const char *myname, host_= callback *callback, if (verbose_p) { xprintf (callback, - "Loading section %s, size 0x%lx %s " - "%" BFD_VMA_FMT "x\n", - bfd_section_name (s), - (unsigned long) size, - (lma_p ? "lma" : "vma"), lma); + "Loading section %s, size 0x%" PRIx64 + " %s %" PRIx64 "\n", + bfd_section_name (s), (uint64_t) size, + lma_p ? "lma" : "vma", (uint64_t) lma); } data_count +=3D size; bfd_get_section_contents (result_bfd, s, buffer, 0, size); @@ -147,8 +146,8 @@ sim_load_file (SIM_DESC sd, const char *myname, host_ca= llback *callback, if (verbose_p) { end_time =3D time (NULL); - xprintf (callback, "Start address %" BFD_VMA_FMT "x\n", - bfd_get_start_address (result_bfd)); + xprintf (callback, "Start address %" PRIx64 "\n", + (uint64_t) bfd_get_start_address (result_bfd)); report_transfer_performance (callback, data_count, start_time, end_t= ime); } =20 diff --git a/sim/cr16/interp.c b/sim/cr16/interp.c index 47fb64781bf..b375dadff5d 100644 --- a/sim/cr16/interp.c +++ b/sim/cr16/interp.c @@ -677,8 +677,8 @@ sim_create_inferior (SIM_DESC sd, struct bfd *abfd, start_address =3D 0x0; #ifdef DEBUG if (cr16_debug) - sim_io_printf (sd, "sim_create_inferior: PC=3D0x%" BFD_VMA_FMT "x\n", - start_address); + sim_io_printf (sd, "sim_create_inferior: PC=3D0x%" PRIx64 "\n", + (uint64_t) start_address); #endif { SIM_CPU *cpu =3D STATE_CPU (sd, 0); diff --git a/sim/cris/sim-if.c b/sim/cris/sim-if.c index d7c1005fcac..75176d0c020 100644 --- a/sim/cris/sim-if.c +++ b/sim/cris/sim-if.c @@ -257,17 +257,18 @@ cris_load_elf_file (SIM_DESC sd, struct bfd *abfd, si= m_write_fn do_write) =20 if (verbose) sim_io_printf (sd, - "Loading segment at 0x%" BFD_VMA_FMT "x, " - "size 0x%" BFD_VMA_FMT "x\n", - lma, phdr[i].p_filesz); + "Loading segment at 0x%" PRIx64 ", " + "size 0x%" PRIx64 "\n", + (uint64_t) lma, (uint64_t) phdr[i].p_filesz); =20 if (bfd_seek (abfd, phdr[i].p_offset, SEEK_SET) !=3D 0 || (bfd_bread (buf, phdr[i].p_filesz, abfd) !=3D phdr[i].p_filesz)) { sim_io_eprintf (sd, - "%s: could not read segment at 0x%" BFD_VMA_FMT "x, " - "size 0x%" BFD_VMA_FMT "x\n", - STATE_MY_NAME (sd), lma, phdr[i].p_filesz); + "%s: could not read segment at 0x%" PRIx64 ", " + "size 0x%" PRIx64 "\n", + STATE_MY_NAME (sd), (uint64_t) lma, + (uint64_t) phdr[i].p_filesz); free (buf); return FALSE; } @@ -275,9 +276,10 @@ cris_load_elf_file (SIM_DESC sd, struct bfd *abfd, sim= _write_fn do_write) if (do_write (sd, lma, buf, phdr[i].p_filesz) !=3D phdr[i].p_filesz) { sim_io_eprintf (sd, - "%s: could not load segment at 0x%" BFD_VMA_FMT "x, " - "size 0x%" BFD_VMA_FMT "x\n", - STATE_MY_NAME (sd), lma, phdr[i].p_filesz); + "%s: could not load segment at 0x%" PRIx64 ", " + "size 0x%" PRIx64 "\n", + STATE_MY_NAME (sd), (uint64_t) lma, + (uint64_t) phdr[i].p_filesz); free (buf); return FALSE; } @@ -573,9 +575,8 @@ cris_handle_interpreter (SIM_DESC sd, struct bfd *abfd) memory area, so we go via a temporary area. Luckily, the interpreter is supposed to be small, less than 0x40000 bytes. */ - sim_do_commandf (sd, "memory region 0x%" BFD_VMA_FMT "x," - "0x%" BFD_VMA_FMT "x", - interp_load_addr, interpsiz); + sim_do_commandf (sd, "memory region 0x%" PRIx64 ",0x%" PRIx64, + (uint64_t) interp_load_addr, (uint64_t) interpsiz); =20 /* Now that memory for the interpreter is defined, load it. */ if (!cris_load_elf_file (sd, ibfd, cris_write_interp)) diff --git a/sim/d10v/interp.c b/sim/d10v/interp.c index 5716a10583e..fde96aa70e3 100644 --- a/sim/d10v/interp.c +++ b/sim/d10v/interp.c @@ -1171,8 +1171,8 @@ sim_create_inferior (SIM_DESC sd, struct bfd *abfd, start_address =3D 0xffc0 << 2; #ifdef DEBUG if (d10v_debug) - sim_io_printf (sd, "sim_create_inferior: PC=3D0x%" BFD_VMA_FMT "x\n", - start_address); + sim_io_printf (sd, "sim_create_inferior: PC=3D0x%" PRIx64 "\n", + (uint64_t) start_address); #endif { SIM_CPU *cpu =3D STATE_CPU (sd, 0); diff --git a/sim/erc32/func.c b/sim/erc32/func.c index b4f2b420e34..4d1942065b8 100644 --- a/sim/erc32/func.c +++ b/sim/erc32/func.c @@ -1060,8 +1060,8 @@ bfd_load (const char *fname) section_size =3D bfd_section_size (section); =20 if (sis_verbose) - printf("\nsection %s at 0x%08" BFD_VMA_FMT "x (0x%lx bytes)", - section_name, section_address, section_size); + printf("\nsection %s at 0x%08" PRIx64 " (0x%lx bytes)", + section_name, (uint64_t) section_address, section_size); =20 /* Text, data or lit */ if (bfd_section_flags (section) & SEC_LOAD) { diff --git a/sim/m32c/load.c b/sim/m32c/load.c index ce0bddc82d1..9a432d0bf4b 100644 --- a/sim/m32c/load.c +++ b/sim/m32c/load.c @@ -99,8 +99,8 @@ m32c_load (bfd * prog) =20 base =3D bfd_section_lma (s); if (verbose) - fprintf (stderr, "[load a=3D%08" BFD_VMA_FMT "x s=3D%08x %s]\n", - base, (int) size, bfd_section_name (s)); + fprintf (stderr, "[load a=3D%08" PRIx64 " s=3D%08x %s]\n", + (uint64_t) base, (int) size, bfd_section_name (s)); buf =3D (char *) malloc (size); bfd_get_section_contents (prog, s, buf, 0, size); mem_put_blk (base, buf, size); diff --git a/sim/rl78/load.c b/sim/rl78/load.c index 2bf5469a62a..5c99f2278a1 100644 --- a/sim/rl78/load.c +++ b/sim/rl78/load.c @@ -130,15 +130,15 @@ rl78_load (bfd *prog, host_callback *callbacks, const= char * const simname) base =3D p->p_paddr; if (verbose > 1) fprintf (stderr, - "[load segment: lma=3D%08" BFD_VMA_FMT "x vma=3D%08x " - "size=3D%08" BFD_VMA_FMT "x]\n", - base, (int) p->p_vaddr, size); + "[load segment: lma=3D%08" PRIx64 " vma=3D%08" PRIx64 " " + "size=3D%08" PRIx64 "]\n", + (uint64_t) base, (uint64_t) p->p_vaddr, (uint64_t) size); if (callbacks) xprintf (callbacks, - "Loading section %s, size %#" BFD_VMA_FMT "x " - "lma %08" BFD_VMA_FMT "x vma %08lx\n", + "Loading section %s, size %#" PRIx64 " " + "lma %08" PRIx64 " vma %08" PRIx64 "\n", find_section_name_by_offset (prog, p->p_offset), - size, base, p->p_vaddr); + (uint64_t) size, (uint64_t) base, (uint64_t) p->p_vaddr); =20 buf =3D xmalloc (size); =20 @@ -151,17 +151,17 @@ rl78_load (bfd *prog, host_callback *callbacks, const= char * const simname) =20 if (bfd_bread (buf, size, prog) !=3D size) { - fprintf (stderr, "%s: Failed to read %" BFD_VMA_FMT "x bytes\n", - simname, size); + fprintf (stderr, "%s: Failed to read %" PRIx64 " bytes\n", + simname, (uint64_t) size); continue; } =20 if (base > 0xeffff || base + size > 0xeffff) { fprintf (stderr, - "%s, Can't load image to RAM/SFR space: 0x%" BFD_VMA_FMT "x " - "- 0x%" BFD_VMA_FMT "x\n", - simname, base, base+size); + "%s, Can't load image to RAM/SFR space: 0x%" PRIx64 " " + "- 0x%" PRIx64 "\n", + simname, (uint64_t) base, (uint64_t) (base + size)); continue; } if (max_rom < base + size) diff --git a/sim/rx/load.c b/sim/rx/load.c index 500babc0d7d..a0dca3d5b25 100644 --- a/sim/rx/load.c +++ b/sim/rx/load.c @@ -130,14 +130,15 @@ rx_load (bfd *prog, host_callback *callback) base =3D p->p_paddr; if (verbose > 1) fprintf (stderr, - "[load segment: lma=3D%08" BFD_VMA_FMT "x vma=3D%08x " - "size=3D%08" BFD_VMA_FMT "x]\n", - base, (int) p->p_vaddr, size); + "[load segment: lma=3D%08" PRIx64 " vma=3D%08" PRIx64 " " + "size=3D%08" PRIx64 "]\n", + (uint64_t) base, (uint64_t) p->p_vaddr, (uint64_t) size); if (callback) xprintf (callback, - "Loading section %s, size %#lx lma %08lx vma %08lx\n", + "Loading section %s, size %#" PRIx64 " lma %08" PRIx64 + " vma %08" PRIx64 "\n", find_section_name_by_offset (prog, p->p_offset), - size, base, p->p_vaddr); + (uint64_t) size, (uint64_t) base, (uint64_t) p->p_vaddr); =20 buf =3D malloc (size); if (buf =3D=3D NULL) @@ -154,7 +155,8 @@ rx_load (bfd *prog, host_callback *callback) } if (bfd_bread (buf, size, prog) !=3D size) { - fprintf (stderr, "Failed to read %" BFD_VMA_FMT "x bytes\n", size); + fprintf (stderr, "Failed to read %" PRIx64 " bytes\n", + (uint64_t) size); continue; }