Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Driver / mips-abi.c
blob98384ce8b31546669a87b6792325d68187bf9c43
1 // Check passing Mips ABI options to the backend.
2 //
3 // REQUIRES: mips-registered-target
4 //
5 // RUN: %clang -target mips-linux-gnu -### -c %s 2>&1 \
6 // RUN: | FileCheck -check-prefix=MIPS32R2-O32 %s
7 // RUN: %clang -target mips64-linux-gnu -mips32r2 -mabi=32 -### -c %s 2>&1 \
8 // RUN: | FileCheck -check-prefix=MIPS32R2-O32 %s
9 // MIPS32R2-O32: "-target-cpu" "mips32r2"
10 // MIPS32R2-O32: "-target-abi" "o32"
12 // RUN: %clang -target mips64-linux-gnu -### -c %s 2>&1 \
13 // RUN: | FileCheck -check-prefix=MIPS64R2-N64 %s
14 // RUN: %clang -target mips-img-linux-gnu -mips64r2 -### -c %s 2>&1 \
15 // RUN: | FileCheck -check-prefix=MIPS64R2-N64 %s
16 // RUN: %clang -target mips-mti-linux-gnu -mips64r2 -### -c %s 2>&1 \
17 // RUN: | FileCheck -check-prefix=MIPS64R2-N64 %s
18 // RUN: %clang -target mips-linux-gnu -mips64r2 -mabi=64 -### -c %s 2>&1 \
19 // RUN: | FileCheck -check-prefix=MIPS64R2-N64 %s
20 // MIPS64R2-N64: "-target-cpu" "mips64r2"
21 // MIPS64R2-N64: "-target-abi" "n64"
23 // RUN: %clang -target mips64-linux-gnu -### -mips64r3 -c %s 2>&1 \
24 // RUN: | FileCheck -check-prefix=MIPS64R3-N64 %s
25 // RUN: %clang -target mips-img-linux-gnu -mips64r3 -### -c %s 2>&1 \
26 // RUN: | FileCheck -check-prefix=MIPS64R3-N64 %s
27 // RUN: %clang -target mips-mti-linux-gnu -mips64r3 -### -c %s 2>&1 \
28 // RUN: | FileCheck -check-prefix=MIPS64R3-N64 %s
29 // MIPS64R3-N64: "-target-cpu" "mips64r3"
30 // MIPS64R3-N64: "-target-abi" "n64"
32 // RUN: %clang -target mips-linux-gnu -### -c %s \
33 // RUN: -mabi=32 2>&1 \
34 // RUN: | FileCheck -check-prefix=MIPS-ABI-32 %s
35 // MIPS-ABI-32: "-target-cpu" "mips32r2"
36 // MIPS-ABI-32: "-target-abi" "o32"
38 // RUN: %clang -target mips-linux-gnu -### -c %s \
39 // RUN: -mabi=o32 2>&1 \
40 // RUN: | FileCheck -check-prefix=MIPS-ABI-O32 %s
41 // MIPS-ABI-O32: "-target-cpu" "mips32r2"
42 // MIPS-ABI-O32: "-target-abi" "o32"
44 // RUN: %clang -target mips-linux-gnu -### -c %s \
45 // RUN: -mabi=n32 2>&1 \
46 // RUN: | FileCheck -check-prefix=MIPS-ABI-N32 %s
47 // MIPS-ABI-N32: "-target-cpu" "mips64r2"
48 // MIPS-ABI-N32: "-target-abi" "n32"
50 // RUN: %clang -target mips64-linux-gnu -### -c %s \
51 // RUN: -mabi=64 2>&1 \
52 // RUN: | FileCheck -check-prefix=MIPS-ABI-64 %s
53 // MIPS-ABI-64: "-target-cpu" "mips64r2"
54 // MIPS-ABI-64: "-target-abi" "n64"
56 // RUN: %clang -target mips64-linux-gnu -### -c %s \
57 // RUN: -mabi=n64 2>&1 \
58 // RUN: | FileCheck -check-prefix=MIPS-ABI-N64 %s
59 // MIPS-ABI-N64: "-target-cpu" "mips64r2"
60 // MIPS-ABI-N64: "-target-abi" "n64"
62 // RUN: not %clang -target mips64-linux-gnu -c %s \
63 // RUN: -mabi=o64 2>&1 \
64 // RUN: | FileCheck -check-prefix=MIPS-ABI-O64 %s
65 // MIPS-ABI-O64: error: unknown target ABI 'o64'
67 // RUN: not %clang -target mips-linux-gnu -c %s \
68 // RUN: -mabi=unknown 2>&1 \
69 // RUN: | FileCheck -check-prefix=MIPS-ABI-UNKNOWN %s
70 // MIPS-ABI-UNKNOWN: error: unknown target ABI 'unknown'
72 // RUN: %clang -target mips-linux-gnu -### -c %s \
73 // RUN: -march=mips1 2>&1 \
74 // RUN: | FileCheck -check-prefix=MIPS-ARCH-1 %s
75 // MIPS-ARCH-1: "-target-cpu" "mips1"
76 // MIPS-ARCH-1: "-target-abi" "o32"
78 // RUN: %clang -target mips-linux-gnu -### -c %s \
79 // RUN: -march=mips2 2>&1 \
80 // RUN: | FileCheck -check-prefix=MIPS-ARCH-2 %s
81 // MIPS-ARCH-2: "-target-cpu" "mips2"
82 // MIPS-ARCH-2: "-target-abi" "o32"
84 // RUN: %clang -target mips-linux-gnu -### -c %s \
85 // RUN: -march=mips3 2>&1 \
86 // RUN: | FileCheck -check-prefix=MIPS-ARCH-3 %s
87 // MIPS-ARCH-3: "-target-cpu" "mips3"
88 // MIPS-ARCH-3: "-target-abi" "o32"
90 // RUN: %clang -target mips-linux-gnu -### -c %s \
91 // RUN: -march=mips4 2>&1 \
92 // RUN: | FileCheck -check-prefix=MIPS-ARCH-4 %s
93 // MIPS-ARCH-4: "-target-cpu" "mips4"
94 // MIPS-ARCH-4: "-target-abi" "o32"
96 // RUN: %clang -target mips-linux-gnu -### -c %s \
97 // RUN: -march=mips5 2>&1 \
98 // RUN: | FileCheck -check-prefix=MIPS-ARCH-5 %s
99 // MIPS-ARCH-5: "-target-cpu" "mips5"
100 // MIPS-ARCH-5: "-target-abi" "o32"
102 // RUN: %clang -target mips-linux-gnu -### -c %s \
103 // RUN: -march=mips32 2>&1 \
104 // RUN: | FileCheck -check-prefix=MIPS-ARCH-32 %s
105 // MIPS-ARCH-32: "-target-cpu" "mips32"
106 // MIPS-ARCH-32: "-target-abi" "o32"
108 // RUN: %clang -target mips-linux-gnu -### -c %s \
109 // RUN: -march=mips32r2 2>&1 \
110 // RUN: | FileCheck -check-prefix=MIPS-ARCH-32R2 %s
111 // MIPS-ARCH-32R2: "-target-cpu" "mips32r2"
112 // MIPS-ARCH-32R2: "-target-abi" "o32"
114 // RUN: %clang -target mips-linux-gnu -### -c %s \
115 // RUN: -march=p5600 2>&1 \
116 // RUN: | FileCheck -check-prefix=MIPS-ARCH-P5600 %s
117 // MIPS-ARCH-P5600: "-target-cpu" "p5600"
118 // MIPS-ARCH-P5600: "-target-abi" "o32"
120 // RUN: not %clang -target mips-linux-gnu -c %s \
121 // RUN: -march=p5600 -mabi=64 2>&1 \
122 // RUN: | FileCheck -check-prefix=MIPS-ARCH-P5600-N64 %s
123 // MIPS-ARCH-P5600-N64: error: ABI 'n64' is not supported on CPU 'p5600'
125 // RUN: %clang -target mips-linux-gnu -### -c %s \
126 // RUN: -march=mips64 2>&1 \
127 // RUN: | FileCheck -check-prefix=MIPS-ARCH-3264 %s
128 // MIPS-ARCH-3264: "-target-cpu" "mips64"
129 // MIPS-ARCH-3264: "-target-abi" "o32"
131 // RUN: %clang -target mips64-linux-gnu -### -c %s \
132 // RUN: -march=mips64 2>&1 \
133 // RUN: | FileCheck -check-prefix=MIPS-ARCH-64 %s
134 // MIPS-ARCH-64: "-target-cpu" "mips64"
135 // MIPS-ARCH-64: "-target-abi" "n64"
137 // RUN: %clang -target mips64-linux-gnu -### -c %s \
138 // RUN: -march=mips64r2 2>&1 \
139 // RUN: | FileCheck -check-prefix=MIPS-ARCH-64R2 %s
140 // MIPS-ARCH-64R2: "-target-cpu" "mips64r2"
141 // MIPS-ARCH-64R2: "-target-abi" "n64"
143 // RUN: %clang -target mips64-linux-gnu -### -c %s \
144 // RUN: -march=octeon 2>&1 \
145 // RUN: | FileCheck -check-prefix=MIPS-ARCH-OCTEON %s
146 // MIPS-ARCH-OCTEON: "-target-cpu" "octeon"
147 // MIPS-ARCH-OCTEON: "-target-abi" "n64"
149 // RUN: %clang -target mips64-linux-gnu -### -c %s \
150 // RUN: -march=octeon+ 2>&1 \
151 // RUN: | FileCheck -check-prefix=MIPS-ARCH-OCTEONP %s
152 // MIPS-ARCH-OCTEONP: "-target-cpu" "octeon+"
153 // MIPS-ARCH-OCTEONP: "-target-abi" "n64"
155 // RUN: not %clang -target mips64-linux-gnu -c %s \
156 // RUN: -march=mips32 2>&1 \
157 // RUN: | FileCheck -check-prefix=MIPS-ARCH-6432 %s
158 // MIPS-ARCH-6432: error: ABI 'n64' is not supported on CPU 'mips32'
160 // RUN: not %clang -target mips-linux-gnu -c %s \
161 // RUN: -march=unknown 2>&1 \
162 // RUN: | FileCheck -check-prefix=MIPS-ARCH-UNKNOWN %s
163 // MIPS-ARCH-UNKNOWN: error: unknown target CPU 'unknown'
165 // Check adjusting of target triple accordingly to `-mabi` option.
166 // RUN: %clang -target mips64-linux-gnuabi64 -mabi=32 -### %s 2>&1 \
167 // RUN: | FileCheck -check-prefix=TARGET-O32 %s
168 // TARGET-O32: "-triple" "mips-unknown-linux-gnu"
169 // TARGET-O32: "-target-cpu" "mips32r2"
170 // TARGET-O32: "-target-abi" "o32"
171 // TARGET-O32: ld{{(.exe)?}}"
172 // TARGET-O32: "-m" "elf32btsmip"
174 // RUN: %clang -target mips-linux-gnu -mabi=n32 -### %s 2>&1 \
175 // RUN: | FileCheck -check-prefix=TARGET-N32 %s
176 // TARGET-N32: "-triple" "mips64-unknown-linux-gnuabin32"
177 // TARGET-N32: "-target-cpu" "mips64r2"
178 // TARGET-N32: "-target-abi" "n32"
179 // TARGET-N32: ld{{(.exe)?}}"
180 // TARGET-N32: "-m" "elf32btsmipn32"
182 // RUN: %clang -target mips-linux-gnu -mabi=64 -### %s 2>&1 \
183 // RUN: | FileCheck -check-prefix=TARGET-N64 %s
184 // TARGET-N64: "-triple" "mips64-unknown-linux-gnuabi64"
185 // TARGET-N64: "-target-cpu" "mips64r2"
186 // TARGET-N64: "-target-abi" "n64"
187 // TARGET-N64: ld{{(.exe)?}}"
188 // TARGET-N64: "-m" "elf64btsmip"