1999-05-03 09:29:11 +02:00
|
|
|
/* Disassemble from a buffer, for GNU.
|
2007-07-05 11:49:03 +02:00
|
|
|
Copyright 1993, 1994, 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2005,
|
|
|
|
2007 Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2007-07-05 11:49:03 +02:00
|
|
|
This file is part of the GNU opcodes library.
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or modify
|
2005-07-01 13:16:33 +02:00
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-05 11:49:03 +02:00
|
|
|
the Free Software Foundation; either version 3, or (at your option)
|
|
|
|
any later version.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2007-07-05 11:49:03 +02:00
|
|
|
It is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
|
|
|
License for more details.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2005-07-01 13:16:33 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#include "sysdep.h"
|
|
|
|
#include "dis-asm.h"
|
|
|
|
#include <errno.h>
|
|
|
|
#include "opintl.h"
|
|
|
|
|
|
|
|
/* Get LENGTH bytes from info's buffer, at target address memaddr.
|
|
|
|
Transfer them to myaddr. */
|
|
|
|
int
|
2005-07-01 13:16:33 +02:00
|
|
|
buffer_read_memory (bfd_vma memaddr,
|
|
|
|
bfd_byte *myaddr,
|
|
|
|
unsigned int length,
|
|
|
|
struct disassemble_info *info)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2000-02-21 13:01:27 +01:00
|
|
|
unsigned int opb = info->octets_per_byte;
|
|
|
|
unsigned int end_addr_offset = length / opb;
|
|
|
|
unsigned int max_addr_offset = info->buffer_length / opb;
|
|
|
|
unsigned int octets = (memaddr - info->buffer_vma) * opb;
|
2000-02-03 19:12:55 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
if (memaddr < info->buffer_vma
|
2000-02-03 19:12:55 +01:00
|
|
|
|| memaddr - info->buffer_vma + end_addr_offset > max_addr_offset)
|
1999-05-03 09:29:11 +02:00
|
|
|
/* Out of bounds. Use EIO because GDB uses it. */
|
|
|
|
return EIO;
|
2000-02-03 19:12:55 +01:00
|
|
|
memcpy (myaddr, info->buffer + octets, length);
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Print an error message. We can assume that this is in response to
|
|
|
|
an error return from buffer_read_memory. */
|
2005-07-01 13:16:33 +02:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
void
|
2005-07-01 13:16:33 +02:00
|
|
|
perror_memory (int status,
|
|
|
|
bfd_vma memaddr,
|
|
|
|
struct disassemble_info *info)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
if (status != EIO)
|
|
|
|
/* Can't happen. */
|
|
|
|
info->fprintf_func (info->stream, _("Unknown error %d\n"), status);
|
|
|
|
else
|
2005-02-14 16:47:19 +01:00
|
|
|
{
|
|
|
|
char buf[30];
|
|
|
|
|
|
|
|
/* Actually, address between memaddr and memaddr + len was
|
|
|
|
out of bounds. */
|
|
|
|
sprintf_vma (buf, memaddr);
|
|
|
|
info->fprintf_func (info->stream,
|
|
|
|
_("Address 0x%s is out of bounds.\n"), buf);
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* This could be in a separate file, to save miniscule amounts of space
|
|
|
|
in statically linked executables. */
|
|
|
|
|
|
|
|
/* Just print the address is hex. This is included for completeness even
|
|
|
|
though both GDB and objdump provide their own (to print symbolic
|
|
|
|
addresses). */
|
|
|
|
|
|
|
|
void
|
2005-07-01 13:16:33 +02:00
|
|
|
generic_print_address (bfd_vma addr, struct disassemble_info *info)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
1999-08-10 17:02:41 +02:00
|
|
|
char buf[30];
|
|
|
|
|
|
|
|
sprintf_vma (buf, addr);
|
|
|
|
(*info->fprintf_func) (info->stream, "0x%s", buf);
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
2003-11-14 16:12:44 +01:00
|
|
|
/* Just return true. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
int
|
2005-07-01 13:16:33 +02:00
|
|
|
generic_symbol_at_address (bfd_vma addr ATTRIBUTE_UNUSED,
|
|
|
|
struct disassemble_info *info ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
2003-11-14 16:12:44 +01:00
|
|
|
|
|
|
|
/* Just return TRUE. */
|
|
|
|
|
|
|
|
bfd_boolean
|
|
|
|
generic_symbol_is_valid (asymbol * sym ATTRIBUTE_UNUSED,
|
|
|
|
struct disassemble_info *info ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|