[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGen / attr-mode-vector-types.c
blobe786d0a8c473d7332f06109fbc6d296cbfe29d36
1 // RUN: %clang_cc1 -triple x86_64-unknown-unknown %s -emit-llvm -o - | FileCheck %s
3 typedef int __attribute__((mode(byte))) __attribute__((vector_size(4))) vec_t1;
4 typedef int __attribute__((mode(QI))) __attribute__((vector_size(8))) vec_t2;
5 typedef int __attribute__((mode(SI))) __attribute__((vector_size(16))) vec_t3;
6 typedef int __attribute__((mode(DI))) __attribute__((vector_size(64)))vec_t4;
7 typedef float __attribute__((mode(SF))) __attribute__((vector_size(128))) vec_t5;
8 typedef float __attribute__((mode(DF))) __attribute__((vector_size(256))) vec_t6;
10 void check(void) {
11 // CHECK: alloca <4 x i8>
12 vec_t1 v1;
13 // CHECK: alloca <8 x i8>
14 vec_t2 v2;
15 // CHECK: alloca <4 x i32>
16 vec_t3 v3;
17 // CHECK: alloca <8 x i64>
18 vec_t4 v4;
19 // CHECK: alloca <32 x float>
20 vec_t5 v5;
21 // CHECK: alloca <32 x double>
22 vec_t6 v6;
25 // CHECK: ret i32 4
26 int check_size1(void) { return sizeof(vec_t1); }
28 // CHECK: ret i32 8
29 int check_size2(void) { return sizeof(vec_t2); }
31 // CHECK: ret i32 16
32 int check_size3(void) { return sizeof(vec_t3); }
34 // CHECK: ret i32 64
35 int check_size4(void) { return sizeof(vec_t4); }
37 // CHECK: ret i32 128
38 int check_size5(void) { return sizeof(vec_t5); }
40 // CHECK: ret i32 256
41 int check_size6(void) { return sizeof(vec_t6); }