Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Jim Blandy <jimb@zwingli.cygnus.com>
To: Andrew Cagney <ac131313@cygnus.com>
Cc: gdb-patches@sources.redhat.com
Subject: Re: [patch] clarify ``struct type . length''
Date: Wed, 05 Sep 2001 15:44:00 -0000	[thread overview]
Message-ID: <npr8tll0ib.fsf@zwingli.cygnus.com> (raw)
In-Reply-To: <npheuhms9w.fsf@zwingli.cygnus.com>

I've committed this change.  I hope it still addresses the issues you
had in mind with your original change.

2001-09-05  Jim Blandy  <jimb@redhat.com>

	* gdbtypes.h (struct type): Doc fix.

Index: gdbtypes.h
===================================================================
RCS file: /cvs/src/src/gdb/gdbtypes.h,v
retrieving revision 1.14
diff -c -c -b -F'^(' -r1.14 gdbtypes.h
*** gdbtypes.h	2001/08/24 04:46:43	1.14
--- gdbtypes.h	2001/09/05 22:42:33
***************
*** 231,251 ****
  
      char *tag_name;
  
!     /* Length of storage for a value of this type.  This is of length
!        of the type as defined by the debug info and not the length of
!        the value that resides within the type.  For instance, an
!        i386-ext floating-point value only occupies 80 bits of what is
!        typically a 12 byte `long double'.  Various places pass this to
!        memcpy and such, meaning it must be in units of HOST_CHAR_BIT.
!        Various other places expect they can calculate addresses by
!        adding it and such, meaning it must be in units of
!        TARGET_CHAR_BIT.  For some DSP targets, in which HOST_CHAR_BIT
!        will (presumably) be 8 and TARGET_CHAR_BIT will be (say) 32,
!        this is a problem.  One fix would be to make this field in bits
!        (requiring that it always be a multiple of HOST_CHAR_BIT and
!        TARGET_CHAR_BIT)--the other choice would be to make it
!        consistently in units of HOST_CHAR_BIT.  */
  
      unsigned length;
  
      /* FIXME, these should probably be restricted to a Fortran-specific
--- 231,259 ----
  
      char *tag_name;
  
!     /* Length of storage for a value of this type.  This is what
!        sizeof(type) would return; use it for address arithmetic,
!        memory reads and writes, etc.  This size includes padding.  For
!        example, an i386 extended-precision floating point value really
!        only occupies ten bytes, but most ABI's declare its size to be
!        12 bytes, to preserve alignment.  A `struct type' representing
!        such a floating-point type would have a `length' value of 12,
!        even though the last two bytes are unused.
  
+        There's a bit of a host/target mess here, if you're concerned
+        about machines whose bytes aren't eight bits long, or who don't
+        have byte-addressed memory.  Various places pass this to memcpy
+        and such, meaning it must be in units of host bytes.  Various
+        other places expect they can calculate addresses by adding it
+        and such, meaning it must be in units of target bytes.  For
+        some DSP targets, in which HOST_CHAR_BIT will (presumably) be 8
+        and TARGET_CHAR_BIT will be (say) 32, this is a problem.
+ 
+        One fix would be to make this field in bits (requiring that it
+        always be a multiple of HOST_CHAR_BIT and TARGET_CHAR_BIT) ---
+        the other choice would be to make it consistently in units of
+        HOST_CHAR_BIT.  However, this would still fail to address
+        machines based on a ternary or decimal representation.  */
      unsigned length;
  
      /* FIXME, these should probably be restricted to a Fortran-specific


      reply	other threads:[~2001-09-05 15:44 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2001-08-21  6:41 Andrew Cagney
2001-09-05 10:59 ` Jim Blandy
2001-09-05 15:44   ` Jim Blandy [this message]

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=npr8tll0ib.fsf@zwingli.cygnus.com \
    --to=jimb@zwingli.cygnus.com \
    --cc=ac131313@cygnus.com \
    --cc=gdb-patches@sources.redhat.com \
    /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