public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Gabriel Dos Reis <gdr@cs.tamu.edu>
To: "Kaveh R. GHAZI" <ghazi@caip.rutgers.edu>
Cc: Richard Guenther <richard.guenther@gmail.com>,  gcc-patches@gcc.gnu.org
Subject: Re: [PATCH]: Fix problematic -Wcast-qual cases using new CONST_CAST   macro
Date: Fri, 03 Aug 2007 18:07:00 -0000	[thread overview]
Message-ID: <87odhozdvp.fsf@soliton.cs.tamu.edu> (raw)
In-Reply-To: <Pine.GSO.4.58.0708031013330.26004@caipclassic.rutgers.edu>

"Kaveh R. GHAZI" <ghazi@caip.rutgers.edu> writes:

| On Fri, 27 Jul 2007, Kaveh R. GHAZI wrote:
| 
| > On Fri, 27 Jul 2007, Richard Guenther wrote:
| >
| > > On 7/27/07, Kaveh R. GHAZI <ghazi@caip.rutgers.edu> wrote:
| > > > Sure.  Besides my main point which is silencing -Wcast-qual warnings, the
| > > > CONST_CAST macro is grep-able.  I.e. you can search for the few places
| > > > where it's used and audit if they are correctly applied.  You cannot do
| > > > that with regular C-style casts.  Another reason is that with C-style
| > > > casts there isn't any indication of why it's there.  The CONST_CAST macro
| > > > comments itself to someone reading the code.  (These are some of the
| > > > rationales for the creation of C++'s cast operators.)  The macro isn't
| > > > type-safe like the C++ operator is, but it's a poor man's C option. :-)
| > >
| > > Ha!  Maybe a reason to switch to C++ ;)  How about
| > >
| > > #ifdef __cplusplus
| > > #define CONST_CAST(x)  .. template magic follows ..
| > > #else
| > > ...
| > > #endif
| > >
| > > ? ;)
| > > Richard.
| >
| > I don't think that will work in a generic way.  For static_cast, you need
| > to supply the stripped type like so:
| >
| > static_cast<STRIPPED-TYPE>(EXPR)
| >
| > Since we don't yet have a variant of __typeof to get the qualifer stripped
| > type for us, we'd need to pass in the stripped type to the macro like so:
| >
| > #ifdef __cplusplus
| > #define CONST_CAST(X,TYPE)  static_cast<TYPE>(X)
| >
| > Note this doesn't increase type safety for most of the cases we'll use it
| > in because we're just passing the pointer into a situation that takes a
| > void* like free(foo).  I'm not sure this change is worth it so I'd rather
| > leave this refinement to the folks who care about compiling gcc with a C++
| > compiler if they care to take this step.
| >
| > Also, I don't believe the main sources are compilable with a C++ compiler
| > at this point anyway.  Only the libiberty/ and gcc/cp/ directories use
| > -Wc++-compat AFAICT.
| >
| > So may I install the latest version of my patch?
| 
| 
| Richard, do you have any remaining objections to this patch?
| http://gcc.gnu.org/ml/gcc-patches/2007-07/msg01993.html
| 
| If there is some C++ magic you want, can you please suggest something?

Since this patch does not prepare for enabling C++ codes, I'm fine
with it as it is.  I would not suggest more __typeof magic at this
moment.  Of course, it would have been better if the codes were
written in such a way that the casts were almost never needed.

Richard G.  How strongly do you feel about this?

-- Gaby

  reply	other threads:[~2007-08-03 18:07 UTC|newest]

Thread overview: 79+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-07-27  8:15 Kaveh R. GHAZI
2007-07-27  9:53 ` Richard Guenther
2007-07-27 17:24   ` Kaveh R. GHAZI
2007-07-27 19:32     ` Richard Guenther
2007-07-27 19:37       ` Kaveh R. GHAZI
2007-07-27 20:28         ` Gabriel Dos Reis
2007-08-03 14:19         ` Kaveh R. GHAZI
2007-08-03 18:07           ` Gabriel Dos Reis [this message]
2007-08-06  0:19             ` Mark Mitchell
2007-08-06  0:32               ` Gabriel Dos Reis
2007-08-06  4:42                 ` Kaveh R. GHAZI
2007-08-06  5:23                   ` Mark Mitchell
2007-08-06 14:09                     ` Kaveh R. GHAZI
2007-08-06 15:33                       ` Gabriel Dos Reis
2007-08-06 17:59                         ` Kaveh R. GHAZI
2007-08-06 18:11                           ` DJ Delorie
2007-08-06 18:23                             ` Gabriel Dos Reis
2007-08-06 18:18                           ` Gabriel Dos Reis
2007-08-06 15:44                       ` Mark Mitchell
2007-08-08  5:04                         ` Add a __nowarn__ keyword Kaveh R. GHAZI
2007-08-08  8:52                           ` Manuel López-Ibáñez
2007-08-08  9:04                             ` Gabriel Dos Reis
2007-08-08 13:06                               ` Kaveh R. GHAZI
2007-08-08 13:16                                 ` Gabriel Dos Reis
2007-08-08 13:48                                   ` Kaveh R. GHAZI
2007-08-08 13:58                                     ` Paolo Bonzini
2007-08-10  1:42                                       ` Gabriel Dos Reis
2007-08-08 14:29                                     ` Manuel López-Ibáñez
2007-08-08 15:25                                       ` Daniel Jacobowitz
2007-08-08 16:35                                       ` Paolo Bonzini
2007-08-08 19:31                                         ` Kaveh R. GHAZI
2007-08-08 19:42                                           ` Gabriel Dos Reis
2007-08-08 20:22                                             ` Paolo Bonzini
2007-08-08 19:51                                           ` DJ Delorie
2007-08-08 22:41                                             ` Kaveh R. GHAZI
2007-08-08 22:54                                               ` DJ Delorie
2007-08-09  2:36                                                 ` Kaveh R. GHAZI
2007-08-09 13:40                                                   ` Daniel Jacobowitz
2007-08-09 14:19                                                     ` Kaveh R. GHAZI
2007-08-09 14:30                                                       ` Daniel Jacobowitz
2007-08-09 15:05                                                         ` Manuel López-Ibáñez
2007-08-09 15:15                                                           ` Daniel Jacobowitz
2007-08-09 15:31                                                           ` DJ Delorie
2007-08-09 22:23                                                             ` Mark Mitchell
2007-08-09 22:43                                                               ` Kaveh R. GHAZI
2007-08-10  1:52                                                                 ` Gabriel Dos Reis
2007-08-10 16:42                                                                 ` Mark Mitchell
2007-08-10  1:50                                                               ` Gabriel Dos Reis
2007-08-10  2:02                                                                 ` DJ Delorie
2007-08-10  3:09                                                                   ` Gabriel Dos Reis
2007-08-10  3:28                                                                     ` DJ Delorie
2007-08-10  3:44                                                                       ` Gabriel Dos Reis
2007-08-10  4:00                                                                         ` DJ Delorie
2007-08-10  4:12                                                                           ` Gabriel Dos Reis
2007-08-10  4:23                                                                             ` DJ Delorie
2007-08-10 13:24                                                                               ` Gabriel Dos Reis
2007-08-10 18:40                                                                             ` DJ Delorie
2007-08-11 19:19                                                                               ` Joseph S. Myers
2007-08-13 18:36                                                                                 ` DJ Delorie
2007-08-21  3:24                                                                                 ` DJ Delorie
2009-11-21 12:24                                                                                   ` Magnus Fromreide
2009-11-23 16:40                                                                                     ` Manuel López-Ibáñez
2009-11-23 23:28                                                                                     ` DJ Delorie
2007-08-10 19:05                                                                             ` DJ Delorie
2007-08-10 10:04                                                                       ` Manuel López-Ibáñez
2007-08-10 18:46                                                                         ` DJ Delorie
2007-08-09 15:21                                                         ` Kaveh R. GHAZI
2007-08-09 16:48                                                           ` Paolo Bonzini
2007-08-09 20:04                                                   ` Ian Lance Taylor
2007-08-09 20:40                                                     ` DJ Delorie
2007-08-10  1:47                                                   ` Gabriel Dos Reis
2007-08-09 14:41                                           ` Manuel López-Ibáñez
2007-08-09 16:36                                             ` Gabriel Dos Reis
2007-08-09 23:14                                               ` Kaveh R. GHAZI
2007-08-09 22:55                                             ` Kaveh R. GHAZI
2007-08-10  3:18                                               ` Kaveh R. GHAZI
2007-08-10  3:25                                                 ` Gabriel Dos Reis
2007-08-08 12:56                             ` Kaveh R. GHAZI
2007-08-08 14:05                               ` Manuel López-Ibáñez

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=87odhozdvp.fsf@soliton.cs.tamu.edu \
    --to=gdr@cs.tamu.edu \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=ghazi@caip.rutgers.edu \
    --cc=richard.guenther@gmail.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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).