[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Driver / debug-options.c
blobdedd96c82da9690494eac7e454fbe2a1bd37f3ee
1 // Check to make sure clang is somewhat picky about -g options.
2 // rdar://10383444
4 // Linux.
5 // RUN: %clang -### -c -g %s -target x86_64-linux-gnu 2>&1 \
6 // RUN: | FileCheck -check-prefix=G_LIMITED -check-prefix=G_GDB %s
7 // RUN: %clang -### -c -g2 %s -target x86_64-linux-gnu 2>&1 \
8 // RUN: | FileCheck -check-prefix=G_LIMITED -check-prefix=G_GDB %s
9 // RUN: %clang -### -c -g3 %s -target x86_64-linux-gnu 2>&1 \
10 // RUN: | FileCheck -check-prefix=G_LIMITED -check-prefix=G_GDB %s
11 // RUN: %clang -### -c -ggdb %s -target x86_64-linux-gnu 2>&1 \
12 // RUN: | FileCheck -check-prefix=G_LIMITED -check-prefix=G_GDB %s
13 // RUN: %clang -### -c -ggdb1 %s -target x86_64-linux-gnu 2>&1 \
14 // RUN: | FileCheck -check-prefix=GLTO_ONLY -check-prefix=G_GDB %s
15 // RUN: %clang -### -c -ggdb3 %s -target x86_64-linux-gnu 2>&1 \
16 // RUN: | FileCheck -check-prefix=G_LIMITED -check-prefix=G_GDB %s
17 // RUN: %clang -### -c -glldb %s -target x86_64-linux-gnu 2>&1 \
18 // RUN: | FileCheck -check-prefix=G_STANDALONE -check-prefix=G_LLDB %s
19 // RUN: %clang -### -c -gsce %s -target x86_64-linux-gnu 2>&1 \
20 // RUN: | FileCheck -check-prefix=G_LIMITED -check-prefix=G_SCE %s
21 // RUN: %clang -### -c -gdbx %s -target x86_64-linux-gnu 2>&1 \
22 // RUN: | FileCheck -check-prefix=G_LIMITED -check-prefix=G_DBX %s
24 // Android.
25 // Android should always generate DWARF4.
26 // RUN: %clang -### -c -g %s -target arm-linux-androideabi 2>&1 \
27 // RUN: | FileCheck -check-prefix=G_LIMITED -check-prefix=G_DWARF4 %s
29 // Darwin.
30 // RUN: %clang -### -c -g %s -target x86_64-apple-darwin14 2>&1 \
31 // RUN: | FileCheck -check-prefix=G_STANDALONE \
32 // RUN: -check-prefix=G_DWARF2 \
33 // RUN: -check-prefix=G_LLDB %s
34 // RUN: %clang -### -c -g %s -target x86_64-apple-darwin16 2>&1 \
35 // RUN: | FileCheck -check-prefix=G_STANDALONE \
36 // RUN: -check-prefix=G_DWARF4 \
37 // RUN: -check-prefix=G_LLDB %s
38 // RUN: %clang -### -c -g2 %s -target x86_64-apple-darwin16 2>&1 \
39 // RUN: | FileCheck -check-prefix=G_STANDALONE \
40 // RUN: -check-prefix=G_DWARF4 %s
41 // RUN: %clang -### -c -g3 %s -target x86_64-apple-darwin16 2>&1 \
42 // RUN: | FileCheck -check-prefix=G_STANDALONE \
43 // RUN: -check-prefix=G_DWARF4 %s
44 // RUN: %clang -### -c -ggdb %s -target x86_64-apple-darwin16 2>&1 \
45 // RUN: | FileCheck -check-prefix=G_STANDALONE \
46 // RUN: -check-prefix=G_DWARF4 \
47 // RUN: -check-prefix=G_GDB %s
48 // RUN: %clang -### -c -ggdb1 %s -target x86_64-apple-darwin16 2>&1 \
49 // RUN: | FileCheck -check-prefix=GLTO_ONLY %s
50 // RUN: %clang -### -c -ggdb3 %s -target x86_64-apple-darwin16 2>&1 \
51 // RUN: | FileCheck -check-prefix=G_STANDALONE \
52 // RUN: -check-prefix=G_DWARF4 %s
53 // RUN: %clang -### -c -g %s -target x86_64-apple-macosx10.11 2>&1 \
54 // RUN: | FileCheck -check-prefix=G_STANDALONE \
55 // RUN: -check-prefix=G_DWARF4 %s
56 // RUN: %clang -### -c -g %s -target x86_64-apple-macosx10.10 2>&1 \
57 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s
58 // RUN: %clang -### -c -g %s -target armv7-apple-ios9.0 2>&1 \
59 // RUN: | FileCheck -check-prefix=G_STANDALONE \
60 // RUN: -check-prefix=G_DWARF4 %s
61 // RUN: %clang -### -c -g %s -target armv7-apple-ios8.0 2>&1 \
62 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s
63 // RUN: %clang -### -c -g %s -target armv7k-apple-watchos 2>&1 \
64 // RUN: | FileCheck -check-prefix=G_STANDALONE \
65 // RUN: -check-prefix=G_DWARF4 %s
66 // RUN: %clang -### -c -g %s -target arm64-apple-tvos9.0 2>&1 \
67 // RUN: | FileCheck -check-prefix=G_STANDALONE \
68 // RUN: -check-prefix=G_DWARF4 %s
69 // RUN: %clang -### -c -g %s -target x86_64-apple-driverkit19.0 2>&1 \
70 // RUN: | FileCheck -check-prefix=G_STANDALONE \
71 // RUN: -check-prefix=G_DWARF4 %s
72 // RUN: %clang -### -c -fsave-optimization-record %s \
73 // RUN: -target x86_64-apple-darwin 2>&1 \
74 // RUN: | FileCheck -check-prefix=GLTO_ONLY %s
75 // RUN: %clang -### -c -g -fsave-optimization-record %s \
76 // RUN: -target x86_64-apple-darwin 2>&1 \
77 // RUN: | FileCheck -check-prefix=G_STANDALONE %s
79 // FreeBSD.
80 // RUN: %clang -### -c -g %s -target x86_64-pc-freebsd11.0 2>&1 \
81 // RUN: | FileCheck -check-prefix=G_GDB \
82 // RUN: -check-prefix=G_DWARF2 %s
83 // RUN: %clang -### -c -g %s -target x86_64-pc-freebsd12.0 2>&1 \
84 // RUN: | FileCheck -check-prefix=G_GDB \
85 // RUN: -check-prefix=G_DWARF4 %s
87 // Windows.
88 // RUN: %clang -### -c -g %s -target x86_64-w64-windows-gnu 2>&1 \
89 // RUN: | FileCheck -check-prefix=G_GDB %s
90 // RUN: %clang -### -c -g %s -target x86_64-windows-msvc 2>&1 \
91 // RUN: | FileCheck -check-prefix=G_NOTUNING %s
92 // RUN: %clang_cl -### -c -Z7 -target x86_64-windows-msvc -- %s 2>&1 \
93 // RUN: | FileCheck -check-prefix=G_NOTUNING %s
95 // On the PS4/PS5, -g defaults to -gno-column-info, and we always generate the
96 // arange section.
97 // RUN: %clang -### -c %s -target x86_64-scei-ps4 2>&1 \
98 // RUN: | FileCheck -check-prefix=NOG_PS %s
99 // RUN: %clang -### -c %s -target x86_64-sie-ps5 2>&1 \
100 // RUN: | FileCheck -check-prefix=NOG_PS %s
101 /// PS4 will stay on v4 even if the generic default version changes.
102 // RUN: %clang -### -c %s -g -target x86_64-scei-ps4 2>&1 \
103 // RUN: | FileCheck -check-prefixes=G_DWARF4,GARANGE,G_SCE,NOCI,FWD_TMPL_PARAMS %s
104 // RUN: %clang -### -c %s -g -target x86_64-sie-ps5 2>&1 \
105 // RUN: | FileCheck -check-prefixes=G_DWARF5,GARANGE,G_SCE,NOCI,FWD_TMPL_PARAMS %s
106 // RUN: %clang -### -c %s -g -gcolumn-info -target x86_64-scei-ps4 2>&1 \
107 // RUN: | FileCheck -check-prefix=CI %s
108 // RUN: %clang -### -c %s -gsce -target x86_64-unknown-linux 2>&1 \
109 // RUN: | FileCheck -check-prefix=NOCI %s
110 // RUN: %clang -### %s -g -flto=thin -target x86_64-scei-ps4 2>&1 \
111 // RUN: | FileCheck -check-prefix=SNLDTLTOGARANGE %s
112 // RUN: %clang -### %s -g -flto=full -target x86_64-scei-ps4 2>&1 \
113 // RUN: | FileCheck -check-prefix=SNLDFLTOGARANGE %s
114 // RUN: %clang -### %s -g -flto -target x86_64-scei-ps5 2>&1 \
115 // RUN: | FileCheck -check-prefix=LLDGARANGE %s
116 // RUN: %clang -### %s -g -target x86_64-scei-ps5 2>&1 \
117 // RUN: | FileCheck -check-prefix=LDGARANGE %s
119 // On the AIX, -g defaults to limited debug info.
120 // RUN: %clang -### -c -g %s -target powerpc-ibm-aix-xcoff 2>&1 \
121 // RUN: | FileCheck -check-prefix=G_LIMITED %s
122 // RUN: %clang -### -c -g %s -target powerpc64-ibm-aix-xcoff 2>&1 \
123 // RUN: | FileCheck -check-prefix=G_LIMITED %s
124 // RUN: %clang -### -c -g %s -target powerpc-ibm-aix-xcoff 2>&1 \
125 // RUN: | FileCheck -check-prefix=G_NOTUNING %s
126 // RUN: %clang -### -c -g %s -target powerpc64-ibm-aix-xcoff 2>&1 \
127 // RUN: | FileCheck -check-prefix=G_NOTUNING %s
128 // RUN: %clang -### -c -g -gdbx %s -target powerpc-ibm-aix-xcoff 2>&1 \
129 // RUN: | FileCheck -check-prefixes=G_LIMITED,G_DBX %s
130 // RUN: %clang -### -c -g -gdbx %s -target powerpc64-ibm-aix-xcoff 2>&1 \
131 // RUN: | FileCheck -check-prefixes=G_LIMITED,G_DBX %s
133 // For DBX, -g defaults to -gstrict-dwarf.
134 // RUN: %clang -### -c -g %s -target powerpc-ibm-aix-xcoff 2>&1 \
135 // RUN: | FileCheck -check-prefix=STRICT %s
136 // RUN: %clang -### -c -g %s -target powerpc64-ibm-aix-xcoff 2>&1 \
137 // RUN: | FileCheck -check-prefix=STRICT %s
138 // RUN: %clang -### -c -g -gno-strict-dwarf %s -target powerpc-ibm-aix-xcoff \
139 // RUN: 2>&1 | FileCheck -check-prefix=NOSTRICT %s
140 // RUN: %clang -### -c -g %s -target x86_64-linux-gnu 2>&1 \
141 // RUN: | FileCheck -check-prefix=NOSTRICT %s
142 // RUN: %clang -### -c -g -ggdb %s -target powerpc-ibm-aix-xcoff 2>&1 \
143 // RUN: | FileCheck -check-prefix=NOSTRICT %s
145 // On the AIX, -g defaults to -gno-column-info.
146 // RUN: %clang -### -c -g %s -target powerpc-ibm-aix-xcoff 2>&1 \
147 // RUN: | FileCheck -check-prefix=NOCI %s
148 // RUN: %clang -### -c -g %s -target powerpc64-ibm-aix-xcoff 2>&1 \
149 // RUN: | FileCheck -check-prefix=NOCI %s
150 // RUN: %clang -### -c -g %s -target powerpc-ibm-aix-xcoff -gcolumn-info 2>&1 \
151 // RUN: | FileCheck -check-prefix=CI %s
152 // RUN: %clang -### -c -g %s -target powerpc64-ibm-aix-xcoff -gcolumn-info \
153 // RUN: 2>&1 | FileCheck -check-prefix=CI %s
155 // WebAssembly.
156 // WebAssembly should default to DWARF4.
157 // RUN: %clang -### -c -g %s -target wasm32 2>&1 \
158 // RUN: | FileCheck -check-prefix=G_DWARF4 %s
159 // RUN: %clang -### -c -g %s -target wasm64 2>&1 \
160 // RUN: | FileCheck -check-prefix=G_DWARF4 %s
162 // RUN: %clang -### -c -gdwarf-2 %s 2>&1 \
163 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s
165 // RUN: not %clang -### -c -gfoo %s 2>&1 | FileCheck -check-prefix=G_ERR %s
166 // RUN: %clang -### -c -g -g0 %s 2>&1 | FileCheck -check-prefix=G_NO %s
167 // RUN: %clang -### -c -ggdb0 %s 2>&1 | FileCheck -check-prefix=G_NO %s
168 // RUN: %clang -### -c -glldb -g0 %s 2>&1 | FileCheck -check-prefix=G_NO %s
169 // RUN: %clang -### -c -glldb -g1 %s 2>&1 \
170 // RUN: | FileCheck -check-prefix=GLTO_ONLY -check-prefix=G_LLDB %s
172 // PS4 defaults to sce; -ggdb0 changes tuning but turns off debug info,
173 // then -g turns it back on without affecting tuning.
174 // RUN: %clang -### -c -ggdb0 -g -target x86_64-scei-ps4 %s 2>&1 \
175 // RUN: | FileCheck -check-prefix=G_GDB %s
177 // RUN: %clang -### -c -g1 %s 2>&1 \
178 // RUN: | FileCheck -check-prefix=GLTO_ONLY %s
179 // RUN: %clang -### -c -gmlt %s 2>&1 \
180 // RUN: | FileCheck -check-prefix=GLTO_ONLY %s
181 // RUN: %clang -### -c -gline-tables-only %s 2>&1 \
182 // RUN: | FileCheck -check-prefix=GLTO_ONLY %s
183 // RUN: %clang -### -c -gline-tables-only %s -target x86_64-apple-darwin 2>&1 \
184 // RUN: | FileCheck -check-prefix=GLTO_ONLY %s
185 // RUN: %clang -### -c -gline-tables-only %s -target i686-pc-openbsd 2>&1 \
186 // RUN: | FileCheck -check-prefix=GLTO_ONLY_DWARF2 %s
187 // RUN: %clang -### -c -gline-tables-only %s -target x86_64-pc-freebsd10.0 2>&1 \
188 // RUN: | FileCheck -check-prefix=GLTO_ONLY_DWARF2 %s
189 // RUN: %clang -### -c -gline-tables-only -g %s -target x86_64-linux-gnu 2>&1 \
190 // RUN: | FileCheck -check-prefix=G_ONLY %s
191 // RUN: %clang -### -c -gline-tables-only -g %s -target x86_64-apple-darwin16 2>&1 \
192 // RUN: | FileCheck -check-prefix=G_STANDALONE -check-prefix=G_DWARF4 %s
193 // RUN: %clang -### -c -gline-tables-only -g %s -target i686-pc-openbsd 2>&1 \
194 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s
195 // RUN: %clang -### -c -gline-tables-only -g %s -target x86_64-pc-freebsd10.0 2>&1 \
196 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s
197 // RUN: %clang -### -c -gline-tables-only -g %s -target i386-pc-solaris 2>&1 \
198 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s
199 // RUN: %clang -### -c -gline-tables-only -g0 %s 2>&1 \
200 // RUN: | FileCheck -check-prefix=GLTO_NO %s
202 // RUN: %clang -### -c -gline-directives-only %s -target x86_64-apple-darwin 2>&1 \
203 // RUN: | FileCheck -check-prefix=GLIO_ONLY %s
204 // RUN: %clang -### -c -gline-directives-only %s -target i686-pc-openbsd 2>&1 \
205 // RUN: | FileCheck -check-prefix=GLIO_ONLY_DWARF2 %s
206 // RUN: %clang -### -c -gline-directives-only %s -target x86_64-pc-freebsd10.0 2>&1 \
207 // RUN: | FileCheck -check-prefix=GLIO_ONLY_DWARF2 %s
208 // RUN: %clang -### -c -gline-directives-only -g %s -target x86_64-linux-gnu 2>&1 \
209 // RUN: | FileCheck -check-prefix=G_ONLY %s
210 // RUN: %clang -### -c -gline-directives-only -g %s -target x86_64-apple-darwin16 2>&1 \
211 // RUN: | FileCheck -check-prefix=G_STANDALONE -check-prefix=G_DWARF4 %s
212 // RUN: %clang -### -c -gline-directives-only -g %s -target i686-pc-openbsd 2>&1 \
213 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s
214 // RUN: %clang -### -c -gline-directives-only -g %s -target x86_64-pc-freebsd10.0 2>&1 \
215 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s
216 // RUN: %clang -### -c -gline-directives-only -g %s -target i386-pc-solaris 2>&1 \
217 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s
218 // RUN: %clang -### -c -gline-directives-only -g0 %s 2>&1 \
219 // RUN: | FileCheck -check-prefix=GLIO_NO %s
221 // RUN: %clang -### -c -grecord-gcc-switches %s 2>&1 \
222 // | FileCheck -check-prefix=GRECORD %s
223 // RUN: %clang -### -c -gno-record-gcc-switches %s 2>&1 \
224 // | FileCheck -check-prefix=GNO_RECORD %s
225 // RUN: %clang -### -c -grecord-gcc-switches -gno-record-gcc-switches %s 2>&1 \
226 // | FileCheck -check-prefix=GNO_RECORD %s/
227 // RUN: %clang -### -c -grecord-gcc-switches -o - %s 2>&1 \
228 // | FileCheck -check-prefix=GRECORD_O %s
229 // RUN: %clang -### -c -O3 -ffunction-sections -grecord-gcc-switches %s 2>&1 \
230 // | FileCheck -check-prefix=GRECORD_OPT %s
232 // RUN: %clang -### -c -grecord-command-line %s 2>&1 \
233 // | FileCheck -check-prefix=GRECORD %s
234 // RUN: %clang -### -c -gno-record-command-line %s 2>&1 \
235 // | FileCheck -check-prefix=GNO_RECORD %s
236 // RUN: %clang -### -c -grecord-command-line -gno-record-command-line %s 2>&1 \
237 // | FileCheck -check-prefix=GNO_RECORD %s/
238 // RUN: %clang -### -c -grecord-command-line -o - %s 2>&1 \
239 // | FileCheck -check-prefix=GRECORD_O %s
240 // RUN: %clang -### -c -O3 -ffunction-sections -grecord-command-line %s 2>&1 \
241 // | FileCheck -check-prefix=GRECORD_OPT %s
243 // RUN: %clang -### -c -gstrict-dwarf -gno-strict-dwarf %s 2>&1 \
244 // RUN: | FileCheck -check-prefix=GIGNORE %s
246 // RUN: %clang -### -c -ggnu-pubnames %s 2>&1 | FileCheck -check-prefix=GPUB %s
247 // RUN: %clang -### -c -ggdb %s 2>&1 | FileCheck -check-prefix=NOPUB %s
248 // RUN: %clang -### -c -ggnu-pubnames -gno-gnu-pubnames %s 2>&1 | FileCheck -check-prefix=NOPUB %s
249 // RUN: %clang -### -c -ggnu-pubnames -gno-pubnames %s 2>&1 | FileCheck -check-prefix=NOPUB %s
251 // RUN: %clang -### -c -gpubnames %s 2>&1 | FileCheck -check-prefix=PUB %s
252 // RUN: %clang -### -c -ggdb %s 2>&1 | FileCheck -check-prefix=NOPUB %s
253 // RUN: %clang -### -c -gpubnames -gno-gnu-pubnames %s 2>&1 | FileCheck -check-prefix=NOPUB %s
254 // RUN: %clang -### -c -gpubnames -gno-pubnames %s 2>&1 | FileCheck -check-prefix=NOPUB %s
256 // RUN: %clang -### -c -gsplit-dwarf -g -gno-pubnames %s 2>&1 | FileCheck -check-prefix=NOPUB %s
258 // RUN: %clang -### -c -fdebug-ranges-base-address %s 2>&1 | FileCheck -check-prefix=RNGBSE %s
259 // RUN: %clang -### -c %s 2>&1 | FileCheck -check-prefix=NORNGBSE %s
260 // RUN: %clang -### -c -fdebug-ranges-base-address -fno-debug-ranges-base-address %s 2>&1 | FileCheck -check-prefix=NORNGBSE %s
262 // RUN: %clang -### -c -glldb %s 2>&1 | FileCheck -check-prefix=NOPUB %s
263 // RUN: %clang -### -c -glldb -gno-pubnames %s 2>&1 | FileCheck -check-prefix=NOPUB %s
265 // RUN: %clang -### -c -gdwarf-aranges %s 2>&1 | FileCheck -check-prefix=GARANGE %s
267 // RUN: %clang -### -fdebug-types-section -target x86_64-unknown-linux %s 2>&1 \
268 // RUN: | FileCheck -check-prefix=FDTS %s
270 // RUN: %clang -### -fdebug-types-section -fno-debug-types-section -target x86_64-unknown-linux %s 2>&1 \
271 // RUN: | FileCheck -check-prefix=NOFDTS %s
273 // RUN: %clang -### -fdebug-types-section -target wasm32-unknown-unknown %s 2>&1 \
274 // RUN: | FileCheck -check-prefix=FDTS %s
276 // RUN: %clang -### -fdebug-types-section -target x86_64-apple-darwin %s 2>&1 \
277 // RUN: | FileCheck -check-prefix=FDTSE %s
279 // RUN: %clang -### -fdebug-types-section -fno-debug-types-section -target x86_64-apple-darwin %s 2>&1 \
280 // RUN: | FileCheck -check-prefix=NOFDTSE %s
282 // RUN: %clang -### -g -gno-column-info %s 2>&1 \
283 // RUN: | FileCheck -check-prefix=NOCI %s
285 // RUN: %clang -### -g -target x86_64-unknown-unknown %s 2>&1 \
286 // | FileCheck -check-prefix=CI %s
288 // RUN: %clang -### -gmodules %s 2>&1 \
289 // RUN: | FileCheck -check-prefix=GEXTREFS %s
291 // RUN: %clang -### -gmodules -g %s 2>&1 \
292 // RUN: | FileCheck -check-prefix=GEXTREFS %s
294 // RUN: %clang -### -gline-tables-only -gmodules %s 2>&1 \
295 // RUN: | FileCheck -check-prefix=GEXTREFS %s
297 // RUN: %clang -### -gmodules -gline-tables-only %s 2>&1 \
298 // RUN: | FileCheck -check-prefix=GLTO_ONLY %s
300 // RUN: %clang -### -target %itanium_abi_triple -gmodules -gline-directives-only %s 2>&1 \
301 // RUN: | FileCheck -check-prefix=GLIO_ONLY %s
303 // RUN: %clang -### -gmodules -gno-modules %s 2>&1 \
304 // RUN: | FileCheck -check-prefix=NOGEXTREFS %s
306 // RUN: %clang -### -gno-modules %s 2>&1 | FileCheck -check-prefix=GNOMOD %s
308 // NOG_PS: "-cc1"
309 // NOG_PS-NOT: "-dwarf-version=
310 // NOG_PS: "-generate-arange-section"
311 // NOG_PS-NOT: "-dwarf-version=
313 // G_ERR: error: unknown argument:
315 // G_NO: "-cc1"
316 // G_NO-NOT: -debug-info-kind=
318 // GLTO_ONLY: "-cc1"
319 // GLTO_ONLY-NOT: "-dwarf-ext-refs"
320 // GLTO_ONLY: "-debug-info-kind=line-tables-only"
321 // GLTO_ONLY-NOT: "-dwarf-ext-refs"
323 // GLTO_ONLY_DWARF2: "-cc1"
324 // GLTO_ONLY_DWARF2: "-debug-info-kind=line-tables-only"
325 // GLTO_ONLY_DWARF2: "-dwarf-version=2"
327 // GLIO_ONLY: "-cc1"
328 // GLIO_ONLY-NOT: "-dwarf-ext-refs"
329 // GLIO_ONLY: "-debug-info-kind=line-directives-only"
330 // GLIO_ONLY-NOT: "-dwarf-ext-refs"
332 // GLIO_ONLY_DWARF2: "-cc1"
333 // GLIO_ONLY_DWARF2: "-debug-info-kind=line-directives-only"
334 // GLIO_ONLY_DWARF2: "-dwarf-version=2"
336 // G_ONLY: "-cc1"
337 // G_ONLY: "-debug-info-kind=constructor"
339 // These tests assert that "-gline-tables-only" "-g" uses the latter,
340 // but otherwise not caring about the DebugInfoKind.
341 // G_ONLY_DWARF2: "-cc1"
342 // G_ONLY_DWARF2: "-debug-info-kind={{standalone|constructor}}"
343 // G_ONLY_DWARF2: "-dwarf-version=2"
345 // G_STANDALONE: "-cc1"
346 // G_STANDALONE: "-debug-info-kind=standalone"
347 // G_LIMITED: "-cc1"
348 // G_LIMITED: "-debug-info-kind=constructor"
349 // G_DWARF2: "-dwarf-version=2"
350 // G_DWARF4-DAG: "-dwarf-version=4"
351 // G_DWARF5-DAG: "-dwarf-version=5"
353 // G_GDB: "-debugger-tuning=gdb"
354 // G_LLDB: "-debugger-tuning=lldb"
355 // G_SCE-DAG: "-debugger-tuning=sce"
356 // G_DBX: "-debugger-tuning=dbx"
358 // STRICT: "-gstrict-dwarf"
359 // NOSTRICT-NOT: "-gstrict-dwarf"
361 // G_NOTUNING: "-cc1"
362 // G_NOTUNING-NOT: "-debugger-tuning="
364 // This tests asserts that "-gline-tables-only" "-g0" disables debug info.
365 // GLTO_NO: "-cc1"
366 // GLTO_NO-NOT: -debug-info-kind=
368 // This tests asserts that "-gline-directives-only" "-g0" disables debug info.
369 // GLIO_NO: "-cc1"
370 // GLIO_NO-NOT: -debug-info-kind=
372 // GRECORD: "-dwarf-debug-flags"
373 // GRECORD: -### -c -grecord-gcc-switches
375 // GNO_RECORD-NOT: "-dwarf-debug-flags"
376 // GNO_RECORD-NOT: -### -c -grecord-gcc-switches
378 // GRECORD_O: "-dwarf-debug-flags"
379 // GRECORD_O: -### -c -grecord-gcc-switches -o -
381 // GRECORD_OPT: -### -c -O3 -ffunction-sections -grecord-gcc-switches
383 // GIGNORE-NOT: "argument unused during compilation"
385 // GPUB: -ggnu-pubnames
386 // NOPUB-NOT: -ggnu-pubnames
387 // NOPUB-NOT: -gpubnames
390 // LDGARANGE: {{".*ld.*"}} {{.*}}
391 // LDGARANGE-NOT: "-plugin-opt=-generate-arange-section"
392 // LLDGARANGE: {{".*lld.*"}} {{.*}} "-plugin-opt=-generate-arange-section"
393 // SNLDTLTOGARANGE: {{".*orbis-ld.*"}} {{.*}} "-lto-thin-debug-options=-generate-arange-section"
394 // SNLDFLTOGARANGE: {{".*orbis-ld.*"}} {{.*}} "-lto-debug-options=-generate-arange-section"
396 // PUB: -gpubnames
398 // RNGBSE: -fdebug-ranges-base-address
399 // NORNGBSE-NOT: -fdebug-ranges-base-address
401 // GARANGE-DAG: -generate-arange-section
403 // FDTS: "-mllvm" "-generate-type-units"
404 // FDTSE: error: unsupported option '-fdebug-types-section' for target 'x86_64-apple-darwin'
406 // NOFDTS-NOT: "-mllvm" "-generate-type-units"
407 // NOFDTSE-NOT: error: unsupported option '-fdebug-types-section' for target 'x86_64-apple-darwin'
409 // CI-NOT: "-gno-column-info"
411 // NOCI-DAG: "-gno-column-info"
413 // GEXTREFS: "-dwarf-ext-refs" "-fmodule-format=obj"
414 // GEXTREFS: "-debug-info-kind={{standalone|constructor}}"
415 // NOGEXTREFS-NOT: -dwarf-ext-refs
417 // GNOMOD-NOT: -debug-info-kind=
419 // RUN: not %clang -cc1 -debug-info-kind=watkind 2>&1 | FileCheck -check-prefix=BADSTRING1 %s
420 // BADSTRING1: error: invalid value 'watkind' in '-debug-info-kind=watkind'
421 // RUN: not %clang -cc1 -debugger-tuning=gmodal 2>&1 | FileCheck -check-prefix=BADSTRING2 %s
422 // BADSTRING2: error: invalid value 'gmodal' in '-debugger-tuning=gmodal'
424 // RUN: %clang -### -fdebug-macro %s 2>&1 | FileCheck -check-prefix=MACRO %s
425 // RUN: %clang -### -fno-debug-macro %s 2>&1 | FileCheck -check-prefix=NOMACRO %s
426 // RUN: %clang -### %s 2>&1 | FileCheck -check-prefix=NOMACRO %s
427 // MACRO: "-debug-info-macro"
428 // NOMACRO-NOT: "-debug-info-macro"
430 // RUN: %clang -### -gdwarf-5 -gembed-source %s 2>&1 | FileCheck -check-prefix=GEMBED_5 %s
431 // RUN: %clang -### -gdwarf-2 -gembed-source %s 2>&1 | FileCheck -check-prefix=GEMBED_2 %s
432 // RUN: %clang -### -gdwarf-5 -gno-embed-source %s 2>&1 | FileCheck -check-prefix=NOGEMBED_5 %s
433 // RUN: %clang -### -gdwarf-2 -gno-embed-source %s 2>&1 | FileCheck -check-prefix=NOGEMBED_2 %s
435 // GEMBED_5: "-gembed-source"
436 // GEMBED_2: error: invalid argument '-gembed-source' only allowed with '-gdwarf-5'
437 // NOGEMBED_5-NOT: "-gembed-source"
438 // NOGEMBED_2-NOT: error: invalid argument '-gembed-source' only allowed with '-gdwarf-5'
440 // RUN: %clang -### -g -fno-eliminate-unused-debug-types -c %s 2>&1 \
441 // RUN: | FileCheck -check-prefix=DEBUG_UNUSED_TYPES %s
442 // DEBUG_UNUSED_TYPES: "-debug-info-kind=unused-types"
443 // DEBUG_UNUSED_TYPES-NOT: "-debug-info-kind=limited"
444 // RUN: %clang -### -g -feliminate-unused-debug-types -c %s 2>&1 \
445 // RUN: | FileCheck -check-prefix=NO_DEBUG_UNUSED_TYPES %s
446 // RUN: %clang -### -fno-eliminate-unused-debug-types -g1 -c %s 2>&1 \
447 // RUN: | FileCheck -check-prefix=NO_DEBUG_UNUSED_TYPES %s
448 // NO_DEBUG_UNUSED_TYPES: "-debug-info-kind={{constructor|line-tables-only|standalone}}"
449 // NO_DEBUG_UNUSED_TYPES-NOT: "-debug-info-kind=unused-types"
451 // RUN: %clang -### -c -gdwarf-5 -gdwarf64 -target x86_64 %s 2>&1 | FileCheck -check-prefix=GDWARF64_ON %s
452 // RUN: %clang -### -c -gdwarf-4 -gdwarf64 -target x86_64 %s 2>&1 | FileCheck -check-prefix=GDWARF64_ON %s
453 // RUN: %clang -### -c -gdwarf-3 -gdwarf64 -target x86_64 %s 2>&1 | FileCheck -check-prefix=GDWARF64_ON %s
454 // RUN: %clang -### -c -gdwarf-2 -gdwarf64 -target x86_64 %s 2>&1 | FileCheck -check-prefix=GDWARF64_VER %s
455 // RUN: %clang -### -c -gdwarf-4 -gdwarf64 -target x86_64 -target x86_64 %s 2>&1 \
456 // RUN: | FileCheck -check-prefix=GDWARF64_ON %s
457 // RUN: %clang -### -c -gdwarf-4 -gdwarf64 -target i386-linux-gnu %s 2>&1 \
458 // RUN: | FileCheck -check-prefix=GDWARF64_32ARCH %s
459 // RUN: %clang -### -c -gdwarf-4 -gdwarf64 -target x86_64-apple-darwin %s 2>&1 \
460 // RUN: | FileCheck -check-prefix=GDWARF64_ELF %s
462 // GDWARF64_ON: "-gdwarf64"
463 // GDWARF64_VER: error: invalid argument '-gdwarf64' only allowed with 'DWARFv3 or greater'
464 // GDWARF64_32ARCH: error: invalid argument '-gdwarf64' only allowed with '64 bit architecture'
465 // GDWARF64_ELF: error: invalid argument '-gdwarf64' only allowed with 'ELF platforms'
467 /// Default to -fno-dwarf-directory-asm for -fno-integrated-as before DWARF v5.
468 // RUN: %clang -### -target x86_64 -c -gdwarf-2 %s 2>&1 | FileCheck --check-prefix=DIRECTORY %s
469 // RUN: %clang -### -target x86_64 -c -gdwarf-5 %s 2>&1 | FileCheck --check-prefix=DIRECTORY %s
470 // RUN: %clang -### -target x86_64 -c -gdwarf-4 -fno-integrated-as %s 2>&1 | FileCheck --check-prefix=NODIRECTORY %s
471 // RUN: %clang -### -target x86_64 -c -gdwarf-5 -fno-integrated-as %s 2>&1 | FileCheck --check-prefix=DIRECTORY %s
473 // RUN: %clang -### -target x86_64 -c -gdwarf-4 -fno-dwarf-directory-asm %s 2>&1 | FileCheck --check-prefix=NODIRECTORY %s
475 // DIRECTORY-NOT: "-fno-dwarf-directory-asm"
476 // NODIRECTORY: "-fno-dwarf-directory-asm"
478 // RUN: %clang -### -target x86_64 -c -g -gsimple-template-names %s 2>&1 | FileCheck --check-prefixes=SIMPLE_TMPL_NAMES,FWD_TMPL_PARAMS %s
479 // SIMPLE_TMPL_NAMES: -gsimple-template-names=simple
480 // FWD_TMPL_PARAMS-DAG: -debug-forward-template-params
481 // RUN: not %clang -### -target x86_64 -c -g -gsimple-template-names=mangled %s 2>&1 | FileCheck --check-prefix=MANGLED_TEMP_NAMES %s
482 // MANGLED_TEMP_NAMES: error: unknown argument '-gsimple-template-names=mangled'; did you mean '-Xclang -gsimple-template-names=mangled'
483 // RUN: %clang -### -target x86_64 -c -g %s 2>&1 | FileCheck --check-prefix=FULL_TEMP_NAMES --implicit-check-not=debug-forward-template-params %s
484 // FULL_TEMP_NAMES-NOT: -gsimple-template-names