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