llvm-project/clang/test/AST/ast-dump-APValue-array.cpp
David Blaikie aee4925507 Recommit: Compress formatting of array type names (int [4] -> int[4])
Based on post-commit review discussion on
2bd84938470bf2e337801faafb8a67710f46429d with Richard Smith.

Other uses of forcing HasEmptyPlaceHolder to false seem OK to me -
they're all around pointer/reference types where the pointer/reference
token will appear at the rightmost side of the left side of the type
name, so they make nested types (eg: the "int" in "int *") behave as
though there is a non-empty placeholder (because the "*" is essentially
the placeholder as far as the "int" is concerned).

This was originally committed in 277623f4d5a672d707390e2c3eaf30a9eb4b075c

Reverted in f9ad1d1c775a8e264bebc15d75e0c6e5c20eefc7 due to breakages
outside of clang - lldb seems to have some strange/strong dependence on
"char [N]" versus "char[N]" when printing strings (not due to that name
appearing in DWARF, but probably due to using clang to stringify type
names) that'll need to be addressed, plus a few other odds and ends in
other subprojects (clang-tools-extra, compiler-rt, etc).
2021-10-21 11:34:43 -07:00

83 lines
3.5 KiB
C++

// Test without serialization:
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -Wno-unused-value -std=gnu++17 \
// RUN: -ast-dump %s -ast-dump-filter Test \
// RUN: | FileCheck --strict-whitespace --match-full-lines %s
//
// Test with serialization:
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -Wno-unused-value -std=gnu++17 -emit-pch -o %t %s
// RUN: %clang_cc1 -x c++ -triple x86_64-unknown-unknown -Wno-unused-value -std=gnu++17 \
// RUN: -include-pch %t -ast-dump-all -ast-dump-filter Test /dev/null \
// RUN: | sed -e "s/ <undeserialized declarations>//" -e "s/ imported//" \
// RUN: | FileCheck --strict-whitespace --match-full-lines %s
struct S0 {
int arr[2];
};
union U0 {
int i;
float f;
};
struct S1 {
S0 s0 = {1, 2};
U0 u0 = {.i = 42};
};
void Test() {
constexpr int __attribute__((vector_size(sizeof(int) * 5))) arr_v5i[5] = {
{1, 2, 3, 4, 5},
{1, 2, 3, 4},
};
// CHECK: | `-VarDecl {{.*}} <line:{{.*}}, line:{{.*}}> line:{{.*}} arr_v5i '__attribute__((__vector_size__(5 * sizeof(int)))) int const[5]' constexpr cinit
// CHECK-NEXT: | |-value: Array size=5
// CHECK-NEXT: | | |-element: Vector length=5
// CHECK-NEXT: | | | |-elements: Int 1, Int 2, Int 3, Int 4
// CHECK-NEXT: | | | `-element: Int 5
// CHECK-NEXT: | | |-element: Vector length=5
// CHECK-NEXT: | | | |-elements: Int 1, Int 2, Int 3, Int 4
// CHECK-NEXT: | | | `-element: Int 0
// CHECK-NEXT: | | `-filler: 3 x Vector length=5
// CHECK-NEXT: | | |-elements: Int 0, Int 0, Int 0, Int 0
// CHECK-NEXT: | | `-element: Int 0
constexpr float arr_f[3][5] = {
{1, 2, 3, 4, 5},
};
// CHECK: | `-VarDecl {{.*}} <line:{{.*}}, line:{{.*}}> line:{{.*}} arr_f 'const float[3][5]' constexpr cinit
// CHECK-NEXT: | |-value: Array size=3
// CHECK-NEXT: | | |-element: Array size=5
// CHECK-NEXT: | | | |-elements: Float 1.000000e+00, Float 2.000000e+00, Float 3.000000e+00, Float 4.000000e+00
// CHECK-NEXT: | | | `-element: Float 5.000000e+00
// CHECK-NEXT: | | `-filler: 2 x Array size=5
// CHECK-NEXT: | | `-filler: 5 x Float 0.000000e+00
constexpr S0 arr_s0[2] = {{1, 2}, {3, 4}};
// CHECK: | `-VarDecl {{.*}} <col:{{.*}}, col:{{.*}}> col:{{.*}} arr_s0 'const S0[2]' constexpr cinit
// CHECK-NEXT: | |-value: Array size=2
// CHECK-NEXT: | | |-element: Struct
// CHECK-NEXT: | | | `-field: Array size=2
// CHECK-NEXT: | | | `-elements: Int 1, Int 2
// CHECK-NEXT: | | `-element: Struct
// CHECK-NEXT: | | `-field: Array size=2
// CHECK-NEXT: | | `-elements: Int 3, Int 4
constexpr U0 arr_u0[2] = {{.i = 42}, {.f = 3.1415f}};
// CHECK: | `-VarDecl {{.*}} <col:{{.*}}, col:{{.*}}> col:{{.*}} arr_u0 'const U0[2]' constexpr cinit
// CHECK-NEXT: | |-value: Array size=2
// CHECK-NEXT: | | `-elements: Union .i Int 42, Union .f Float 3.141500e+00
constexpr S1 arr_s1[2] = {};
// CHECK: `-VarDecl {{.*}} <col:{{.*}}, col:{{.*}}> col:{{.*}} arr_s1 'const S1[2]' constexpr cinit
// CHECK-NEXT: |-value: Array size=2
// CHECK-NEXT: | |-element: Struct
// CHECK-NEXT: | | |-field: Struct
// CHECK-NEXT: | | | `-field: Array size=2
// CHECK-NEXT: | | | `-elements: Int 1, Int 2
// CHECK-NEXT: | | `-field: Union .i Int 42
// CHECK-NEXT: | `-element: Struct
// CHECK-NEXT: | |-field: Struct
// CHECK-NEXT: | | `-field: Array size=2
// CHECK-NEXT: | | `-elements: Int 1, Int 2
// CHECK-NEXT: | `-field: Union .i Int 42
}