|| import_table_va >= 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;
}
if (name_va < idata_section_va || name_va >= 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;
}
/* 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);
}
/* Disassemble using the CGEN opcode table.
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 += size;
bfd_get_section_contents (result_bfd, s, buffer, 0, size);
if (verbose_p)
{
end_time = 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_time);
}
start_address = 0x0;
#ifdef DEBUG
if (cr16_debug)
- sim_io_printf (sd, "sim_create_inferior: PC=0x%" BFD_VMA_FMT "x\n",
- start_address);
+ sim_io_printf (sd, "sim_create_inferior: PC=0x%" PRIx64 "\n",
+ (uint64_t) start_address);
#endif
{
SIM_CPU *cpu = STATE_CPU (sd, 0);
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);
if (bfd_seek (abfd, phdr[i].p_offset, SEEK_SET) != 0
|| (bfd_bread (buf, phdr[i].p_filesz, abfd) != 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;
}
if (do_write (sd, lma, buf, phdr[i].p_filesz) != 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;
}
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);
/* Now that memory for the interpreter is defined, load it. */
if (!cris_load_elf_file (sd, ibfd, cris_write_interp))
start_address = 0xffc0 << 2;
#ifdef DEBUG
if (d10v_debug)
- sim_io_printf (sd, "sim_create_inferior: PC=0x%" BFD_VMA_FMT "x\n",
- start_address);
+ sim_io_printf (sd, "sim_create_inferior: PC=0x%" PRIx64 "\n",
+ (uint64_t) start_address);
#endif
{
SIM_CPU *cpu = STATE_CPU (sd, 0);
section_size = bfd_section_size (section);
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);
/* Text, data or lit */
if (bfd_section_flags (section) & SEC_LOAD) {
base = bfd_section_lma (s);
if (verbose)
- fprintf (stderr, "[load a=%08" BFD_VMA_FMT "x s=%08x %s]\n",
- base, (int) size, bfd_section_name (s));
+ fprintf (stderr, "[load a=%08" PRIx64 " s=%08x %s]\n",
+ (uint64_t) base, (int) size, bfd_section_name (s));
buf = (char *) malloc (size);
bfd_get_section_contents (prog, s, buf, 0, size);
mem_put_blk (base, buf, size);
base = p->p_paddr;
if (verbose > 1)
fprintf (stderr,
- "[load segment: lma=%08" BFD_VMA_FMT "x vma=%08x "
- "size=%08" BFD_VMA_FMT "x]\n",
- base, (int) p->p_vaddr, size);
+ "[load segment: lma=%08" PRIx64 " vma=%08" PRIx64 " "
+ "size=%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);
buf = xmalloc (size);
if (bfd_bread (buf, size, prog) != 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;
}
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)
base = p->p_paddr;
if (verbose > 1)
fprintf (stderr,
- "[load segment: lma=%08" BFD_VMA_FMT "x vma=%08x "
- "size=%08" BFD_VMA_FMT "x]\n",
- base, (int) p->p_vaddr, size);
+ "[load segment: lma=%08" PRIx64 " vma=%08" PRIx64 " "
+ "size=%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);
buf = malloc (size);
if (buf == NULL)
}
if (bfd_bread (buf, size, prog) != 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;
}