1 //===-- CommandFlags.cpp - Command Line Flags Interface ---------*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file contains codegen-specific flags that are shared between different 10 // command line tools. The tools "llc" and "opt" both use this file to prevent 11 // flag duplication. 12 // 13 //===----------------------------------------------------------------------===// 14 15 #include "llvm/CodeGen/CommandFlags.h" 16 #include "llvm/IR/Module.h" 17 #include "llvm/MC/SubtargetFeature.h" 18 #include "llvm/Support/CommandLine.h" 19 #include "llvm/Support/Host.h" 20 #include "llvm/Support/MemoryBuffer.h" 21 22 using namespace llvm; 23 24 #define CGOPT(TY, NAME) \ 25 static cl::opt<TY> *NAME##View; \ 26 TY codegen::get##NAME() { \ 27 assert(NAME##View && "RegisterCodeGenFlags not created."); \ 28 return *NAME##View; \ 29 } 30 31 #define CGLIST(TY, NAME) \ 32 static cl::list<TY> *NAME##View; \ 33 std::vector<TY> codegen::get##NAME() { \ 34 assert(NAME##View && "RegisterCodeGenFlags not created."); \ 35 return *NAME##View; \ 36 } 37 38 #define CGOPT_EXP(TY, NAME) \ 39 CGOPT(TY, NAME) \ 40 Optional<TY> codegen::getExplicit##NAME() { \ 41 if (NAME##View->getNumOccurrences()) { \ 42 TY res = *NAME##View; \ 43 return res; \ 44 } \ 45 return None; \ 46 } 47 48 CGOPT(std::string, MArch) 49 CGOPT(std::string, MCPU) 50 CGLIST(std::string, MAttrs) 51 CGOPT_EXP(Reloc::Model, RelocModel) 52 CGOPT(ThreadModel::Model, ThreadModel) 53 CGOPT_EXP(CodeModel::Model, CodeModel) 54 CGOPT(ExceptionHandling, ExceptionModel) 55 CGOPT_EXP(CodeGenFileType, FileType) 56 CGOPT(FramePointerKind, FramePointerUsage) 57 CGOPT(bool, EnableUnsafeFPMath) 58 CGOPT(bool, EnableNoInfsFPMath) 59 CGOPT(bool, EnableNoNaNsFPMath) 60 CGOPT(bool, EnableNoSignedZerosFPMath) 61 CGOPT(bool, EnableNoTrappingFPMath) 62 CGOPT(bool, EnableAIXExtendedAltivecABI) 63 CGOPT(DenormalMode::DenormalModeKind, DenormalFPMath) 64 CGOPT(DenormalMode::DenormalModeKind, DenormalFP32Math) 65 CGOPT(bool, EnableHonorSignDependentRoundingFPMath) 66 CGOPT(FloatABI::ABIType, FloatABIForCalls) 67 CGOPT(FPOpFusion::FPOpFusionMode, FuseFPOps) 68 CGOPT(SwiftAsyncFramePointerMode, SwiftAsyncFramePointer) 69 CGOPT(bool, DontPlaceZerosInBSS) 70 CGOPT(bool, EnableGuaranteedTailCallOpt) 71 CGOPT(bool, DisableTailCalls) 72 CGOPT(bool, StackSymbolOrdering) 73 CGOPT(bool, StackRealign) 74 CGOPT(std::string, TrapFuncName) 75 CGOPT(bool, UseCtors) 76 CGOPT(bool, RelaxELFRelocations) 77 CGOPT_EXP(bool, DataSections) 78 CGOPT_EXP(bool, FunctionSections) 79 CGOPT(bool, IgnoreXCOFFVisibility) 80 CGOPT(bool, XCOFFTracebackTable) 81 CGOPT(std::string, BBSections) 82 CGOPT(unsigned, TLSSize) 83 CGOPT(bool, EmulatedTLS) 84 CGOPT(bool, UniqueSectionNames) 85 CGOPT(bool, UniqueBasicBlockSectionNames) 86 CGOPT(EABI, EABIVersion) 87 CGOPT(DebuggerKind, DebuggerTuningOpt) 88 CGOPT(bool, EnableStackSizeSection) 89 CGOPT(bool, EnableAddrsig) 90 CGOPT(bool, EmitCallSiteInfo) 91 CGOPT(bool, EnableMachineFunctionSplitter) 92 CGOPT(bool, EnableDebugEntryValues) 93 CGOPT_EXP(bool, ValueTrackingVariableLocations) 94 CGOPT(bool, ForceDwarfFrameSection) 95 CGOPT(bool, XRayOmitFunctionIndex) 96 CGOPT(bool, DebugStrictDwarf) 97 CGOPT(unsigned, AlignLoops) 98 99 codegen::RegisterCodeGenFlags::RegisterCodeGenFlags() { 100 #define CGBINDOPT(NAME) \ 101 do { \ 102 NAME##View = std::addressof(NAME); \ 103 } while (0) 104 105 static cl::opt<std::string> MArch( 106 "march", cl::desc("Architecture to generate code for (see --version)")); 107 CGBINDOPT(MArch); 108 109 static cl::opt<std::string> MCPU( 110 "mcpu", cl::desc("Target a specific cpu type (-mcpu=help for details)"), 111 cl::value_desc("cpu-name"), cl::init("")); 112 CGBINDOPT(MCPU); 113 114 static cl::list<std::string> MAttrs( 115 "mattr", cl::CommaSeparated, 116 cl::desc("Target specific attributes (-mattr=help for details)"), 117 cl::value_desc("a1,+a2,-a3,...")); 118 CGBINDOPT(MAttrs); 119 120 static cl::opt<Reloc::Model> RelocModel( 121 "relocation-model", cl::desc("Choose relocation model"), 122 cl::values( 123 clEnumValN(Reloc::Static, "static", "Non-relocatable code"), 124 clEnumValN(Reloc::PIC_, "pic", 125 "Fully relocatable, position independent code"), 126 clEnumValN(Reloc::DynamicNoPIC, "dynamic-no-pic", 127 "Relocatable external references, non-relocatable code"), 128 clEnumValN( 129 Reloc::ROPI, "ropi", 130 "Code and read-only data relocatable, accessed PC-relative"), 131 clEnumValN( 132 Reloc::RWPI, "rwpi", 133 "Read-write data relocatable, accessed relative to static base"), 134 clEnumValN(Reloc::ROPI_RWPI, "ropi-rwpi", 135 "Combination of ropi and rwpi"))); 136 CGBINDOPT(RelocModel); 137 138 static cl::opt<ThreadModel::Model> ThreadModel( 139 "thread-model", cl::desc("Choose threading model"), 140 cl::init(ThreadModel::POSIX), 141 cl::values( 142 clEnumValN(ThreadModel::POSIX, "posix", "POSIX thread model"), 143 clEnumValN(ThreadModel::Single, "single", "Single thread model"))); 144 CGBINDOPT(ThreadModel); 145 146 static cl::opt<CodeModel::Model> CodeModel( 147 "code-model", cl::desc("Choose code model"), 148 cl::values(clEnumValN(CodeModel::Tiny, "tiny", "Tiny code model"), 149 clEnumValN(CodeModel::Small, "small", "Small code model"), 150 clEnumValN(CodeModel::Kernel, "kernel", "Kernel code model"), 151 clEnumValN(CodeModel::Medium, "medium", "Medium code model"), 152 clEnumValN(CodeModel::Large, "large", "Large code model"))); 153 CGBINDOPT(CodeModel); 154 155 static cl::opt<ExceptionHandling> ExceptionModel( 156 "exception-model", cl::desc("exception model"), 157 cl::init(ExceptionHandling::None), 158 cl::values( 159 clEnumValN(ExceptionHandling::None, "default", 160 "default exception handling model"), 161 clEnumValN(ExceptionHandling::DwarfCFI, "dwarf", 162 "DWARF-like CFI based exception handling"), 163 clEnumValN(ExceptionHandling::SjLj, "sjlj", 164 "SjLj exception handling"), 165 clEnumValN(ExceptionHandling::ARM, "arm", "ARM EHABI exceptions"), 166 clEnumValN(ExceptionHandling::WinEH, "wineh", 167 "Windows exception model"), 168 clEnumValN(ExceptionHandling::Wasm, "wasm", 169 "WebAssembly exception handling"))); 170 CGBINDOPT(ExceptionModel); 171 172 static cl::opt<CodeGenFileType> FileType( 173 "filetype", cl::init(CGFT_AssemblyFile), 174 cl::desc( 175 "Choose a file type (not all types are supported by all targets):"), 176 cl::values( 177 clEnumValN(CGFT_AssemblyFile, "asm", "Emit an assembly ('.s') file"), 178 clEnumValN(CGFT_ObjectFile, "obj", 179 "Emit a native object ('.o') file"), 180 clEnumValN(CGFT_Null, "null", 181 "Emit nothing, for performance testing"))); 182 CGBINDOPT(FileType); 183 184 static cl::opt<FramePointerKind> FramePointerUsage( 185 "frame-pointer", 186 cl::desc("Specify frame pointer elimination optimization"), 187 cl::init(FramePointerKind::None), 188 cl::values( 189 clEnumValN(FramePointerKind::All, "all", 190 "Disable frame pointer elimination"), 191 clEnumValN(FramePointerKind::NonLeaf, "non-leaf", 192 "Disable frame pointer elimination for non-leaf frame"), 193 clEnumValN(FramePointerKind::None, "none", 194 "Enable frame pointer elimination"))); 195 CGBINDOPT(FramePointerUsage); 196 197 static cl::opt<bool> EnableUnsafeFPMath( 198 "enable-unsafe-fp-math", 199 cl::desc("Enable optimizations that may decrease FP precision"), 200 cl::init(false)); 201 CGBINDOPT(EnableUnsafeFPMath); 202 203 static cl::opt<bool> EnableNoInfsFPMath( 204 "enable-no-infs-fp-math", 205 cl::desc("Enable FP math optimizations that assume no +-Infs"), 206 cl::init(false)); 207 CGBINDOPT(EnableNoInfsFPMath); 208 209 static cl::opt<bool> EnableNoNaNsFPMath( 210 "enable-no-nans-fp-math", 211 cl::desc("Enable FP math optimizations that assume no NaNs"), 212 cl::init(false)); 213 CGBINDOPT(EnableNoNaNsFPMath); 214 215 static cl::opt<bool> EnableNoSignedZerosFPMath( 216 "enable-no-signed-zeros-fp-math", 217 cl::desc("Enable FP math optimizations that assume " 218 "the sign of 0 is insignificant"), 219 cl::init(false)); 220 CGBINDOPT(EnableNoSignedZerosFPMath); 221 222 static cl::opt<bool> EnableNoTrappingFPMath( 223 "enable-no-trapping-fp-math", 224 cl::desc("Enable setting the FP exceptions build " 225 "attribute not to use exceptions"), 226 cl::init(false)); 227 CGBINDOPT(EnableNoTrappingFPMath); 228 229 static const auto DenormFlagEnumOptions = 230 cl::values(clEnumValN(DenormalMode::IEEE, "ieee", 231 "IEEE 754 denormal numbers"), 232 clEnumValN(DenormalMode::PreserveSign, "preserve-sign", 233 "the sign of a flushed-to-zero number is preserved " 234 "in the sign of 0"), 235 clEnumValN(DenormalMode::PositiveZero, "positive-zero", 236 "denormals are flushed to positive zero")); 237 238 // FIXME: Doesn't have way to specify separate input and output modes. 239 static cl::opt<DenormalMode::DenormalModeKind> DenormalFPMath( 240 "denormal-fp-math", 241 cl::desc("Select which denormal numbers the code is permitted to require"), 242 cl::init(DenormalMode::IEEE), 243 DenormFlagEnumOptions); 244 CGBINDOPT(DenormalFPMath); 245 246 static cl::opt<DenormalMode::DenormalModeKind> DenormalFP32Math( 247 "denormal-fp-math-f32", 248 cl::desc("Select which denormal numbers the code is permitted to require for float"), 249 cl::init(DenormalMode::Invalid), 250 DenormFlagEnumOptions); 251 CGBINDOPT(DenormalFP32Math); 252 253 static cl::opt<bool> EnableHonorSignDependentRoundingFPMath( 254 "enable-sign-dependent-rounding-fp-math", cl::Hidden, 255 cl::desc("Force codegen to assume rounding mode can change dynamically"), 256 cl::init(false)); 257 CGBINDOPT(EnableHonorSignDependentRoundingFPMath); 258 259 static cl::opt<FloatABI::ABIType> FloatABIForCalls( 260 "float-abi", cl::desc("Choose float ABI type"), 261 cl::init(FloatABI::Default), 262 cl::values(clEnumValN(FloatABI::Default, "default", 263 "Target default float ABI type"), 264 clEnumValN(FloatABI::Soft, "soft", 265 "Soft float ABI (implied by -soft-float)"), 266 clEnumValN(FloatABI::Hard, "hard", 267 "Hard float ABI (uses FP registers)"))); 268 CGBINDOPT(FloatABIForCalls); 269 270 static cl::opt<FPOpFusion::FPOpFusionMode> FuseFPOps( 271 "fp-contract", cl::desc("Enable aggressive formation of fused FP ops"), 272 cl::init(FPOpFusion::Standard), 273 cl::values( 274 clEnumValN(FPOpFusion::Fast, "fast", 275 "Fuse FP ops whenever profitable"), 276 clEnumValN(FPOpFusion::Standard, "on", "Only fuse 'blessed' FP ops."), 277 clEnumValN(FPOpFusion::Strict, "off", 278 "Only fuse FP ops when the result won't be affected."))); 279 CGBINDOPT(FuseFPOps); 280 281 static cl::opt<SwiftAsyncFramePointerMode> SwiftAsyncFramePointer( 282 "swift-async-fp", 283 cl::desc("Determine when the Swift async frame pointer should be set"), 284 cl::init(SwiftAsyncFramePointerMode::Always), 285 cl::values(clEnumValN(SwiftAsyncFramePointerMode::DeploymentBased, "auto", 286 "Determine based on deployment target"), 287 clEnumValN(SwiftAsyncFramePointerMode::Always, "always", 288 "Always set the bit"), 289 clEnumValN(SwiftAsyncFramePointerMode::Never, "never", 290 "Never set the bit"))); 291 CGBINDOPT(SwiftAsyncFramePointer); 292 293 static cl::opt<bool> DontPlaceZerosInBSS( 294 "nozero-initialized-in-bss", 295 cl::desc("Don't place zero-initialized symbols into bss section"), 296 cl::init(false)); 297 CGBINDOPT(DontPlaceZerosInBSS); 298 299 static cl::opt<bool> EnableAIXExtendedAltivecABI( 300 "vec-extabi", cl::desc("Enable the AIX Extended Altivec ABI."), 301 cl::init(false)); 302 CGBINDOPT(EnableAIXExtendedAltivecABI); 303 304 static cl::opt<bool> EnableGuaranteedTailCallOpt( 305 "tailcallopt", 306 cl::desc( 307 "Turn fastcc calls into tail calls by (potentially) changing ABI."), 308 cl::init(false)); 309 CGBINDOPT(EnableGuaranteedTailCallOpt); 310 311 static cl::opt<bool> DisableTailCalls( 312 "disable-tail-calls", cl::desc("Never emit tail calls"), cl::init(false)); 313 CGBINDOPT(DisableTailCalls); 314 315 static cl::opt<bool> StackSymbolOrdering( 316 "stack-symbol-ordering", cl::desc("Order local stack symbols."), 317 cl::init(true)); 318 CGBINDOPT(StackSymbolOrdering); 319 320 static cl::opt<bool> StackRealign( 321 "stackrealign", 322 cl::desc("Force align the stack to the minimum alignment"), 323 cl::init(false)); 324 CGBINDOPT(StackRealign); 325 326 static cl::opt<std::string> TrapFuncName( 327 "trap-func", cl::Hidden, 328 cl::desc("Emit a call to trap function rather than a trap instruction"), 329 cl::init("")); 330 CGBINDOPT(TrapFuncName); 331 332 static cl::opt<bool> UseCtors("use-ctors", 333 cl::desc("Use .ctors instead of .init_array."), 334 cl::init(false)); 335 CGBINDOPT(UseCtors); 336 337 static cl::opt<bool> RelaxELFRelocations( 338 "relax-elf-relocations", 339 cl::desc( 340 "Emit GOTPCRELX/REX_GOTPCRELX instead of GOTPCREL on x86-64 ELF"), 341 cl::init(false)); 342 CGBINDOPT(RelaxELFRelocations); 343 344 static cl::opt<bool> DataSections( 345 "data-sections", cl::desc("Emit data into separate sections"), 346 cl::init(false)); 347 CGBINDOPT(DataSections); 348 349 static cl::opt<bool> FunctionSections( 350 "function-sections", cl::desc("Emit functions into separate sections"), 351 cl::init(false)); 352 CGBINDOPT(FunctionSections); 353 354 static cl::opt<bool> IgnoreXCOFFVisibility( 355 "ignore-xcoff-visibility", 356 cl::desc("Not emit the visibility attribute for asm in AIX OS or give " 357 "all symbols 'unspecified' visibility in XCOFF object file"), 358 cl::init(false)); 359 CGBINDOPT(IgnoreXCOFFVisibility); 360 361 static cl::opt<bool> XCOFFTracebackTable( 362 "xcoff-traceback-table", cl::desc("Emit the XCOFF traceback table"), 363 cl::init(true)); 364 CGBINDOPT(XCOFFTracebackTable); 365 366 static cl::opt<std::string> BBSections( 367 "basic-block-sections", 368 cl::desc("Emit basic blocks into separate sections"), 369 cl::value_desc("all | <function list (file)> | labels | none"), 370 cl::init("none")); 371 CGBINDOPT(BBSections); 372 373 static cl::opt<unsigned> TLSSize( 374 "tls-size", cl::desc("Bit size of immediate TLS offsets"), cl::init(0)); 375 CGBINDOPT(TLSSize); 376 377 static cl::opt<bool> EmulatedTLS( 378 "emulated-tls", cl::desc("Use emulated TLS model"), cl::init(false)); 379 CGBINDOPT(EmulatedTLS); 380 381 static cl::opt<bool> UniqueSectionNames( 382 "unique-section-names", cl::desc("Give unique names to every section"), 383 cl::init(true)); 384 CGBINDOPT(UniqueSectionNames); 385 386 static cl::opt<bool> UniqueBasicBlockSectionNames( 387 "unique-basic-block-section-names", 388 cl::desc("Give unique names to every basic block section"), 389 cl::init(false)); 390 CGBINDOPT(UniqueBasicBlockSectionNames); 391 392 static cl::opt<EABI> EABIVersion( 393 "meabi", cl::desc("Set EABI type (default depends on triple):"), 394 cl::init(EABI::Default), 395 cl::values( 396 clEnumValN(EABI::Default, "default", "Triple default EABI version"), 397 clEnumValN(EABI::EABI4, "4", "EABI version 4"), 398 clEnumValN(EABI::EABI5, "5", "EABI version 5"), 399 clEnumValN(EABI::GNU, "gnu", "EABI GNU"))); 400 CGBINDOPT(EABIVersion); 401 402 static cl::opt<DebuggerKind> DebuggerTuningOpt( 403 "debugger-tune", cl::desc("Tune debug info for a particular debugger"), 404 cl::init(DebuggerKind::Default), 405 cl::values( 406 clEnumValN(DebuggerKind::GDB, "gdb", "gdb"), 407 clEnumValN(DebuggerKind::LLDB, "lldb", "lldb"), 408 clEnumValN(DebuggerKind::DBX, "dbx", "dbx"), 409 clEnumValN(DebuggerKind::SCE, "sce", "SCE targets (e.g. PS4)"))); 410 CGBINDOPT(DebuggerTuningOpt); 411 412 static cl::opt<bool> EnableStackSizeSection( 413 "stack-size-section", 414 cl::desc("Emit a section containing stack size metadata"), 415 cl::init(false)); 416 CGBINDOPT(EnableStackSizeSection); 417 418 static cl::opt<bool> EnableAddrsig( 419 "addrsig", cl::desc("Emit an address-significance table"), 420 cl::init(false)); 421 CGBINDOPT(EnableAddrsig); 422 423 static cl::opt<bool> EmitCallSiteInfo( 424 "emit-call-site-info", 425 cl::desc( 426 "Emit call site debug information, if debug information is enabled."), 427 cl::init(false)); 428 CGBINDOPT(EmitCallSiteInfo); 429 430 static cl::opt<bool> EnableDebugEntryValues( 431 "debug-entry-values", 432 cl::desc("Enable debug info for the debug entry values."), 433 cl::init(false)); 434 CGBINDOPT(EnableDebugEntryValues); 435 436 static cl::opt<bool> ValueTrackingVariableLocations( 437 "experimental-debug-variable-locations", 438 cl::desc("Use experimental new value-tracking variable locations"), 439 cl::init(false)); 440 CGBINDOPT(ValueTrackingVariableLocations); 441 442 static cl::opt<bool> EnableMachineFunctionSplitter( 443 "split-machine-functions", 444 cl::desc("Split out cold basic blocks from machine functions based on " 445 "profile information"), 446 cl::init(false)); 447 CGBINDOPT(EnableMachineFunctionSplitter); 448 449 static cl::opt<bool> ForceDwarfFrameSection( 450 "force-dwarf-frame-section", 451 cl::desc("Always emit a debug frame section."), cl::init(false)); 452 CGBINDOPT(ForceDwarfFrameSection); 453 454 static cl::opt<bool> XRayOmitFunctionIndex( 455 "no-xray-index", cl::desc("Don't emit xray_fn_idx section"), 456 cl::init(false)); 457 CGBINDOPT(XRayOmitFunctionIndex); 458 459 static cl::opt<bool> DebugStrictDwarf( 460 "strict-dwarf", cl::desc("use strict dwarf"), cl::init(false)); 461 CGBINDOPT(DebugStrictDwarf); 462 463 static cl::opt<unsigned> AlignLoops("align-loops", 464 cl::desc("Default alignment for loops")); 465 CGBINDOPT(AlignLoops); 466 467 #undef CGBINDOPT 468 469 mc::RegisterMCTargetOptionsFlags(); 470 } 471 472 llvm::BasicBlockSection 473 codegen::getBBSectionsMode(llvm::TargetOptions &Options) { 474 if (getBBSections() == "all") 475 return BasicBlockSection::All; 476 else if (getBBSections() == "labels") 477 return BasicBlockSection::Labels; 478 else if (getBBSections() == "none") 479 return BasicBlockSection::None; 480 else { 481 ErrorOr<std::unique_ptr<MemoryBuffer>> MBOrErr = 482 MemoryBuffer::getFile(getBBSections()); 483 if (!MBOrErr) { 484 errs() << "Error loading basic block sections function list file: " 485 << MBOrErr.getError().message() << "\n"; 486 } else { 487 Options.BBSectionsFuncListBuf = std::move(*MBOrErr); 488 } 489 return BasicBlockSection::List; 490 } 491 } 492 493 // Common utility function tightly tied to the options listed here. Initializes 494 // a TargetOptions object with CodeGen flags and returns it. 495 TargetOptions 496 codegen::InitTargetOptionsFromCodeGenFlags(const Triple &TheTriple) { 497 TargetOptions Options; 498 Options.AllowFPOpFusion = getFuseFPOps(); 499 Options.UnsafeFPMath = getEnableUnsafeFPMath(); 500 Options.NoInfsFPMath = getEnableNoInfsFPMath(); 501 Options.NoNaNsFPMath = getEnableNoNaNsFPMath(); 502 Options.NoSignedZerosFPMath = getEnableNoSignedZerosFPMath(); 503 Options.NoTrappingFPMath = getEnableNoTrappingFPMath(); 504 505 DenormalMode::DenormalModeKind DenormKind = getDenormalFPMath(); 506 507 // FIXME: Should have separate input and output flags 508 Options.setFPDenormalMode(DenormalMode(DenormKind, DenormKind)); 509 510 Options.HonorSignDependentRoundingFPMathOption = 511 getEnableHonorSignDependentRoundingFPMath(); 512 if (getFloatABIForCalls() != FloatABI::Default) 513 Options.FloatABIType = getFloatABIForCalls(); 514 Options.EnableAIXExtendedAltivecABI = getEnableAIXExtendedAltivecABI(); 515 Options.NoZerosInBSS = getDontPlaceZerosInBSS(); 516 Options.GuaranteedTailCallOpt = getEnableGuaranteedTailCallOpt(); 517 Options.StackSymbolOrdering = getStackSymbolOrdering(); 518 Options.UseInitArray = !getUseCtors(); 519 Options.RelaxELFRelocations = getRelaxELFRelocations(); 520 Options.DataSections = 521 getExplicitDataSections().getValueOr(TheTriple.hasDefaultDataSections()); 522 Options.FunctionSections = getFunctionSections(); 523 Options.IgnoreXCOFFVisibility = getIgnoreXCOFFVisibility(); 524 Options.XCOFFTracebackTable = getXCOFFTracebackTable(); 525 Options.BBSections = getBBSectionsMode(Options); 526 Options.UniqueSectionNames = getUniqueSectionNames(); 527 Options.UniqueBasicBlockSectionNames = getUniqueBasicBlockSectionNames(); 528 Options.TLSSize = getTLSSize(); 529 Options.EmulatedTLS = getEmulatedTLS(); 530 Options.ExplicitEmulatedTLS = EmulatedTLSView->getNumOccurrences() > 0; 531 Options.ExceptionModel = getExceptionModel(); 532 Options.EmitStackSizeSection = getEnableStackSizeSection(); 533 Options.EnableMachineFunctionSplitter = getEnableMachineFunctionSplitter(); 534 Options.EmitAddrsig = getEnableAddrsig(); 535 Options.EmitCallSiteInfo = getEmitCallSiteInfo(); 536 Options.EnableDebugEntryValues = getEnableDebugEntryValues(); 537 Options.ForceDwarfFrameSection = getForceDwarfFrameSection(); 538 Options.XRayOmitFunctionIndex = getXRayOmitFunctionIndex(); 539 Options.DebugStrictDwarf = getDebugStrictDwarf(); 540 Options.LoopAlignment = getAlignLoops(); 541 542 if (auto Opt = getExplicitValueTrackingVariableLocations()) 543 Options.ValueTrackingVariableLocations = *Opt; 544 else 545 Options.ValueTrackingVariableLocations = 546 getDefaultValueTrackingVariableLocations(TheTriple); 547 548 Options.MCOptions = mc::InitMCTargetOptionsFromFlags(); 549 550 Options.ThreadModel = getThreadModel(); 551 Options.EABIVersion = getEABIVersion(); 552 Options.DebuggerTuning = getDebuggerTuningOpt(); 553 Options.SwiftAsyncFramePointer = getSwiftAsyncFramePointer(); 554 return Options; 555 } 556 557 std::string codegen::getCPUStr() { 558 // If user asked for the 'native' CPU, autodetect here. If autodection fails, 559 // this will set the CPU to an empty string which tells the target to 560 // pick a basic default. 561 if (getMCPU() == "native") 562 return std::string(sys::getHostCPUName()); 563 564 return getMCPU(); 565 } 566 567 std::string codegen::getFeaturesStr() { 568 SubtargetFeatures Features; 569 570 // If user asked for the 'native' CPU, we need to autodetect features. 571 // This is necessary for x86 where the CPU might not support all the 572 // features the autodetected CPU name lists in the target. For example, 573 // not all Sandybridge processors support AVX. 574 if (getMCPU() == "native") { 575 StringMap<bool> HostFeatures; 576 if (sys::getHostCPUFeatures(HostFeatures)) 577 for (auto &F : HostFeatures) 578 Features.AddFeature(F.first(), F.second); 579 } 580 581 for (auto const &MAttr : getMAttrs()) 582 Features.AddFeature(MAttr); 583 584 return Features.getString(); 585 } 586 587 std::vector<std::string> codegen::getFeatureList() { 588 SubtargetFeatures Features; 589 590 // If user asked for the 'native' CPU, we need to autodetect features. 591 // This is necessary for x86 where the CPU might not support all the 592 // features the autodetected CPU name lists in the target. For example, 593 // not all Sandybridge processors support AVX. 594 if (getMCPU() == "native") { 595 StringMap<bool> HostFeatures; 596 if (sys::getHostCPUFeatures(HostFeatures)) 597 for (auto &F : HostFeatures) 598 Features.AddFeature(F.first(), F.second); 599 } 600 601 for (auto const &MAttr : getMAttrs()) 602 Features.AddFeature(MAttr); 603 604 return Features.getFeatures(); 605 } 606 607 void codegen::renderBoolStringAttr(AttrBuilder &B, StringRef Name, bool Val) { 608 B.addAttribute(Name, Val ? "true" : "false"); 609 } 610 611 #define HANDLE_BOOL_ATTR(CL, AttrName) \ 612 do { \ 613 if (CL->getNumOccurrences() > 0 && !F.hasFnAttribute(AttrName)) \ 614 renderBoolStringAttr(NewAttrs, AttrName, *CL); \ 615 } while (0) 616 617 /// Set function attributes of function \p F based on CPU, Features, and command 618 /// line flags. 619 void codegen::setFunctionAttributes(StringRef CPU, StringRef Features, 620 Function &F) { 621 auto &Ctx = F.getContext(); 622 AttributeList Attrs = F.getAttributes(); 623 AttrBuilder NewAttrs; 624 625 if (!CPU.empty() && !F.hasFnAttribute("target-cpu")) 626 NewAttrs.addAttribute("target-cpu", CPU); 627 if (!Features.empty()) { 628 // Append the command line features to any that are already on the function. 629 StringRef OldFeatures = 630 F.getFnAttribute("target-features").getValueAsString(); 631 if (OldFeatures.empty()) 632 NewAttrs.addAttribute("target-features", Features); 633 else { 634 SmallString<256> Appended(OldFeatures); 635 Appended.push_back(','); 636 Appended.append(Features); 637 NewAttrs.addAttribute("target-features", Appended); 638 } 639 } 640 if (FramePointerUsageView->getNumOccurrences() > 0 && 641 !F.hasFnAttribute("frame-pointer")) { 642 if (getFramePointerUsage() == FramePointerKind::All) 643 NewAttrs.addAttribute("frame-pointer", "all"); 644 else if (getFramePointerUsage() == FramePointerKind::NonLeaf) 645 NewAttrs.addAttribute("frame-pointer", "non-leaf"); 646 else if (getFramePointerUsage() == FramePointerKind::None) 647 NewAttrs.addAttribute("frame-pointer", "none"); 648 } 649 if (DisableTailCallsView->getNumOccurrences() > 0) 650 NewAttrs.addAttribute("disable-tail-calls", 651 toStringRef(getDisableTailCalls())); 652 if (getStackRealign()) 653 NewAttrs.addAttribute("stackrealign"); 654 655 HANDLE_BOOL_ATTR(EnableUnsafeFPMathView, "unsafe-fp-math"); 656 HANDLE_BOOL_ATTR(EnableNoInfsFPMathView, "no-infs-fp-math"); 657 HANDLE_BOOL_ATTR(EnableNoNaNsFPMathView, "no-nans-fp-math"); 658 HANDLE_BOOL_ATTR(EnableNoSignedZerosFPMathView, "no-signed-zeros-fp-math"); 659 660 if (DenormalFPMathView->getNumOccurrences() > 0 && 661 !F.hasFnAttribute("denormal-fp-math")) { 662 DenormalMode::DenormalModeKind DenormKind = getDenormalFPMath(); 663 664 // FIXME: Command line flag should expose separate input/output modes. 665 NewAttrs.addAttribute("denormal-fp-math", 666 DenormalMode(DenormKind, DenormKind).str()); 667 } 668 669 if (DenormalFP32MathView->getNumOccurrences() > 0 && 670 !F.hasFnAttribute("denormal-fp-math-f32")) { 671 // FIXME: Command line flag should expose separate input/output modes. 672 DenormalMode::DenormalModeKind DenormKind = getDenormalFP32Math(); 673 674 NewAttrs.addAttribute( 675 "denormal-fp-math-f32", 676 DenormalMode(DenormKind, DenormKind).str()); 677 } 678 679 if (TrapFuncNameView->getNumOccurrences() > 0) 680 for (auto &B : F) 681 for (auto &I : B) 682 if (auto *Call = dyn_cast<CallInst>(&I)) 683 if (const auto *F = Call->getCalledFunction()) 684 if (F->getIntrinsicID() == Intrinsic::debugtrap || 685 F->getIntrinsicID() == Intrinsic::trap) 686 Call->addFnAttr( 687 Attribute::get(Ctx, "trap-func-name", getTrapFuncName())); 688 689 // Let NewAttrs override Attrs. 690 F.setAttributes(Attrs.addFnAttributes(Ctx, NewAttrs)); 691 } 692 693 /// Set function attributes of functions in Module M based on CPU, 694 /// Features, and command line flags. 695 void codegen::setFunctionAttributes(StringRef CPU, StringRef Features, 696 Module &M) { 697 for (Function &F : M) 698 setFunctionAttributes(CPU, Features, F); 699 } 700 701 bool codegen::getDefaultValueTrackingVariableLocations(const llvm::Triple &T) { 702 if (T.getArch() == llvm::Triple::x86_64) 703 return true; 704 return false; 705 } 706