1 // Check to make sure clang is somewhat picky about -g options. 2 // rdar://10383444 3 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 23 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 28 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 -fsave-optimization-record %s \ 70 // RUN: -target x86_64-apple-darwin 2>&1 \ 71 // RUN: | FileCheck -check-prefix=GLTO_ONLY %s 72 // RUN: %clang -### -c -g -fsave-optimization-record %s \ 73 // RUN: -target x86_64-apple-darwin 2>&1 \ 74 // RUN: | FileCheck -check-prefix=G_STANDALONE %s 75 76 // FreeBSD. 77 // RUN: %clang -### -c -g %s -target x86_64-pc-freebsd11.0 2>&1 \ 78 // RUN: | FileCheck -check-prefix=G_GDB \ 79 // RUN: -check-prefix=G_DWARF2 %s 80 // RUN: %clang -### -c -g %s -target x86_64-pc-freebsd12.0 2>&1 \ 81 // RUN: | FileCheck -check-prefix=G_GDB \ 82 // RUN: -check-prefix=G_DWARF4 %s 83 84 // Windows. 85 // RUN: %clang -### -c -g %s -target x86_64-w64-windows-gnu 2>&1 \ 86 // RUN: | FileCheck -check-prefix=G_GDB %s 87 // RUN: %clang -### -c -g %s -target x86_64-windows-msvc 2>&1 \ 88 // RUN: | FileCheck -check-prefix=G_NOTUNING %s 89 // RUN: %clang_cl -### -c -Z7 -target x86_64-windows-msvc -- %s 2>&1 \ 90 // RUN: | FileCheck -check-prefix=G_NOTUNING %s 91 92 // On the PS4/PS5, -g defaults to -gno-column-info, and we always generate the 93 // arange section. 94 // RUN: %clang -### -c %s -target x86_64-scei-ps4 2>&1 \ 95 // RUN: | FileCheck -check-prefix=NOG_PS %s 96 // RUN: %clang -### -c %s -target x86_64-sie-ps5 2>&1 \ 97 // RUN: | FileCheck -check-prefix=NOG_PS %s 98 /// PS4 will stay on v4 even if the generic default version changes. 99 // RUN: %clang -### -c %s -g -target x86_64-scei-ps4 2>&1 \ 100 // RUN: | FileCheck -check-prefixes=G_DWARF4,GARANGE,G_SCE,NOCI,FWD_TMPL_PARAMS %s 101 // RUN: %clang -### -c %s -g -target x86_64-sie-ps5 2>&1 \ 102 // RUN: | FileCheck -check-prefixes=G_DWARF5,GARANGE,G_SCE,NOCI,FWD_TMPL_PARAMS %s 103 // RUN: %clang -### -c %s -g -gcolumn-info -target x86_64-scei-ps4 2>&1 \ 104 // RUN: | FileCheck -check-prefix=CI %s 105 // RUN: %clang -### -c %s -gsce -target x86_64-unknown-linux 2>&1 \ 106 // RUN: | FileCheck -check-prefix=NOCI %s 107 108 // On the AIX, -g defaults to -gdbx and limited debug info. 109 // RUN: %clang -### -c -g %s -target powerpc-ibm-aix-xcoff 2>&1 \ 110 // RUN: | FileCheck -check-prefix=G_LIMITED -check-prefix=G_DBX %s 111 // RUN: %clang -### -c -g %s -target powerpc64-ibm-aix-xcoff 2>&1 \ 112 // RUN: | FileCheck -check-prefix=G_LIMITED -check-prefix=G_DBX %s 113 114 // For DBX, -g defaults to -gstrict-dwarf. 115 // RUN: %clang -### -c -g %s -target powerpc-ibm-aix-xcoff 2>&1 \ 116 // RUN: | FileCheck -check-prefix=STRICT %s 117 // RUN: %clang -### -c -g %s -target powerpc64-ibm-aix-xcoff 2>&1 \ 118 // RUN: | FileCheck -check-prefix=STRICT %s 119 // RUN: %clang -### -c -g -gno-strict-dwarf %s -target powerpc-ibm-aix-xcoff \ 120 // RUN: 2>&1 | FileCheck -check-prefix=NOSTRICT %s 121 // RUN: %clang -### -c -g %s -target x86_64-linux-gnu 2>&1 \ 122 // RUN: | FileCheck -check-prefix=NOSTRICT %s 123 // RUN: %clang -### -c -g -ggdb %s -target powerpc-ibm-aix-xcoff 2>&1 \ 124 // RUN: | FileCheck -check-prefix=NOSTRICT %s 125 126 // On the AIX, -g defaults to -gno-column-info. 127 // RUN: %clang -### -c -g %s -target powerpc-ibm-aix-xcoff 2>&1 \ 128 // RUN: | FileCheck -check-prefix=NOCI %s 129 // RUN: %clang -### -c -g %s -target powerpc64-ibm-aix-xcoff 2>&1 \ 130 // RUN: | FileCheck -check-prefix=NOCI %s 131 // RUN: %clang -### -c -g %s -target powerpc-ibm-aix-xcoff -gcolumn-info 2>&1 \ 132 // RUN: | FileCheck -check-prefix=CI %s 133 // RUN: %clang -### -c -g %s -target powerpc64-ibm-aix-xcoff -gcolumn-info \ 134 // RUN: 2>&1 | FileCheck -check-prefix=CI %s 135 136 // WebAssembly. 137 // WebAssembly should default to DWARF4. 138 // RUN: %clang -### -c -g %s -target wasm32 2>&1 \ 139 // RUN: | FileCheck -check-prefix=G_DWARF4 %s 140 // RUN: %clang -### -c -g %s -target wasm64 2>&1 \ 141 // RUN: | FileCheck -check-prefix=G_DWARF4 %s 142 143 // RUN: %clang -### -c -gdwarf-2 %s 2>&1 \ 144 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s 145 // 146 // RUN: not %clang -### -c -gfoo %s 2>&1 | FileCheck -check-prefix=G_ERR %s 147 // RUN: %clang -### -c -g -g0 %s 2>&1 | FileCheck -check-prefix=G_NO %s 148 // RUN: %clang -### -c -ggdb0 %s 2>&1 | FileCheck -check-prefix=G_NO %s 149 // RUN: %clang -### -c -glldb -g0 %s 2>&1 | FileCheck -check-prefix=G_NO %s 150 // RUN: %clang -### -c -glldb -g1 %s 2>&1 \ 151 // RUN: | FileCheck -check-prefix=GLTO_ONLY -check-prefix=G_LLDB %s 152 // 153 // PS4 defaults to sce; -ggdb0 changes tuning but turns off debug info, 154 // then -g turns it back on without affecting tuning. 155 // RUN: %clang -### -c -ggdb0 -g -target x86_64-scei-ps4 %s 2>&1 \ 156 // RUN: | FileCheck -check-prefix=G_GDB %s 157 // 158 // RUN: %clang -### -c -g1 %s 2>&1 \ 159 // RUN: | FileCheck -check-prefix=GLTO_ONLY %s 160 // RUN: %clang -### -c -gmlt %s 2>&1 \ 161 // RUN: | FileCheck -check-prefix=GLTO_ONLY %s 162 // RUN: %clang -### -c -gline-tables-only %s 2>&1 \ 163 // RUN: | FileCheck -check-prefix=GLTO_ONLY %s 164 // RUN: %clang -### -c -gline-tables-only %s -target x86_64-apple-darwin 2>&1 \ 165 // RUN: | FileCheck -check-prefix=GLTO_ONLY %s 166 // RUN: %clang -### -c -gline-tables-only %s -target i686-pc-openbsd 2>&1 \ 167 // RUN: | FileCheck -check-prefix=GLTO_ONLY_DWARF2 %s 168 // RUN: %clang -### -c -gline-tables-only %s -target x86_64-pc-freebsd10.0 2>&1 \ 169 // RUN: | FileCheck -check-prefix=GLTO_ONLY_DWARF2 %s 170 // RUN: %clang -### -c -gline-tables-only -g %s -target x86_64-linux-gnu 2>&1 \ 171 // RUN: | FileCheck -check-prefix=G_ONLY %s 172 // RUN: %clang -### -c -gline-tables-only -g %s -target x86_64-apple-darwin16 2>&1 \ 173 // RUN: | FileCheck -check-prefix=G_STANDALONE -check-prefix=G_DWARF4 %s 174 // RUN: %clang -### -c -gline-tables-only -g %s -target i686-pc-openbsd 2>&1 \ 175 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s 176 // RUN: %clang -### -c -gline-tables-only -g %s -target x86_64-pc-freebsd10.0 2>&1 \ 177 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s 178 // RUN: %clang -### -c -gline-tables-only -g %s -target i386-pc-solaris 2>&1 \ 179 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s 180 // RUN: %clang -### -c -gline-tables-only -g0 %s 2>&1 \ 181 // RUN: | FileCheck -check-prefix=GLTO_NO %s 182 // 183 // RUN: %clang -### -c -gline-directives-only %s -target x86_64-apple-darwin 2>&1 \ 184 // RUN: | FileCheck -check-prefix=GLIO_ONLY %s 185 // RUN: %clang -### -c -gline-directives-only %s -target i686-pc-openbsd 2>&1 \ 186 // RUN: | FileCheck -check-prefix=GLIO_ONLY_DWARF2 %s 187 // RUN: %clang -### -c -gline-directives-only %s -target x86_64-pc-freebsd10.0 2>&1 \ 188 // RUN: | FileCheck -check-prefix=GLIO_ONLY_DWARF2 %s 189 // RUN: %clang -### -c -gline-directives-only -g %s -target x86_64-linux-gnu 2>&1 \ 190 // RUN: | FileCheck -check-prefix=G_ONLY %s 191 // RUN: %clang -### -c -gline-directives-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-directives-only -g %s -target i686-pc-openbsd 2>&1 \ 194 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s 195 // RUN: %clang -### -c -gline-directives-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-directives-only -g %s -target i386-pc-solaris 2>&1 \ 198 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s 199 // RUN: %clang -### -c -gline-directives-only -g0 %s 2>&1 \ 200 // RUN: | FileCheck -check-prefix=GLIO_NO %s 201 // 202 // RUN: %clang -### -c -grecord-gcc-switches %s 2>&1 \ 203 // | FileCheck -check-prefix=GRECORD %s 204 // RUN: %clang -### -c -gno-record-gcc-switches %s 2>&1 \ 205 // | FileCheck -check-prefix=GNO_RECORD %s 206 // RUN: %clang -### -c -grecord-gcc-switches -gno-record-gcc-switches %s 2>&1 \ 207 // | FileCheck -check-prefix=GNO_RECORD %s/ 208 // RUN: %clang -### -c -grecord-gcc-switches -o - %s 2>&1 \ 209 // | FileCheck -check-prefix=GRECORD_O %s 210 // RUN: %clang -### -c -O3 -ffunction-sections -grecord-gcc-switches %s 2>&1 \ 211 // | FileCheck -check-prefix=GRECORD_OPT %s 212 // 213 // RUN: %clang -### -c -grecord-command-line %s 2>&1 \ 214 // | FileCheck -check-prefix=GRECORD %s 215 // RUN: %clang -### -c -gno-record-command-line %s 2>&1 \ 216 // | FileCheck -check-prefix=GNO_RECORD %s 217 // RUN: %clang -### -c -grecord-command-line -gno-record-command-line %s 2>&1 \ 218 // | FileCheck -check-prefix=GNO_RECORD %s/ 219 // RUN: %clang -### -c -grecord-command-line -o - %s 2>&1 \ 220 // | FileCheck -check-prefix=GRECORD_O %s 221 // RUN: %clang -### -c -O3 -ffunction-sections -grecord-command-line %s 2>&1 \ 222 // | FileCheck -check-prefix=GRECORD_OPT %s 223 // 224 // RUN: %clang -### -c -gstrict-dwarf -gno-strict-dwarf %s 2>&1 \ 225 // RUN: | FileCheck -check-prefix=GIGNORE %s 226 // 227 // RUN: %clang -### -c -ggnu-pubnames %s 2>&1 | FileCheck -check-prefix=GPUB %s 228 // RUN: %clang -### -c -ggdb %s 2>&1 | FileCheck -check-prefix=NOPUB %s 229 // RUN: %clang -### -c -ggnu-pubnames -gno-gnu-pubnames %s 2>&1 | FileCheck -check-prefix=NOPUB %s 230 // RUN: %clang -### -c -ggnu-pubnames -gno-pubnames %s 2>&1 | FileCheck -check-prefix=NOPUB %s 231 // 232 // RUN: %clang -### -c -gpubnames %s 2>&1 | FileCheck -check-prefix=PUB %s 233 // RUN: %clang -### -c -ggdb %s 2>&1 | FileCheck -check-prefix=NOPUB %s 234 // RUN: %clang -### -c -gpubnames -gno-gnu-pubnames %s 2>&1 | FileCheck -check-prefix=NOPUB %s 235 // RUN: %clang -### -c -gpubnames -gno-pubnames %s 2>&1 | FileCheck -check-prefix=NOPUB %s 236 // 237 // RUN: %clang -### -c -gsplit-dwarf -g -gno-pubnames %s 2>&1 | FileCheck -check-prefix=NOPUB %s 238 // 239 // RUN: %clang -### -c -fdebug-ranges-base-address %s 2>&1 | FileCheck -check-prefix=RNGBSE %s 240 // RUN: %clang -### -c %s 2>&1 | FileCheck -check-prefix=NORNGBSE %s 241 // RUN: %clang -### -c -fdebug-ranges-base-address -fno-debug-ranges-base-address %s 2>&1 | FileCheck -check-prefix=NORNGBSE %s 242 // 243 // RUN: %clang -### -c -glldb %s 2>&1 | FileCheck -check-prefix=NOPUB %s 244 // RUN: %clang -### -c -glldb -gno-pubnames %s 2>&1 | FileCheck -check-prefix=NOPUB %s 245 // 246 // RUN: %clang -### -c -gdwarf-aranges %s 2>&1 | FileCheck -check-prefix=GARANGE %s 247 // 248 // RUN: %clang -### -fdebug-types-section -target x86_64-unknown-linux %s 2>&1 \ 249 // RUN: | FileCheck -check-prefix=FDTS %s 250 // 251 // RUN: %clang -### -fdebug-types-section -fno-debug-types-section -target x86_64-unknown-linux %s 2>&1 \ 252 // RUN: | FileCheck -check-prefix=NOFDTS %s 253 // 254 // RUN: %clang -### -fdebug-types-section -target wasm32-unknown-unknown %s 2>&1 \ 255 // RUN: | FileCheck -check-prefix=FDTS %s 256 // 257 // RUN: %clang -### -fdebug-types-section -target x86_64-apple-darwin %s 2>&1 \ 258 // RUN: | FileCheck -check-prefix=FDTSE %s 259 // 260 // RUN: %clang -### -fdebug-types-section -fno-debug-types-section -target x86_64-apple-darwin %s 2>&1 \ 261 // RUN: | FileCheck -check-prefix=NOFDTSE %s 262 // 263 // RUN: %clang -### -g -gno-column-info %s 2>&1 \ 264 // RUN: | FileCheck -check-prefix=NOCI %s 265 // 266 // RUN: %clang -### -g -target x86_64-unknown-unknown %s 2>&1 \ 267 // | FileCheck -check-prefix=CI %s 268 // 269 // RUN: %clang -### -gmodules %s 2>&1 \ 270 // RUN: | FileCheck -check-prefix=GEXTREFS %s 271 // 272 // RUN: %clang -### -gmodules -g %s 2>&1 \ 273 // RUN: | FileCheck -check-prefix=GEXTREFS %s 274 // 275 // RUN: %clang -### -gline-tables-only -gmodules %s 2>&1 \ 276 // RUN: | FileCheck -check-prefix=GEXTREFS %s 277 // 278 // RUN: %clang -### -gmodules -gline-tables-only %s 2>&1 \ 279 // RUN: | FileCheck -check-prefix=GLTO_ONLY %s 280 // 281 // RUN: %clang -### -target %itanium_abi_triple -gmodules -gline-directives-only %s 2>&1 \ 282 // RUN: | FileCheck -check-prefix=GLIO_ONLY %s 283 // 284 // NOG_PS: "-cc1" 285 // NOG_PS-NOT: "-dwarf-version= 286 // NOG_PS: "-generate-arange-section" 287 // NOG_PS-NOT: "-dwarf-version= 288 // 289 // G_ERR: error: unknown argument: 290 // 291 // G_NO: "-cc1" 292 // G_NO-NOT: -debug-info-kind= 293 // 294 // GLTO_ONLY: "-cc1" 295 // GLTO_ONLY-NOT: "-dwarf-ext-refs" 296 // GLTO_ONLY: "-debug-info-kind=line-tables-only" 297 // GLTO_ONLY-NOT: "-dwarf-ext-refs" 298 // 299 // GLTO_ONLY_DWARF2: "-cc1" 300 // GLTO_ONLY_DWARF2: "-debug-info-kind=line-tables-only" 301 // GLTO_ONLY_DWARF2: "-dwarf-version=2" 302 // 303 // GLIO_ONLY: "-cc1" 304 // GLIO_ONLY-NOT: "-dwarf-ext-refs" 305 // GLIO_ONLY: "-debug-info-kind=line-directives-only" 306 // GLIO_ONLY-NOT: "-dwarf-ext-refs" 307 // 308 // GLIO_ONLY_DWARF2: "-cc1" 309 // GLIO_ONLY_DWARF2: "-debug-info-kind=line-directives-only" 310 // GLIO_ONLY_DWARF2: "-dwarf-version=2" 311 // 312 // G_ONLY: "-cc1" 313 // G_ONLY: "-debug-info-kind=constructor" 314 // 315 // These tests assert that "-gline-tables-only" "-g" uses the latter, 316 // but otherwise not caring about the DebugInfoKind. 317 // G_ONLY_DWARF2: "-cc1" 318 // G_ONLY_DWARF2: "-debug-info-kind={{standalone|constructor}}" 319 // G_ONLY_DWARF2: "-dwarf-version=2" 320 // 321 // G_STANDALONE: "-cc1" 322 // G_STANDALONE: "-debug-info-kind=standalone" 323 // G_LIMITED: "-cc1" 324 // G_LIMITED: "-debug-info-kind=constructor" 325 // G_DWARF2: "-dwarf-version=2" 326 // G_DWARF4-DAG: "-dwarf-version=4" 327 // G_DWARF5-DAG: "-dwarf-version=5" 328 // 329 // G_GDB: "-debugger-tuning=gdb" 330 // G_LLDB: "-debugger-tuning=lldb" 331 // G_SCE-DAG: "-debugger-tuning=sce" 332 // G_DBX: "-debugger-tuning=dbx" 333 // 334 // STRICT: "-gstrict-dwarf" 335 // NOSTRICT-NOT: "-gstrict-dwarf" 336 // 337 // G_NOTUNING: "-cc1" 338 // G_NOTUNING-NOT: "-debugger-tuning=" 339 // 340 // This tests asserts that "-gline-tables-only" "-g0" disables debug info. 341 // GLTO_NO: "-cc1" 342 // GLTO_NO-NOT: -debug-info-kind= 343 // 344 // This tests asserts that "-gline-directives-only" "-g0" disables debug info. 345 // GLIO_NO: "-cc1" 346 // GLIO_NO-NOT: -debug-info-kind= 347 // 348 // GRECORD: "-dwarf-debug-flags" 349 // GRECORD: -### -c -grecord-gcc-switches 350 // 351 // GNO_RECORD-NOT: "-dwarf-debug-flags" 352 // GNO_RECORD-NOT: -### -c -grecord-gcc-switches 353 // 354 // GRECORD_O: "-dwarf-debug-flags" 355 // GRECORD_O: -### -c -grecord-gcc-switches -o - 356 // 357 // GRECORD_OPT: -### -c -O3 -ffunction-sections -grecord-gcc-switches 358 // 359 // GIGNORE-NOT: "argument unused during compilation" 360 // 361 // GPUB: -ggnu-pubnames 362 // NOPUB-NOT: -ggnu-pubnames 363 // NOPUB-NOT: -gpubnames 364 // 365 // PUB: -gpubnames 366 // 367 // RNGBSE: -fdebug-ranges-base-address 368 // NORNGBSE-NOT: -fdebug-ranges-base-address 369 // 370 // GARANGE-DAG: -generate-arange-section 371 // 372 // FDTS: "-mllvm" "-generate-type-units" 373 // FDTSE: error: unsupported option '-fdebug-types-section' for target 'x86_64-apple-darwin' 374 // 375 // NOFDTS-NOT: "-mllvm" "-generate-type-units" 376 // NOFDTSE-NOT: error: unsupported option '-fdebug-types-section' for target 'x86_64-apple-darwin' 377 // 378 // CI-NOT: "-gno-column-info" 379 // 380 // NOCI-DAG: "-gno-column-info" 381 // 382 // GEXTREFS: "-dwarf-ext-refs" "-fmodule-format=obj" 383 // GEXTREFS: "-debug-info-kind={{standalone|constructor}}" 384 385 // RUN: not %clang -cc1 -debug-info-kind=watkind 2>&1 | FileCheck -check-prefix=BADSTRING1 %s 386 // BADSTRING1: error: invalid value 'watkind' in '-debug-info-kind=watkind' 387 // RUN: not %clang -cc1 -debugger-tuning=gmodal 2>&1 | FileCheck -check-prefix=BADSTRING2 %s 388 // BADSTRING2: error: invalid value 'gmodal' in '-debugger-tuning=gmodal' 389 390 // RUN: %clang -### -fdebug-macro %s 2>&1 | FileCheck -check-prefix=MACRO %s 391 // RUN: %clang -### -fno-debug-macro %s 2>&1 | FileCheck -check-prefix=NOMACRO %s 392 // RUN: %clang -### %s 2>&1 | FileCheck -check-prefix=NOMACRO %s 393 // MACRO: "-debug-info-macro" 394 // NOMACRO-NOT: "-debug-info-macro" 395 // 396 // RUN: %clang -### -gdwarf-5 -gembed-source %s 2>&1 | FileCheck -check-prefix=GEMBED_5 %s 397 // RUN: %clang -### -gdwarf-2 -gembed-source %s 2>&1 | FileCheck -check-prefix=GEMBED_2 %s 398 // RUN: %clang -### -gdwarf-5 -gno-embed-source %s 2>&1 | FileCheck -check-prefix=NOGEMBED_5 %s 399 // RUN: %clang -### -gdwarf-2 -gno-embed-source %s 2>&1 | FileCheck -check-prefix=NOGEMBED_2 %s 400 // 401 // GEMBED_5: "-gembed-source" 402 // GEMBED_2: error: invalid argument '-gembed-source' only allowed with '-gdwarf-5' 403 // NOGEMBED_5-NOT: "-gembed-source" 404 // NOGEMBED_2-NOT: error: invalid argument '-gembed-source' only allowed with '-gdwarf-5' 405 // 406 // RUN: %clang -### -g -fno-eliminate-unused-debug-types -c %s 2>&1 \ 407 // RUN: | FileCheck -check-prefix=DEBUG_UNUSED_TYPES %s 408 // DEBUG_UNUSED_TYPES: "-debug-info-kind=unused-types" 409 // DEBUG_UNUSED_TYPES-NOT: "-debug-info-kind=limited" 410 // RUN: %clang -### -g -feliminate-unused-debug-types -c %s 2>&1 \ 411 // RUN: | FileCheck -check-prefix=NO_DEBUG_UNUSED_TYPES %s 412 // RUN: %clang -### -fno-eliminate-unused-debug-types -g1 -c %s 2>&1 \ 413 // RUN: | FileCheck -check-prefix=NO_DEBUG_UNUSED_TYPES %s 414 // NO_DEBUG_UNUSED_TYPES: "-debug-info-kind={{constructor|line-tables-only|standalone}}" 415 // NO_DEBUG_UNUSED_TYPES-NOT: "-debug-info-kind=unused-types" 416 // 417 // RUN: %clang -### -c -gdwarf-5 -gdwarf64 -target x86_64 %s 2>&1 | FileCheck -check-prefix=GDWARF64_ON %s 418 // RUN: %clang -### -c -gdwarf-4 -gdwarf64 -target x86_64 %s 2>&1 | FileCheck -check-prefix=GDWARF64_ON %s 419 // RUN: %clang -### -c -gdwarf-3 -gdwarf64 -target x86_64 %s 2>&1 | FileCheck -check-prefix=GDWARF64_ON %s 420 // RUN: %clang -### -c -gdwarf-2 -gdwarf64 -target x86_64 %s 2>&1 | FileCheck -check-prefix=GDWARF64_VER %s 421 // RUN: %clang -### -c -gdwarf-4 -gdwarf64 -target x86_64 -target x86_64 %s 2>&1 \ 422 // RUN: | FileCheck -check-prefix=GDWARF64_ON %s 423 // RUN: %clang -### -c -gdwarf-4 -gdwarf64 -target i386-linux-gnu %s 2>&1 \ 424 // RUN: | FileCheck -check-prefix=GDWARF64_32ARCH %s 425 // RUN: %clang -### -c -gdwarf-4 -gdwarf64 -target x86_64-apple-darwin %s 2>&1 \ 426 // RUN: | FileCheck -check-prefix=GDWARF64_ELF %s 427 // 428 // GDWARF64_ON: "-gdwarf64" 429 // GDWARF64_VER: error: invalid argument '-gdwarf64' only allowed with 'DWARFv3 or greater' 430 // GDWARF64_32ARCH: error: invalid argument '-gdwarf64' only allowed with '64 bit architecture' 431 // GDWARF64_ELF: error: invalid argument '-gdwarf64' only allowed with 'ELF platforms' 432 433 /// Default to -fno-dwarf-directory-asm for -fno-integrated-as before DWARF v5. 434 // RUN: %clang -### -target x86_64 -c -gdwarf-2 %s 2>&1 | FileCheck --check-prefix=DIRECTORY %s 435 // RUN: %clang -### -target x86_64 -c -gdwarf-5 %s 2>&1 | FileCheck --check-prefix=DIRECTORY %s 436 // RUN: %clang -### -target x86_64 -c -gdwarf-4 -fno-integrated-as %s 2>&1 | FileCheck --check-prefix=NODIRECTORY %s 437 // RUN: %clang -### -target x86_64 -c -gdwarf-5 -fno-integrated-as %s 2>&1 | FileCheck --check-prefix=DIRECTORY %s 438 439 // RUN: %clang -### -target x86_64 -c -gdwarf-4 -fno-dwarf-directory-asm %s 2>&1 | FileCheck --check-prefix=NODIRECTORY %s 440 441 // DIRECTORY-NOT: "-fno-dwarf-directory-asm" 442 // NODIRECTORY: "-fno-dwarf-directory-asm" 443 444 // RUN: %clang -### -target x86_64 -c -g -gsimple-template-names %s 2>&1 | FileCheck --check-prefixes=SIMPLE_TMPL_NAMES,FWD_TMPL_PARAMS %s 445 // SIMPLE_TMPL_NAMES: -gsimple-template-names=simple 446 // FWD_TMPL_PARAMS-DAG: -debug-forward-template-params 447 // RUN: not %clang -### -target x86_64 -c -g -gsimple-template-names=mangled %s 2>&1 | FileCheck --check-prefix=MANGLED_TEMP_NAMES %s 448 // MANGLED_TEMP_NAMES: error: unknown argument: '-gsimple-template-names=mangled' 449 // RUN: %clang -### -target x86_64 -c -g %s 2>&1 | FileCheck --check-prefix=FULL_TEMP_NAMES --implicit-check-not=debug-forward-template-params %s 450 // FULL_TEMP_NAMES-NOT: -gsimple-template-names 451