public inbox for gdb-cvs@sourceware.org
help / color / mirror / Atom feed
From: Tom Tromey <tromey@sourceware.org>
To: bfd-cvs@sourceware.org, gdb-cvs@sourceware.org
Subject: [binutils-gdb] Use CHAR_BIT instead of NBBY in libctf
Date: Tue, 04 Jun 2019 20:11:00 -0000	[thread overview]
Message-ID: <20190604201143.24304.qmail@sourceware.org> (raw)

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=76fad9996335e52f177c99c1ebf024fc7f761be2

commit 76fad9996335e52f177c99c1ebf024fc7f761be2
Author: Tom Tromey <tromey@adacore.com>
Date:   Tue Jun 4 12:16:57 2019 -0600

    Use CHAR_BIT instead of NBBY in libctf
    
    On x86-64 Fedora 29, I tried to build a mingw-hosted gdb that targets
    ppc-linux.  You can do this with:
    
        ../binutils-gdb/configure --host=i686-w64-mingw32 --target=ppc-linux \
            --disable-{binutils,gas,gold,gprof,ld}
    
    The build failed with these errors in libctf:
    
    In file included from ../../binutils-gdb/libctf/ctf-create.c:20:
    ../../binutils-gdb/libctf/ctf-create.c: In function 'ctf_add_encoded':
    ../../binutils-gdb/libctf/ctf-create.c:803:59: error: 'NBBY' undeclared (first use in this function)
       dtd->dtd_data.ctt_size = clp2 (P2ROUNDUP (ep->cte_bits, NBBY) / NBBY);
                                                               ^~~~
    ../../binutils-gdb/libctf/ctf-impl.h:254:42: note: in definition of macro 'P2ROUNDUP'
     #define P2ROUNDUP(x, align)  (-(-(x) & -(align)))
                                              ^~~~~
    ../../binutils-gdb/libctf/ctf-create.c:803:59: note: each undeclared identifier is reported only once for each function it appears in
       dtd->dtd_data.ctt_size = clp2 (P2ROUNDUP (ep->cte_bits, NBBY) / NBBY);
                                                               ^~~~
    ../../binutils-gdb/libctf/ctf-impl.h:254:42: note: in definition of macro 'P2ROUNDUP'
     #define P2ROUNDUP(x, align)  (-(-(x) & -(align)))
                                              ^~~~~
    ../../binutils-gdb/libctf/ctf-create.c: In function 'ctf_add_slice':
    ../../binutils-gdb/libctf/ctf-create.c:862:59: error: 'NBBY' undeclared (first use in this function)
       dtd->dtd_data.ctt_size = clp2 (P2ROUNDUP (ep->cte_bits, NBBY) / NBBY);
                                                               ^~~~
    ../../binutils-gdb/libctf/ctf-impl.h:254:42: note: in definition of macro 'P2ROUNDUP'
     #define P2ROUNDUP(x, align)  (-(-(x) & -(align)))
                                              ^~~~~
    ../../binutils-gdb/libctf/ctf-create.c: In function 'ctf_add_member_offset':
    ../../binutils-gdb/libctf/ctf-create.c:1341:21: error: 'NBBY' undeclared (first use in this function)
          off += lsize * NBBY;
                         ^~~~
    ../../binutils-gdb/libctf/ctf-create.c: In function 'ctf_add_type':
    ../../binutils-gdb/libctf/ctf-create.c:1822:16: warning: unknown conversion type character 'z' in format [-Wformat=]
       ctf_dprintf ("Conflict for type %s against ID %lx: "
                    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ../../binutils-gdb/libctf/ctf-create.c:1823:35: note: format string is defined here
             "union size differs, old %zi, new %zi\n",
                                       ^
    ../../binutils-gdb/libctf/ctf-create.c:1822:16: warning: unknown conversion type character 'z' in format [-Wformat=]
       ctf_dprintf ("Conflict for type %s against ID %lx: "
                    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ../../binutils-gdb/libctf/ctf-create.c:1823:44: note: format string is defined here
             "union size differs, old %zi, new %zi\n",
                                                ^
    ../../binutils-gdb/libctf/ctf-create.c:1822:16: warning: too many arguments for format [-Wformat-extra-args]
       ctf_dprintf ("Conflict for type %s against ID %lx: "
                    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    This patch fixes the actual errors in here.  I did not try to fix the
    printf warnings, though I think someone ought to.
    
    Ok?
    
    libctf/ChangeLog
    2019-06-04  Tom Tromey  <tromey@adacore.com>
    
    	* ctf-create.c (ctf_add_encoded, ctf_add_slice)
    	(ctf_add_member_offset): Use CHAR_BIT, not NBBY.

Diff:
---
 libctf/ChangeLog    |  5 +++++
 libctf/ctf-create.c | 14 ++++++++------
 2 files changed, 13 insertions(+), 6 deletions(-)

diff --git a/libctf/ChangeLog b/libctf/ChangeLog
index 52c2e1e..7fb7231 100644
--- a/libctf/ChangeLog
+++ b/libctf/ChangeLog
@@ -1,3 +1,8 @@
+2019-06-04  Tom Tromey  <tromey@adacore.com>
+
+	* ctf-create.c (ctf_add_encoded, ctf_add_slice)
+	(ctf_add_member_offset): Use CHAR_BIT, not NBBY.
+
 2019-06-04  Nick Alcock  <nick.alcock@oracle.com>
 
 	* configure.ac: Check for O_CLOEXEC.
diff --git a/libctf/ctf-create.c b/libctf/ctf-create.c
index 3beed88..356d512 100644
--- a/libctf/ctf-create.c
+++ b/libctf/ctf-create.c
@@ -800,7 +800,8 @@ ctf_add_encoded (ctf_file_t *fp, uint32_t flag,
     return CTF_ERR;		/* errno is set for us.  */
 
   dtd->dtd_data.ctt_info = CTF_TYPE_INFO (kind, flag, 0);
-  dtd->dtd_data.ctt_size = clp2 (P2ROUNDUP (ep->cte_bits, NBBY) / NBBY);
+  dtd->dtd_data.ctt_size = clp2 (P2ROUNDUP (ep->cte_bits, CHAR_BIT)
+				 / CHAR_BIT);
   dtd->dtd_u.dtu_enc = *ep;
 
   return type;
@@ -859,7 +860,8 @@ ctf_add_slice (ctf_file_t *fp, uint32_t flag, ctf_id_t ref,
     return CTF_ERR;		/* errno is set for us.  */
 
   dtd->dtd_data.ctt_info = CTF_TYPE_INFO (CTF_K_SLICE, flag, 0);
-  dtd->dtd_data.ctt_size = clp2 (P2ROUNDUP (ep->cte_bits, NBBY) / NBBY);
+  dtd->dtd_data.ctt_size = clp2 (P2ROUNDUP (ep->cte_bits, CHAR_BIT)
+				 / CHAR_BIT);
   dtd->dtd_u.dtu_slice.cts_type = ref;
   dtd->dtd_u.dtu_slice.cts_bits = ep->cte_bits;
   dtd->dtd_u.dtu_slice.cts_offset = ep->cte_offset;
@@ -1338,7 +1340,7 @@ ctf_add_member_offset (ctf_file_t *fp, ctf_id_t souid, const char *name,
 	  if (ctf_type_encoding (fp, ltype, &linfo) == 0)
 	    off += linfo.cte_bits;
 	  else if ((lsize = ctf_type_size (fp, ltype)) > 0)
-	    off += lsize * NBBY;
+	    off += lsize * CHAR_BIT;
 
 	  /* Round up the offset of the end of the last member to
 	     the next byte boundary, convert 'off' to bytes, and
@@ -1349,9 +1351,9 @@ ctf_add_member_offset (ctf_file_t *fp, ctf_id_t souid, const char *name,
 	     packing if the new member is a bit-field, but we're
 	     the "compiler" and ANSI says we can do as we choose.  */
 
-	  off = roundup (off, NBBY) / NBBY;
+	  off = roundup (off, CHAR_BIT) / CHAR_BIT;
 	  off = roundup (off, MAX (malign, 1));
-	  dmd->dmd_offset = off * NBBY;
+	  dmd->dmd_offset = off * CHAR_BIT;
 	  ssize = off + msize;
 	}
       else
@@ -1360,7 +1362,7 @@ ctf_add_member_offset (ctf_file_t *fp, ctf_id_t souid, const char *name,
 
 	  dmd->dmd_offset = bit_offset;
 	  ssize = ctf_get_ctt_size (fp, &dtd->dtd_data, NULL, NULL);
-	  ssize = MAX (ssize, ((signed) bit_offset / NBBY) + msize);
+	  ssize = MAX (ssize, ((signed) bit_offset / CHAR_BIT) + msize);
 	}
     }
   else


                 reply	other threads:[~2019-06-04 20:11 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20190604201143.24304.qmail@sourceware.org \
    --to=tromey@sourceware.org \
    --cc=bfd-cvs@sourceware.org \
    --cc=gdb-cvs@sourceware.org \
    /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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).