[cfe-dev] Why qualifiers for array elements on the array itself?

Aaron Ballman via cfe-dev cfe-dev at lists.llvm.org
Fri Oct 9 05:47:27 PDT 2020


On Fri, Oct 9, 2020 at 4:23 AM Ray Zhang via cfe-dev
<cfe-dev at lists.llvm.org> wrote:
>
> Hi,
>
> I'm currently working on a clang cast tool and ran into a small oddity. This might be a stupid mistake but I'd love some pointers(no pun intended) or insight into it:
>
> const int arr[2] {1,2};
>
> should be "an array of fixed size 2 of constant integers". The QualType associated with arr is an array type, and we can observe that with Expr->isArrayType(). I checked the qualifiers and found that the qualifier for const is actually on this level, and not for the individual elements of ints. I found the elements inside of the array with the following:
>
> const ArrayType* ArrType = dyn_cast<ArrayType>(MyQualType);
> ArrType->getElementType();
>
> which I was hoping could give me the const qualifier for the integers. If it helps at all, I'm using the getLocalFastQualifiers() function to return an unsigned int, and I'm seeing if 0x1 is masked for constness.
>
> Since arrays can't really have qualifiers(the only example I see is on the standards for function parameters for C99 and not C++), was there a reason for why clang decided to put the qualifiers on the array qualtype rather than the elements' qualtype?

In C++, the array and its elements are both qualified per
http://eel.is/c++draft/dcl.array#5 and
http://eel.is/c++draft/basic.type.qualifier#3. (Note, this is
different than in C where the array type should be unqualified and the
element type qualified per C17 6.7.3p10.)

Rather than getLocalFastQualifiers(), I think you want to check
isConstQualified() to check the canonical type as well as the local
qualifiers.

~Aaron

> If I made any unreasonable assumptions to reach this conclusion, please let me know :)
>
> Best,
> Ray
> _______________________________________________
> cfe-dev mailing list
> cfe-dev at lists.llvm.org
> https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev


More information about the cfe-dev mailing list