Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Michal Ludvig <mludvig@suse.cz>
To: Mark Kettenis <kettenis@chello.nl>
Cc: GDB Patches <gdb-patches@sources.redhat.com>
Subject: Re: [PATCH] Multi-arch i386 instruction printing
Date: Mon, 16 Sep 2002 08:26:00 -0000	[thread overview]
Message-ID: <3D85F836.5090500@suse.cz> (raw)
In-Reply-To: <200209151402.g8FE22B7007402@elgar.kettenis.dyndns.org>

[-- Attachment #1: Type: text/plain, Size: 537 bytes --]

Mark Kettenis wrote:
> This patch multi-arch's i386 instruction printing.  In doing so I took
> a somewhat different approach than what's done for other targets, by
> always overriding the disassemble_info fields that the i386
> instruction printer cares about.
> 
> Seems to work fine, and should also be able to handle x86_64.

Here's the same for x86-64 - just for easier merge when you'll do the 
multiarch gdb ;-)

Can I commit it?

Michal Ludvig
-- 
* SuSE CR, s.r.o     * mludvig@suse.cz
* +420 2 9654 5373   * http://www.suse.cz

[-- Attachment #2: x86_64_print_insn.diff --]
[-- Type: text/plain, Size: 2111 bytes --]

2002-09-16  Michal Ludvig  <mludvig@suse.cz>

	* x86-64-tdep.c (gdb_print_insn_x86_64): Removed.
	(86_64_print_insn): Added.
	(x86_64_gdbarch_init): Set print_insn to i386_print_insns.
	(_initialize_x86_64_tdep): Don't initialize tm_print_insn and
	tm_print_insn_info.

Index: x86-64-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/x86-64-tdep.c,v
retrieving revision 1.27
diff -u -p -r1.27 x86-64-tdep.c
--- x86-64-tdep.c	12 Sep 2002 08:39:26 -0000	1.27
+++ x86-64-tdep.c	16 Sep 2002 15:19:22 -0000
@@ -820,19 +820,14 @@ x86_64_register_number (const char *name
 \f
 
 
-/* We have two flavours of disassembly.  The machinery on this page
-   deals with switching between those.  */
-
+/* This is the same as i386_print_insn().  */
 static int
-gdb_print_insn_x86_64 (bfd_vma memaddr, disassemble_info * info)
+x86_64_print_insn (bfd_vma pc, disassemble_info *info)
 {
-  if (disassembly_flavour == att_flavour)
-    return print_insn_i386_att (memaddr, info);
-  else if (disassembly_flavour == intel_flavour)
-    return print_insn_i386_intel (memaddr, info);
-  /* Never reached -- disassembly_flavour is always either att_flavour
-     or intel_flavour.  */
-  internal_error (__FILE__, __LINE__, "failed internal consistency check");
+  info->disassembler_options = (char *) disassembly_flavour;
+  info->mach = gdbarch_bfd_arch_info (current_gdbarch)->mach;
+
+  return print_insn_i386 (pc, info);
 }
 \f
 
@@ -1021,6 +1016,8 @@ x86_64_gdbarch_init (struct gdbarch_info
 
   set_gdbarch_read_fp (gdbarch, cfi_read_fp);
 
+  set_gdbarch_print_insn (gdbarch, x86_64_print_insn);
+  
 /* Discard from the stack the innermost frame, restoring all registers.  */
   set_gdbarch_pop_frame (gdbarch, x86_64_pop_frame);
 
@@ -1142,9 +1139,6 @@ _initialize_x86_64_tdep (void)
 	offset += x86_64_register_info_table[i].size;
       }
   }
-
-  tm_print_insn = gdb_print_insn_x86_64;
-  tm_print_insn_info.mach = bfd_mach_x86_64;
 
   /* Add the variable that controls the disassembly flavour.  */
   {

  reply	other threads:[~2002-09-16 15:26 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-09-15  7:02 Mark Kettenis
2002-09-16  8:26 ` Michal Ludvig [this message]
2002-09-16 22:31 ` Andrew Cagney
2002-09-18  1:12 ` Michal Ludvig

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3D85F836.5090500@suse.cz \
    --to=mludvig@suse.cz \
    --cc=gdb-patches@sources.redhat.com \
    --cc=kettenis@chello.nl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox