vote up 10 vote down star
2

Recently voted into the C++0x working paper was an attribute syntax. This syntax provides a way to specify other pieces of information to the compiler. The Committee Draft also includes several standard attributes.

The syntax is to wrap the attribute list in double square brackets, e.g. [[noreturn]]. These attributes can be "namespaced" in the sense that they are allowed to use :: to avoid name clashes (for instance, you might have [[windows::dllimport]]), and can take parameters. They can be applied to virtually anything - types, objects, functions, statements, and so are extremely versatile. The current draft specifies the follwing attributes: [[align(number or type)]] to specify an object's alignment, [[noreturn]] to hint to the optimizer that a function won't return, [[final]] to ask the compiler to prevent overriding (in this regard though, an implementation may ignore it), and [[carries_dependency]] to indicate that the function carries a dependency (it's an optimizer thing added with the threading system that I don't really understand myself).

A representative from Microsoft has stated that Microsoft "refuses" to implement these attributes (quotation from the minutes of the last meeting). This is a travesty, as a major compiler not implementing such an important feature is a disaster for the standard (export is different in that it is extremely difficult to use and very rare; these attributes stand to become on of the most easy-to-use features of C++0x)

So I ask you what attributes you guys would like. Perhaps we can take some of the most popular ones and attempt to get a vendor-neutral extension standard going, and hopefully get a very powerful addition to C++.

flag

67% accept rate
Revision 4 of the proposal: open-std.org/jtc1/sc22/… (from open-std.org/JTC1/sc22/…) – divideandconquer.se Nov 17 '08 at 20:59
Got a link to those minutes you quoted? – jalf Nov 17 '08 at 21:14
Well, considering the current draft is meant to be feature-complete, I doubt you're going to be able to persuade them to add more attributes. ;) Thanks for drawing attention to MS's silliness though. – jalf Nov 17 '08 at 21:32
1  
A better approach may be to post about the issue as feedback on their Connect website ( connect.microsoft.com/VisualStudio/Feedback/… ), or on the VS2k10 CTP forum ( social.msdn.microsoft.com/Forums/en/… ) – jalf Nov 17 '08 at 21:43
1  
The idea is to add attributes possible as a vendor-neutral extension, not necessarily as standard attributes for this time around. The point of the proposal, as I see it, is to get things going so that vendors can implement attributes that require no preprocessor, then maybe add more later. – coppro Nov 19 '08 at 5:42

7 Answers

vote up 12 vote down check

[[override]]

specify that a virtual function must override a function and cannot of itself create a new one.

class A
{
   virtual void foo( int i) const;
};

class B : public A
{
   [[override]]
   virtual void foo( int i); // compile error here
};

How many people have had that bug. Especially when the class A is in 3rd party library, where the signature changed in an update.

I'm not bitter.

link|flag
would be very useful! – vividos Nov 18 '08 at 8:35
I personally don't think that's half as bad as the far more subtle virtual overload issue, which is more difficult to work with attributes (especially across multiple vendors) – coppro Nov 19 '08 at 5:41
This attribute and a few others supporting it have now been finalized in the standard. It's good to know that someone on the standards committee thought of this as well. open-std.org/JTC1/SC22/… – Caspin Nov 19 at 16:30
vote up 7 vote down

Personally, two I'd like to see are [[deprecated]] and [[pure]]. Deprecation is a popular attribute in existing compilers, and pure specification provides a very useful optimizer hint (and does not obsolete constexpr at all, it in fact reinforces it to a large extent). [[dllimport]] and [[dllexport]] will be important, but I think would be better off in another namespace (as above). Having [[nonnull]] as a variable attribute would be awesome, and [[nothrow]] to allow non-throwing optimizations (as opposed to throw() which requires the unexpected exception mechanisms) would be cool, The thing about such optimizing attributes is they require compiler support (particularly something like [[nonnull]] because you will (naturally) eschew runtime checks in favor of the attribute, which will go badly if the compiler just ignores them.

These attributes were largely stolen from GCC's list of attributes, because I'm feeling really uncreative at the moment.

link|flag
vote up 5 vote down

[[internal]] for functions / classes that should only be used by code that's in the same namespace like those functions / classes.

link|flag
vote up 1 vote down

If I understand correctly this is a standardized format of __attribute__(( )) [GNU], and __declspec() [MS].

In case the attributes were developer extensible and available through some reflection mechanism (see Java annotations :-) it would open up loads of possible (mis)uses, but if I read the propsal correctly the attributes are only be available to the compiler. Maybe LLVM could make good use of them though.

link|flag
C++ has no reflection system for a very good reason (implementing a reflective type system would take a lot more work), but there is no reason why attributes would have to be hidden from the code at runtime. And it doesn't make that much of a difference with the advent of concepts, in my opinion. – coppro Nov 18 '08 at 0:44
vote up 2 vote down

Another idea I just came up with is to make attributes specifying important information about class types, like [[trivial]] or [[aggregate]]. Then the compiler catches if your class doesn't meet that requirement. Another one could be [[constexpr]] placed on a statement to indicate it should be evaluated at compile-time and give a warning if it cannot (on a declaration to apply to the variable, on an assignment to apply to the RHS, or on a block to say this should apply to every element of it). You could also put [[noreturn]] on a block to indicate control won't flow naturally from it - it will exit by break, goto, or some other method of transferring control without falling off the end. Also, [[synchronized]] to work much like the Java keyword of the same name.

link|flag
vote up 0 vote down

Another vote for [[deprecated]] and [[pure]].

link|flag
vote up 1 vote down

Just a little update: There is a proposal now for [[override]], [[hidden]], and [[check_members]] attributes. They don't affect semantics, but the first two specify that a function must override/hide a base class function (it can be both). [[check_members]] tells the compiler to issue an error if any functions are present that overload or hide without using the appropriate attributes.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.