unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Re: master 31544bc: Don’t convert pointer to bool
       [not found] ` <20210320004805.B7BBF2101A@vcs0.savannah.gnu.org>
@ 2021-03-20 14:05   ` Stefan Monnier
  2021-03-20 17:01     ` Paul Eggert
  2021-03-20 18:21     ` Matt Armstrong
  0 siblings, 2 replies; 3+ messages in thread
From: Stefan Monnier @ 2021-03-20 14:05 UTC (permalink / raw)
  To: Paul Eggert; +Cc: emacs-devel

>     Without this patch, Oracle Studio 12.6 complains about converting
>     pointer to bool.

Is it right to complain or is that a bug in that tool?
To my naive intuition, it looks wrong since conversion to bool is
standard practice when doing `if (ptr) ...`.


        Stefan




^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: master 31544bc: Don’t convert pointer to bool
  2021-03-20 14:05   ` master 31544bc: Don’t convert pointer to bool Stefan Monnier
@ 2021-03-20 17:01     ` Paul Eggert
  2021-03-20 18:21     ` Matt Armstrong
  1 sibling, 0 replies; 3+ messages in thread
From: Paul Eggert @ 2021-03-20 17:01 UTC (permalink / raw)
  To: Stefan Monnier; +Cc: Emacs Development

On 3/20/21 7:05 AM, Stefan Monnier wrote:
> Is it right to complain or is that a bug in that tool?
> To my naive intuition, it looks wrong since conversion to bool is
> standard practice when doing `if (ptr) ...`.

'bool b = ptr;' does not work in C89, and can be tricky in C++ as 
witness the now-deprecated "safe bool idiom", so there is some style 
caution here. Also, in my experience 'bool b = ptr;' is more likely to 
be a typo.

Since Emacs assumes C99-or-later this is just a style thing. Still, on 
the whole it seems that the "!!" is a win as it is obvious, consumes 
little room, and makes the unusual conversion clearer to the reader.



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: master 31544bc: Don’t convert pointer to bool
  2021-03-20 14:05   ` master 31544bc: Don’t convert pointer to bool Stefan Monnier
  2021-03-20 17:01     ` Paul Eggert
@ 2021-03-20 18:21     ` Matt Armstrong
  1 sibling, 0 replies; 3+ messages in thread
From: Matt Armstrong @ 2021-03-20 18:21 UTC (permalink / raw)
  To: Stefan Monnier, Paul Eggert; +Cc: emacs-devel

Stefan Monnier <monnier@iro.umontreal.ca> writes:

>>     Without this patch, Oracle Studio 12.6 complains about converting
>>     pointer to bool.
>
> Is it right to complain or is that a bug in that tool?
> To my naive intuition, it looks wrong since conversion to bool is
> standard practice when doing `if (ptr) ...`.

In code portable to pre-C99 the diff looks right to me.

Commit 31544bc was about assignment to "bool", not "if (ptr)...", and
the differece is relevant.

"if (ptr)..." and the like has always been valid C.  Instead, the
statememnts test the scalar expression against the zero value, which has
always well defined for pointers.

Essentially, in conditional statements there is an implicit "!= 0"
there.  There is no implicit "!= 0" when converting pointers to integral
types.

In older compilers without _Bool, "bool" usually devolves to char.

  void* p = ...;
  char c = p;

The above code has undefined behavior, since a pointer doesn't fit in a
char.  In practice, most compilers will generate code that assigns the
low order byte of p to b.  This can do things like set b zero for
non-zero pointers and set b to values outside [0, 1].

So, either of these are better:

  char c = !!p;
  char c = p ? true : false;



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-03-20 18:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20210320004804.9441.45535@vcs0.savannah.gnu.org>
     [not found] ` <20210320004805.B7BBF2101A@vcs0.savannah.gnu.org>
2021-03-20 14:05   ` master 31544bc: Don’t convert pointer to bool Stefan Monnier
2021-03-20 17:01     ` Paul Eggert
2021-03-20 18:21     ` Matt Armstrong

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

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).