File: aix-struct-arg.c

package info (click to toggle)
llvm-toolchain-13 1%3A13.0.1-11
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,418,840 kB
  • sloc: cpp: 5,290,826; ansic: 996,570; asm: 544,593; python: 188,212; objc: 72,027; lisp: 30,291; f90: 25,395; sh: 24,898; javascript: 9,780; pascal: 9,398; perl: 7,484; ml: 5,432; awk: 3,523; makefile: 2,913; xml: 953; cs: 573; fortran: 539
file content (89 lines) | stat: -rw-r--r-- 3,202 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// REQUIRES: powerpc-registered-target
// RUN: %clang_cc1 -triple powerpc-unknown-aix -target-feature +altivec \
// RUN:   -emit-llvm -o - %s | FileCheck --check-prefix=AIX32 %s
// RUN: %clang_cc1 -triple powerpc64-unknown-aix -target-feature +altivec \
// RUN:   -emit-llvm -o - %s | FileCheck --check-prefix=AIX64 %s

typedef struct {
} Zero;
typedef struct {
  char c;
} One;
typedef struct {
  short s;
} Two;
typedef struct {
  char c[3];
} Three;
typedef struct {
  float f;
} Four;
typedef struct {
  char c[5];
} Five;
typedef struct {
  short s[3];
} Six;
typedef struct {
  char c[7];
} Seven;
typedef struct {
  long long l;
} Eight;
typedef struct {
  int i;
} __attribute__((aligned(32))) OverAligned;
typedef struct {
  int i;
  vector signed int vsi;
} StructVector;

// AIX32-LABEL: define void @arg0(%struct.Zero* byval(%struct.Zero) align 4 %x)
// AIX64-LABEL: define void @arg0(%struct.Zero* byval(%struct.Zero) align 8 %x)
void arg0(Zero x) {}

// AIX32-LABEL: define void @arg1(%struct.One* byval(%struct.One) align 4 %x)
// AIX64-LABEL: define void @arg1(%struct.One* byval(%struct.One) align 8 %x)
void arg1(One x) {}

// AIX32-LABEL: define void @arg2(%struct.Two* byval(%struct.Two) align 4 %x)
// AIX64-LABEL: define void @arg2(%struct.Two* byval(%struct.Two) align 8 %x)
void arg2(Two x) {}

// AIX32-LABEL: define void @arg3(%struct.Three* byval(%struct.Three) align 4 %x)
// AIX64-LABEL: define void @arg3(%struct.Three* byval(%struct.Three) align 8 %x)
void arg3(Three x) {}

// AIX32-LABEL: define void @arg4(%struct.Four* byval(%struct.Four) align 4 %x)
// AIX64-LABEL: define void @arg4(%struct.Four* byval(%struct.Four) align 8 %x)
void arg4(Four x) {}

// AIX32-LABEL: define void @arg5(%struct.Five* byval(%struct.Five) align 4 %x)
// AIX64-LABEL: define void @arg5(%struct.Five* byval(%struct.Five) align 8 %x)
void arg5(Five x) {}

// AIX32-LABEL: define void @arg6(%struct.Six* byval(%struct.Six) align 4 %x)
// AIX64-LABEL: define void @arg6(%struct.Six* byval(%struct.Six) align 8 %x)
void arg6(Six x) {}

// AIX32-LABEL: define void @arg7(%struct.Seven* byval(%struct.Seven) align 4 %x)
// AIX64-LABEL: define void @arg7(%struct.Seven* byval(%struct.Seven) align 8 %x)
void arg7(Seven x) {}

// AIX32-LABEL: define void @arg8(%struct.Eight* byval(%struct.Eight) align 4 %0)
// AIX32:         %x = alloca %struct.Eight, align 8
// AIX32:         call void @llvm.memcpy.p0i8.p0i8.i32
// AIX64-LABEL: define void @arg8(%struct.Eight* byval(%struct.Eight) align 8 %x)
void arg8(Eight x) {}

// AIX32-LABEL: define void @arg9(%struct.OverAligned* byval(%struct.OverAligned) align 4 %0)
// AIX32:         %x = alloca %struct.OverAligned, align 32
// AIX32:         call void @llvm.memcpy.p0i8.p0i8.i32
// AIX64-LABEL: define void @arg9(%struct.OverAligned* byval(%struct.OverAligned) align 8 %0)
// AIX64:         %x = alloca %struct.OverAligned, align 32
// AIX64:         call void @llvm.memcpy.p0i8.p0i8.i64
void arg9(OverAligned x) {}

// AIX32-LABEL: define void @arg10(%struct.StructVector* byval(%struct.StructVector) align 16 %x)
// AIX64-LABEL: define void @arg10(%struct.StructVector* byval(%struct.StructVector) align 16 %x)
void arg10(StructVector x) {}