-
Notifications
You must be signed in to change notification settings - Fork 13.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement N3369 (_Lengthof
)
#102836
Comments
@llvm/issue-subscribers-clang-frontend Author: Alejandro Colomar (alejandro-colomar)
Hi!
I've sent a patch set to GCC for adding a There's a related proposal for ISO C (wg14): The specifications of the operator are:
There are a few interesting reasons why this feature is better than just a macro around the usual sizeof division:
Please feel free to give any feedback for the feature in the GCC thread. Are you interested in this feature? |
I think this is a reasonably common need; users can use the One edge case would be with flexible array members; should those be a constraint violation? Clang already supports In terms of standardization, it's worth noting that N2529 has not been seen by WG14 and so it's unclear how the committee feels about the idea. That leaves some concerns (WG14 has a habit of renaming things or altering semantics slightly), but I think they could be overcome. |
For now they are a constraint violation (incomplete types are rejected), with a reservation of the right to extend support to them. If there appears a way to add length information such as proposed in https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3188.htm, it would make sense to extend this operator to work with them. We've also discussed about supporting the
The usual ARRAY_SIZE() or NITEMS() macros are the prior art I based the feature on. I like it because it's simple. And it's common-enough already that I expect it to be easy to explain. I didn't consider something like __array_extent, because it's usually as easy as: __array_extent(decltype(foo), 4) == __lengthof__(****foo) That is, with regular language expressions you can ask for whatever length you're interested in.
Several WG14 members are CCed in the GCC thread (and a few more in a discussion about the state of that paper prior to the development of the patch. Around half a dozen in total. So far they haven't complained, other than suggesting the usual pedantic wording refinements (very welcome, of course). :)
That's why we've started with the keyword One detail where we didn't have consensus is in accepting expressions without parentheses like sizeof, or requiring them. One WG14 member suggested that we start clean without the mistakes of sizeof. But so far, the implementation is like sizeof in this regard. I think they should match, and if WG14 wants to remove the parentheses from lengthof, they should start by deprecating it from sizeof. But we can still provide sizeof-like behavior in GCC as an extension if ISO C decides to disagree. Having sizeof and lengthof differ here would mean more duplication of code in the compiler, which I'd avoid. |
I could live with that.
Great, thank you!
Given that the only reason to add this feature is to help users more clearly express their intent, I definitely am not a fan of playing "guess how declarators and operators relate to one another" for the feature. Multi-dimensional arrays are a fairly prolific feature of C and it seems to me that getting the array rank and extent is a reasonable thing for users to want to do, and that maps nicely to the C++ features (https://en.cppreference.com/w/cpp/types/rank and https://en.cppreference.com/w/cpp/types/extent) used to get the same information.
There's three (active) committee members on that thread, and I make four, but that's only a bit over 10% of the committee.
If WG14 insists on a design that separates rank and extent, that would be a pretty major shift in semantics and it would be unfortunate for either GCC or Clang to have to carry the extension interface in that case. Before we went ahead with such a feature in Clang, we'd really need some sort of signal from WG14 on that design decision (this is part of our criteria for adding extensions: https://clang.llvm.org/get_involved.html#criteria).
We already broke from tradition in that regard with |
:-)
Not the only one. To me, the main reason is the "future directions" note that foresees adding support to function parameters declared with array notation. I'm paving the way for it. If this keyword was to stay as just a standard ARRAY_SIZE() macro, I wouldn't be so much interested. But we have to start somewhere. :)
Yup, a very nice feature of C, indeed.
Hmm.
Yup, plus other two that I had asked if they know about the state of n2529 before that thread.
Makes sense. I've started to develop a paper for WG14, as you may have seen in your mailbox. :)
Agree. |
Here's a link to the already submitted proposal to WG14: |
This has been merged as The paper that was merged was https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3369.pdf with some trivial/editorial wording cosmetic changes on top of it. |
@alejandro-colomar the fact it was standardized mean it can be implemented in clang without further discussions on whether we want it. |
I would want to attempt it. :-) I've never written any patches for Clang/LLVM, AFAIR, so I would appreciate some help on where should I look in the code. I expect it to be similar to GCC, but of course different, so some help would help. If I find myself unable, I'll let you know. Thanks! |
I've been looking at the code, and there's too much C++ for my taste; I give up. Would someone else mind implementing it? :-) |
No worries, we'll get around to it at some point, thanks for looking! |
Hi @AaronBallman , Could you implement it as The survey by JeanHeyd (https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3469.htm) confirms that it would be stressful to users if this was called lengthof as ISO C has merged. So, to clarify, could you please implement what ISO C2y already has merged, with the same semantics, but with a vendor name derived from countof? That would force ISO to reconsider the name of the operator. GCC has a proposed patch (by myself) for adding this operator with a name derived from countof: Cheers, |
C2y adds the _Countof operator which returns the number of elements in an array. As with sizeof, _Countof either accepts a parenthesized type name or an expression. Its operand must be (of) an array type. When passed a constant-size array operand, the operator is a constant expression which is valid for use as an integer constant expression. Fixes llvm#102836
C2y adds the `_Countof` operator which returns the number of elements in an array. As with `sizeof`, `_Countof` either accepts a parenthesized type name or an expression. Its operand must be (of) an array type. When passed a constant-size array operand, the operator is a constant expression which is valid for use as an integer constant expression. This is being exposed as an extension in earlier C language modes, but not in C++. C++ already has `std::extent` and `std::size` to cover these needs, so the operator doesn't seem to get the user enough benefit to warrant carrying this as an extension. Fixes #102836
Link: <llvm#102836> Link: <llvm#133125> Signed-off-by: Alejandro Colomar <alx@kernel.org>
Link: <llvm#102836> Link: <llvm#133125> Cc: Aaron Ballman <aaron@aaronballman.com> Signed-off-by: Alejandro Colomar <alx@kernel.org>
Link: <llvm#102836> Link: <llvm#133125> Cc: Aaron Ballman <aaron@aaronballman.com> Signed-off-by: Alejandro Colomar <alx@kernel.org>
Hi!
I've sent a patch set to GCC for adding a
__lengthof__
operator:https://inbox.sourceware.org/gcc-patches/20240728141547.302478-1-alx@kernel.org/T/#t
There's a related proposal for ISO C (wg14):
https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2529.pdf
(although the proposal is old (not authored by me), and isn't as curated as the GCC patches). I have the intention of refining that proposal and sending a new one.
The specifications of the operator are:
There are a few interesting reasons why this feature is better than just a macro around the usual sizeof division:
__lengthof__(int [7][n++])
.Please feel free to give any feedback for the feature in the GCC thread.
Are you interested in this feature?
The text was updated successfully, but these errors were encountered: