This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Patch to add "nonnull" attribute to various builtins


> From: Geoff Keating <geoffk@geoffk.org>
> 
> "Kaveh R. Ghazi" <ghazi@caip.rutgers.edu> writes:
> 
> > There were a few internal builtins of which I wasn't sure about
> > whether they should accept NULL, namely __builtin_return,
> > __builtin_setjmp, __builtin_longjmp and __builtin_eh_return.  If we
> > decide they should also use "nonnull", I can add that in a followup
> > patch.
> 
> __builtin_setjmp & __builtin_longjmp can't accept NULL, so you could
> add those.

Ok will do so in a separate patch.  Hmm, since setjmp is used in the
implementations of sjlj exceptions, I'm a little unsure as to whether
__builtin_setjmp "throws" in the classic sense or can we add the
"nothrow" attribute to it?  (Setjmp currently doesn't have any
attributes.)  What about __builtin_longjmp?  (Longjmp already has
noreturn and nothrow.)

I ask because the ATTR_NONNULL_1 list in builtin-attrs.def includes
"nothrow" in it so I'd have to create a separate "nonnull"-only attr
list if __builtin_setjmp is considered to "throw".

		Thanks,
		--Kaveh
--
Kaveh R. Ghazi			ghazi@caip.rutgers.edu


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]