1//===--- CodeGenOptions.def - Code generation option database ----- 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 defines the code generation options. Users of this file
10// must define the CODEGENOPT macro to make use of this information.
11// Optionally, the user may also define ENUM_CODEGENOPT (for options
12// that have enumeration type and VALUE_CODEGENOPT is a code
13// generation option that describes a value rather than a flag.
14//
15//===----------------------------------------------------------------------===//
16#ifndef CODEGENOPT
17#  error Define the CODEGENOPT macro to handle language options
18#endif
19
20#ifndef VALUE_CODEGENOPT
21#  define VALUE_CODEGENOPT(Name, Bits, Default) \
22CODEGENOPT(Name, Bits, Default)
23#endif
24
25#ifndef ENUM_CODEGENOPT
26#  define ENUM_CODEGENOPT(Name, Type, Bits, Default) \
27CODEGENOPT(Name, Bits, Default)
28#endif
29
30CODEGENOPT(DisableIntegratedAS, 1, 0) ///< -no-integrated-as
31ENUM_CODEGENOPT(CompressDebugSections, llvm::DebugCompressionType, 2,
32                llvm::DebugCompressionType::None)
33CODEGENOPT(RelaxELFRelocations, 1, 0) ///< -Wa,--mrelax-relocations
34CODEGENOPT(AsmVerbose        , 1, 0) ///< -dA, -fverbose-asm.
35CODEGENOPT(Dwarf64           , 1, 0) ///< -gdwarf64.
36CODEGENOPT(Dwarf32           , 1, 1) ///< -gdwarf32.
37CODEGENOPT(PreserveAsmComments, 1, 1) ///< -dA, -fno-preserve-as-comments.
38CODEGENOPT(AssumeSaneOperatorNew , 1, 1) ///< implicit __attribute__((malloc)) operator new
39CODEGENOPT(Autolink          , 1, 1) ///< -fno-autolink
40CODEGENOPT(ObjCAutoRefCountExceptions , 1, 0) ///< Whether ARC should be EH-safe.
41CODEGENOPT(Backchain         , 1, 0) ///< -mbackchain
42CODEGENOPT(ControlFlowGuardNoChecks  , 1, 0) ///< -cfguard-no-checks
43CODEGENOPT(ControlFlowGuard  , 1, 0) ///< -cfguard
44CODEGENOPT(EHContGuard       , 1, 0) ///< -ehcontguard
45CODEGENOPT(CXAAtExit         , 1, 1) ///< Use __cxa_atexit for calling destructors.
46CODEGENOPT(RegisterGlobalDtorsWithAtExit, 1, 1) ///< Use atexit or __cxa_atexit to register global destructors.
47CODEGENOPT(CXXCtorDtorAliases, 1, 0) ///< Emit complete ctors/dtors as linker
48                                     ///< aliases to base ctors when possible.
49CODEGENOPT(DataSections      , 1, 0) ///< Set when -fdata-sections is enabled.
50CODEGENOPT(UniqueSectionNames, 1, 1) ///< Set for -funique-section-names.
51CODEGENOPT(UniqueBasicBlockSectionNames, 1, 1) ///< Set for -funique-basic-block-section-names,
52                                               ///< Produce unique section names with
53                                               ///< basic block sections.
54CODEGENOPT(EnableAIXExtendedAltivecABI, 1, 0) ///< Set for -mabi=vec-extabi. Enables the extended Altivec ABI on AIX.
55ENUM_CODEGENOPT(FramePointer, FramePointerKind, 2, FramePointerKind::None) /// frame-pointer: all,non-leaf,none
56
57CODEGENOPT(ClearASTBeforeBackend , 1, 0) ///< Free the AST before running backend code generation. Only works with -disable-free.
58CODEGENOPT(DisableFree       , 1, 0) ///< Don't free memory.
59CODEGENOPT(DiscardValueNames , 1, 0) ///< Discard Value Names from the IR (LLVMContext flag)
60CODEGENOPT(DisableLLVMPasses , 1, 0) ///< Don't run any LLVM IR passes to get
61                                     ///< the pristine IR generated by the
62                                     ///< frontend.
63CODEGENOPT(DisableLifetimeMarkers, 1, 0) ///< Don't emit any lifetime markers
64CODEGENOPT(DisableO0ImplyOptNone , 1, 0) ///< Don't annonate function with optnone at O0
65CODEGENOPT(ExperimentalStrictFloatingPoint, 1, 0) ///< Enables the new, experimental
66                                                  ///< strict floating point.
67CODEGENOPT(DisableNoundefAttrs, 1, 0) ///< Disable emitting `noundef` attributes on IR call arguments and return values
68CODEGENOPT(LegacyPassManager, 1, 0) ///< Use the legacy pass manager.
69CODEGENOPT(DebugPassManager, 1, 0) ///< Prints debug information for the new
70                                   ///< pass manager.
71CODEGENOPT(DisableRedZone    , 1, 0) ///< Set when -mno-red-zone is enabled.
72CODEGENOPT(EmitCallSiteInfo, 1, 0) ///< Emit call site info only in the case of
73                                   ///< '-g' + 'O>0' level.
74CODEGENOPT(EnableDIPreservationVerify, 1, 0) ///< Enable di preservation verify
75                                             ///< each (it means check
76                                             ///< the original debug info
77                                             ///< metadata preservation).
78CODEGENOPT(IndirectTlsSegRefs, 1, 0) ///< Set when -mno-tls-direct-seg-refs
79                                     ///< is specified.
80CODEGENOPT(DisableTailCalls  , 1, 0) ///< Do not emit tail calls.
81CODEGENOPT(NoEscapingBlockTailCalls, 1, 0) ///< Do not emit tail calls from
82                                           ///< escaping blocks.
83CODEGENOPT(EmitDeclMetadata  , 1, 0) ///< Emit special metadata indicating what
84                                     ///< Decl* various IR entities came from.
85                                     ///< Only useful when running CodeGen as a
86                                     ///< subroutine.
87CODEGENOPT(EmitVersionIdentMetadata , 1, 1) ///< Emit compiler version metadata.
88CODEGENOPT(EmitGcovArcs      , 1, 0) ///< Emit coverage data files, aka. GCDA.
89CODEGENOPT(EmitGcovNotes     , 1, 0) ///< Emit coverage "notes" files, aka GCNO.
90CODEGENOPT(EmitOpenCLArgMetadata , 1, 0) ///< Emit OpenCL kernel arg metadata.
91CODEGENOPT(EmulatedTLS       , 1, 0) ///< Set by default or -f[no-]emulated-tls.
92CODEGENOPT(ExplicitEmulatedTLS , 1, 0) ///< Set if -f[no-]emulated-tls is used.
93/// Embed Bitcode mode (off/all/bitcode/marker).
94ENUM_CODEGENOPT(EmbedBitcode, EmbedBitcodeKind, 2, Embed_Off)
95/// Inline asm dialect, -masm=(att|intel)
96ENUM_CODEGENOPT(InlineAsmDialect, InlineAsmDialectKind, 1, IAD_ATT)
97CODEGENOPT(ForbidGuardVariables , 1, 0) ///< Issue errors if C++ guard variables
98                                        ///< are required.
99CODEGENOPT(FunctionSections  , 1, 0) ///< Set when -ffunction-sections is enabled.
100CODEGENOPT(InstrumentFunctions , 1, 0) ///< Set when -finstrument-functions is
101                                       ///< enabled.
102CODEGENOPT(InstrumentFunctionsAfterInlining , 1, 0) ///< Set when
103                          ///< -finstrument-functions-after-inlining is enabled.
104CODEGENOPT(InstrumentFunctionEntryBare , 1, 0) ///< Set when
105                               ///< -finstrument-function-entry-bare is enabled.
106CODEGENOPT(CFProtectionReturn , 1, 0) ///< if -fcf-protection is
107                                      ///< set to full or return.
108CODEGENOPT(CFProtectionBranch , 1, 0) ///< if -fcf-protection is
109                                      ///< set to full or branch.
110CODEGENOPT(XRayInstrumentFunctions , 1, 0) ///< Set when -fxray-instrument is
111                                           ///< enabled.
112CODEGENOPT(StackSizeSection  , 1, 0) ///< Set when -fstack-size-section is enabled.
113CODEGENOPT(ForceDwarfFrameSection , 1, 0) ///< Set when -fforce-dwarf-frame is
114                                          ///< enabled.
115
116///< Set when -fxray-always-emit-customevents is enabled.
117CODEGENOPT(XRayAlwaysEmitCustomEvents , 1, 0)
118
119///< Set when -fxray-always-emit-typedevents is enabled.
120CODEGENOPT(XRayAlwaysEmitTypedEvents , 1, 0)
121
122///< Set when -fxray-ignore-loops is enabled.
123CODEGENOPT(XRayIgnoreLoops , 1, 0)
124
125///< Set with -fno-xray-function-index to omit the index section.
126CODEGENOPT(XRayOmitFunctionIndex , 1, 0)
127
128
129///< Set the minimum number of instructions in a function to determine selective
130///< XRay instrumentation.
131VALUE_CODEGENOPT(XRayInstructionThreshold , 32, 200)
132
133///< Only instrument 1 in N functions, by dividing functions into N total groups and
134///< instrumenting only the specified group at a time. Group numbers start at 0
135///< and end at N-1.
136VALUE_CODEGENOPT(XRayTotalFunctionGroups, 32, 1)
137VALUE_CODEGENOPT(XRaySelectedFunctionGroup, 32, 0)
138
139VALUE_CODEGENOPT(PatchableFunctionEntryCount , 32, 0) ///< Number of NOPs at function entry
140VALUE_CODEGENOPT(PatchableFunctionEntryOffset , 32, 0)
141
142CODEGENOPT(InstrumentForProfiling , 1, 0) ///< Set when -pg is enabled.
143CODEGENOPT(CallFEntry , 1, 0) ///< Set when -mfentry is enabled.
144CODEGENOPT(MNopMCount , 1, 0) ///< Set when -mnop-mcount is enabled.
145CODEGENOPT(RecordMCount , 1, 0) ///< Set when -mrecord-mcount is enabled.
146CODEGENOPT(PackedStack , 1, 0) ///< Set when -mpacked-stack is enabled.
147CODEGENOPT(LessPreciseFPMAD  , 1, 0) ///< Enable less precise MAD instructions to
148                                     ///< be generated.
149CODEGENOPT(PrepareForLTO     , 1, 0) ///< Set when -flto is enabled on the
150                                     ///< compile step.
151CODEGENOPT(PrepareForThinLTO , 1, 0) ///< Set when -flto=thin is enabled on the
152                                     ///< compile step.
153CODEGENOPT(LTOUnit, 1, 0) ///< Emit IR to support LTO unit features (CFI, whole
154                          ///< program vtable opt).
155CODEGENOPT(EnableSplitLTOUnit, 1, 0) ///< Enable LTO unit splitting to support
156				     /// CFI and traditional whole program
157				     /// devirtualization that require whole
158				     /// program IR support.
159CODEGENOPT(IncrementalLinkerCompatible, 1, 0) ///< Emit an object file which can
160                                              ///< be used with an incremental
161                                              ///< linker.
162CODEGENOPT(MergeAllConstants , 1, 1) ///< Merge identical constants.
163CODEGENOPT(MergeFunctions    , 1, 0) ///< Set when -fmerge-functions is enabled.
164CODEGENOPT(MSVolatile        , 1, 0) ///< Set when /volatile:ms is enabled.
165CODEGENOPT(NoCommon          , 1, 0) ///< Set when -fno-common or C++ is enabled.
166CODEGENOPT(NoDwarfDirectoryAsm , 1, 0) ///< Set when -fno-dwarf-directory-asm is
167                                       ///< enabled.
168CODEGENOPT(NoExecStack       , 1, 0) ///< Set when -Wa,--noexecstack is enabled.
169CODEGENOPT(FatalWarnings     , 1, 0) ///< Set when -Wa,--fatal-warnings is
170                                     ///< enabled.
171CODEGENOPT(NoWarn            , 1, 0) ///< Set when -Wa,--no-warn is enabled.
172CODEGENOPT(EnableSegmentedStacks , 1, 0) ///< Set when -fsplit-stack is enabled.
173CODEGENOPT(NoInlineLineTables, 1, 0) ///< Whether debug info should contain
174                                     ///< inline line tables.
175CODEGENOPT(StackClashProtector, 1, 0) ///< Set when -fstack-clash-protection is enabled.
176CODEGENOPT(NoImplicitFloat   , 1, 0) ///< Set when -mno-implicit-float is enabled.
177CODEGENOPT(NullPointerIsValid , 1, 0) ///< Assume Null pointer deference is defined.
178CODEGENOPT(OpenCLCorrectlyRoundedDivSqrt, 1, 0) ///< -cl-fp32-correctly-rounded-divide-sqrt
179CODEGENOPT(HIPCorrectlyRoundedDivSqrt, 1, 1) ///< -fno-hip-fp32-correctly-rounded-divide-sqrt
180CODEGENOPT(UniqueInternalLinkageNames, 1, 0) ///< Internal Linkage symbols get unique names.
181CODEGENOPT(SplitMachineFunctions, 1, 0) ///< Split machine functions using profile information.
182
183/// When false, this attempts to generate code as if the result of an
184/// overflowing conversion matches the overflowing behavior of a target's native
185/// float-to-int conversion instructions.
186CODEGENOPT(StrictFloatCastOverflow, 1, 1)
187
188CODEGENOPT(UniformWGSize     , 1, 0) ///< -cl-uniform-work-group-size
189CODEGENOPT(NoZeroInitializedInBSS , 1, 0) ///< -fno-zero-initialized-in-bss.
190/// Method of Objective-C dispatch to use.
191ENUM_CODEGENOPT(ObjCDispatchMethod, ObjCDispatchMethodKind, 2, Legacy)
192/// Replace certain message sends with calls to ObjC runtime entrypoints
193CODEGENOPT(ObjCConvertMessagesToRuntimeCalls , 1, 1)
194CODEGENOPT(ObjCAvoidHeapifyLocalBlocks, 1, 0)
195
196VALUE_CODEGENOPT(OptimizationLevel, 2, 0) ///< The -O[0-3] option specified.
197VALUE_CODEGENOPT(OptimizeSize, 2, 0) ///< If -Os (==1) or -Oz (==2) is specified.
198
199CODEGENOPT(AtomicProfileUpdate , 1, 0) ///< Set -fprofile-update=atomic
200/// Choose profile instrumenation kind or no instrumentation.
201ENUM_CODEGENOPT(ProfileInstr, ProfileInstrKind, 2, ProfileNone)
202/// Choose profile kind for PGO use compilation.
203ENUM_CODEGENOPT(ProfileUse, ProfileInstrKind, 2, ProfileNone)
204CODEGENOPT(CoverageMapping , 1, 0) ///< Generate coverage mapping regions to
205                                   ///< enable code coverage analysis.
206CODEGENOPT(DumpCoverageMapping , 1, 0) ///< Dump the generated coverage mapping
207                                       ///< regions.
208
209  /// If -fpcc-struct-return or -freg-struct-return is specified.
210ENUM_CODEGENOPT(StructReturnConvention, StructReturnConventionKind, 2, SRCK_Default)
211
212CODEGENOPT(RelaxAll          , 1, 0) ///< Relax all machine code instructions.
213CODEGENOPT(RelaxedAliasing   , 1, 0) ///< Set when -fno-strict-aliasing is enabled.
214CODEGENOPT(StructPathTBAA    , 1, 0) ///< Whether or not to use struct-path TBAA.
215CODEGENOPT(NewStructPathTBAA , 1, 0) ///< Whether or not to use enhanced struct-path TBAA.
216CODEGENOPT(SaveTempLabels    , 1, 0) ///< Save temporary labels.
217CODEGENOPT(SanitizeAddressUseAfterScope , 1, 0) ///< Enable use-after-scope detection
218                                                ///< in AddressSanitizer
219ENUM_CODEGENOPT(SanitizeAddressUseAfterReturn,
220                llvm::AsanDetectStackUseAfterReturnMode, 2,
221                llvm::AsanDetectStackUseAfterReturnMode::Runtime
222                ) ///< Set detection mode for stack-use-after-return.
223CODEGENOPT(SanitizeAddressPoisonCustomArrayCookie, 1,
224           0) ///< Enable poisoning operator new[] which is not a replaceable
225              ///< global allocation function in AddressSanitizer
226CODEGENOPT(SanitizeAddressGlobalsDeadStripping, 1, 0) ///< Enable linker dead stripping
227                                                      ///< of globals in AddressSanitizer
228CODEGENOPT(SanitizeAddressUseOdrIndicator, 1, 0) ///< Enable ODR indicator globals
229CODEGENOPT(SanitizeMemoryTrackOrigins, 2, 0) ///< Enable tracking origins in
230                                             ///< MemorySanitizer
231ENUM_CODEGENOPT(SanitizeAddressDtor, llvm::AsanDtorKind, 2,
232                llvm::AsanDtorKind::Global)  ///< Set how ASan global
233                                             ///< destructors are emitted.
234CODEGENOPT(SanitizeMemoryParamRetval, 1, 0) ///< Enable detection of uninitialized
235                                            ///< parameters and return values
236                                            ///< in MemorySanitizer
237CODEGENOPT(SanitizeMemoryUseAfterDtor, 1, 0) ///< Enable use-after-delete detection
238                                             ///< in MemorySanitizer
239CODEGENOPT(SanitizeCfiCrossDso, 1, 0) ///< Enable cross-dso support in CFI.
240CODEGENOPT(SanitizeMinimalRuntime, 1, 0) ///< Use "_minimal" sanitizer runtime for
241                                         ///< diagnostics.
242CODEGENOPT(SanitizeCfiICallGeneralizePointers, 1, 0) ///< Generalize pointer types in
243                                                     ///< CFI icall function signatures
244CODEGENOPT(SanitizeCfiCanonicalJumpTables, 1, 0) ///< Make jump table symbols canonical
245                                                 ///< instead of creating a local jump table.
246CODEGENOPT(SanitizeCoverageType, 2, 0) ///< Type of sanitizer coverage
247                                       ///< instrumentation.
248CODEGENOPT(SanitizeCoverageIndirectCalls, 1, 0) ///< Enable sanitizer coverage
249                                                ///< for indirect calls.
250CODEGENOPT(SanitizeCoverageTraceBB, 1, 0) ///< Enable basic block tracing in
251                                          ///< in sanitizer coverage.
252CODEGENOPT(SanitizeCoverageTraceCmp, 1, 0) ///< Enable cmp instruction tracing
253                                           ///< in sanitizer coverage.
254CODEGENOPT(SanitizeCoverageTraceDiv, 1, 0) ///< Enable div instruction tracing
255                                           ///< in sanitizer coverage.
256CODEGENOPT(SanitizeCoverageTraceGep, 1, 0) ///< Enable GEP instruction tracing
257                                           ///< in sanitizer coverage.
258CODEGENOPT(SanitizeCoverage8bitCounters, 1, 0) ///< Use 8-bit frequency counters
259                                               ///< in sanitizer coverage.
260CODEGENOPT(SanitizeCoverageTracePC, 1, 0) ///< Enable PC tracing
261                                          ///< in sanitizer coverage.
262CODEGENOPT(SanitizeCoverageTracePCGuard, 1, 0) ///< Enable PC tracing with guard
263                                               ///< in sanitizer coverage.
264CODEGENOPT(SanitizeCoverageInline8bitCounters, 1, 0) ///< Use inline 8bit counters.
265CODEGENOPT(SanitizeCoverageInlineBoolFlag, 1, 0) ///< Use inline bool flag.
266CODEGENOPT(SanitizeCoveragePCTable, 1, 0) ///< Create a PC Table.
267CODEGENOPT(SanitizeCoverageNoPrune, 1, 0) ///< Disable coverage pruning.
268CODEGENOPT(SanitizeCoverageStackDepth, 1, 0) ///< Enable max stack depth tracing
269CODEGENOPT(SanitizeCoverageTraceLoads, 1, 0) ///< Enable tracing of loads.
270CODEGENOPT(SanitizeCoverageTraceStores, 1, 0) ///< Enable tracing of stores.
271CODEGENOPT(SanitizeStats     , 1, 0) ///< Collect statistics for sanitizers.
272CODEGENOPT(SimplifyLibCalls  , 1, 1) ///< Set when -fbuiltin is enabled.
273CODEGENOPT(SoftFloat         , 1, 0) ///< -soft-float.
274CODEGENOPT(SpeculativeLoadHardening, 1, 0) ///< Enable speculative load hardening.
275CODEGENOPT(FineGrainedBitfieldAccesses, 1, 0) ///< Enable fine-grained bitfield accesses.
276CODEGENOPT(StrictEnums       , 1, 0) ///< Optimize based on strict enum definition.
277CODEGENOPT(StrictVTablePointers, 1, 0) ///< Optimize based on the strict vtable pointers
278CODEGENOPT(TimePasses        , 1, 0) ///< Set when -ftime-report or -ftime-report= is enabled.
279CODEGENOPT(TimePassesPerRun  , 1, 0) ///< Set when -ftime-report=per-pass-run is enabled.
280CODEGENOPT(TimeTrace         , 1, 0) ///< Set when -ftime-trace is enabled.
281VALUE_CODEGENOPT(TimeTraceGranularity, 32, 500) ///< Minimum time granularity (in microseconds),
282                                               ///< traced by time profiler
283CODEGENOPT(UnrollLoops       , 1, 0) ///< Control whether loops are unrolled.
284CODEGENOPT(RerollLoops       , 1, 0) ///< Control whether loops are rerolled.
285CODEGENOPT(NoUseJumpTables   , 1, 0) ///< Set when -fno-jump-tables is enabled.
286VALUE_CODEGENOPT(UnwindTables, 2, 0) ///< Unwind tables (1) or asynchronous unwind tables (2)
287CODEGENOPT(VectorizeLoop     , 1, 0) ///< Run loop vectorizer.
288CODEGENOPT(VectorizeSLP      , 1, 0) ///< Run SLP vectorizer.
289CODEGENOPT(ProfileSampleAccurate, 1, 0) ///< Sample profile is accurate.
290
291/// Treat loops as finite: language, always, never.
292ENUM_CODEGENOPT(FiniteLoops, FiniteLoopsKind, 2, FiniteLoopsKind::Language)
293
294  /// Attempt to use register sized accesses to bit-fields in structures, when
295  /// possible.
296CODEGENOPT(UseRegisterSizedBitfieldAccess , 1, 0)
297
298CODEGENOPT(VerifyModule      , 1, 1) ///< Control whether the module should be run
299                                     ///< through the LLVM Verifier.
300
301CODEGENOPT(StackRealignment  , 1, 0) ///< Control whether to force stack
302                                     ///< realignment.
303CODEGENOPT(UseInitArray      , 1, 0) ///< Control whether to use .init_array or
304                                     ///< .ctors.
305VALUE_CODEGENOPT(LoopAlignment     , 32, 0) ///< Overrides default loop
306                                            ///< alignment, if not 0.
307VALUE_CODEGENOPT(StackAlignment    , 32, 0) ///< Overrides default stack
308                                            ///< alignment, if not 0.
309VALUE_CODEGENOPT(StackProbeSize    , 32, 4096) ///< Overrides default stack
310                                               ///< probe size, even if 0.
311VALUE_CODEGENOPT(WarnStackSize     , 32, UINT_MAX) ///< Set via -fwarn-stack-size.
312CODEGENOPT(NoStackArgProbe, 1, 0) ///< Set when -mno-stack-arg-probe is used
313CODEGENOPT(DebugStrictDwarf, 1, 1) ///< Whether or not to use strict DWARF info.
314CODEGENOPT(DebugColumnInfo, 1, 0) ///< Whether or not to use column information
315                                  ///< in debug info.
316
317CODEGENOPT(DebugTypeExtRefs, 1, 0) ///< Whether or not debug info should contain
318                                   ///< external references to a PCH or module.
319
320CODEGENOPT(DebugExplicitImport, 1, 0)  ///< Whether or not debug info should
321                                       ///< contain explicit imports for
322                                       ///< anonymous namespaces
323
324CODEGENOPT(SplitDwarfInlining, 1, 1) ///< Whether to include inlining info in the
325                                     ///< skeleton CU to allow for symbolication
326                                     ///< of inline stack frames without .dwo files.
327CODEGENOPT(DebugFwdTemplateParams, 1, 0) ///< Whether to emit complete
328                                         ///< template parameter descriptions in
329                                         ///< forward declarations (versus just
330                                         ///< including them in the name).
331ENUM_CODEGENOPT(DebugSimpleTemplateNames, codegenoptions::DebugTemplateNamesKind, 2, codegenoptions::DebugTemplateNamesKind::Full) ///< Whether to emit template parameters
332                                           ///< in the textual names of template
333					   ///< specializations.
334					   ///< Implies DebugFwdTemplateNames to
335					   ///< allow decorated names to be
336					   ///< reconstructed when needed.
337CODEGENOPT(EmitLLVMUseLists, 1, 0) ///< Control whether to serialize use-lists.
338
339CODEGENOPT(WholeProgramVTables, 1, 0) ///< Whether to apply whole-program
340                                      ///  vtable optimization.
341
342CODEGENOPT(VirtualFunctionElimination, 1, 0) ///< Whether to apply the dead
343                                             /// virtual function elimination
344                                             /// optimization.
345
346/// Whether to use public LTO visibility for entities in std and stdext
347/// namespaces. This is enabled by clang-cl's /MT and /MTd flags.
348CODEGENOPT(LTOVisibilityPublicStd, 1, 0)
349
350/// The user specified number of registers to be used for integral arguments,
351/// or 0 if unspecified.
352VALUE_CODEGENOPT(NumRegisterParameters, 32, 0)
353
354/// The threshold to put data into small data section.
355VALUE_CODEGENOPT(SmallDataLimit, 32, 0)
356
357/// The lower bound for a buffer to be considered for stack protection.
358VALUE_CODEGENOPT(SSPBufferSize, 32, 0)
359
360/// The kind of generated debug info.
361ENUM_CODEGENOPT(DebugInfo, codegenoptions::DebugInfoKind, 4, codegenoptions::NoDebugInfo)
362
363/// Whether to generate macro debug info.
364CODEGENOPT(MacroDebugInfo, 1, 0)
365
366/// Tune the debug info for this debugger.
367ENUM_CODEGENOPT(DebuggerTuning, llvm::DebuggerKind, 3,
368                llvm::DebuggerKind::Default)
369
370/// Dwarf version. Version zero indicates to LLVM that no DWARF should be
371/// emitted.
372VALUE_CODEGENOPT(DwarfVersion, 3, 0)
373
374/// Whether we should emit CodeView debug information. It's possible to emit
375/// CodeView and DWARF into the same object.
376CODEGENOPT(EmitCodeView, 1, 0)
377
378/// Whether to emit the .debug$H section containing hashes of CodeView types.
379CODEGENOPT(CodeViewGHash, 1, 0)
380
381/// The kind of inlining to perform.
382ENUM_CODEGENOPT(Inlining, InliningMethod, 2, NormalInlining)
383
384// Vector functions library to use.
385ENUM_CODEGENOPT(VecLib, VectorLibrary, 3, NoLibrary)
386
387/// The default TLS model to use.
388ENUM_CODEGENOPT(DefaultTLSModel, TLSModel, 2, GeneralDynamicTLSModel)
389
390/// Bit size of immediate TLS offsets (0 == use the default).
391VALUE_CODEGENOPT(TLSSize, 8, 0)
392
393/// The default stack protector guard offset to use.
394VALUE_CODEGENOPT(StackProtectorGuardOffset, 32, INT_MAX)
395
396/// Number of path components to strip when emitting checks. (0 == full
397/// filename)
398VALUE_CODEGENOPT(EmitCheckPathComponentsToStrip, 32, 0)
399
400/// Whether to report the hotness of the code region for optimization remarks.
401CODEGENOPT(DiagnosticsWithHotness, 1, 0)
402
403/// Whether to use direct access relocations (instead of GOT) to reference external data symbols.
404CODEGENOPT(DirectAccessExternalData, 1, 0)
405
406/// Whether we should use the undefined behaviour optimization for control flow
407/// paths that reach the end of a function without executing a required return.
408CODEGENOPT(StrictReturn, 1, 1)
409
410/// Whether emit extra debug info for sample pgo profile collection.
411CODEGENOPT(DebugInfoForProfiling, 1, 0)
412
413/// Whether emit pseudo probes for sample pgo profile collection.
414CODEGENOPT(PseudoProbeForProfiling, 1, 0)
415
416/// Whether 3-component vector type is preserved.
417CODEGENOPT(PreserveVec3Type, 1, 0)
418
419/// Whether to emit .debug_gnu_pubnames section instead of .debug_pubnames.
420CODEGENOPT(DebugNameTable, 2, 0)
421
422/// Whether to use DWARF base address specifiers in .debug_ranges.
423CODEGENOPT(DebugRangesBaseAddress, 1, 0)
424
425CODEGENOPT(NoPLT, 1, 0)
426
427/// Whether to embed source in DWARF debug line section.
428CODEGENOPT(EmbedSource, 1, 0)
429
430/// Whether to emit all vtables
431CODEGENOPT(ForceEmitVTables, 1, 0)
432
433/// Whether to emit an address-significance table into the object file.
434CODEGENOPT(Addrsig, 1, 0)
435
436/// Whether to emit unused static constants.
437CODEGENOPT(KeepStaticConsts, 1, 0)
438
439/// Whether to follow the AAPCS enforcing at least one read before storing to a volatile bitfield
440CODEGENOPT(ForceAAPCSBitfieldLoad, 1, 0)
441
442/// Assume that by-value parameters do not alias any other values.
443CODEGENOPT(PassByValueIsNoAlias, 1, 0)
444
445/// Whether to not follow the AAPCS that enforces volatile bit-field access width to be
446/// according to the field declaring type width.
447CODEGENOPT(AAPCSBitfieldWidth, 1, 1)
448
449/// Sets the IEEE bit in the expected default floating point mode register.
450/// Floating point opcodes that support exception flag gathering quiet and
451/// propagate signaling NaN inputs per IEEE 754-2008 (AMDGPU Only)
452CODEGENOPT(EmitIEEENaNCompliantInsts, 1, 1)
453
454// Whether to emit Swift Async function extended frame information: auto,
455// never, always.
456ENUM_CODEGENOPT(SwiftAsyncFramePointer, SwiftAsyncFramePointerKind, 2,
457                SwiftAsyncFramePointerKind::Always)
458
459/// Whether to skip RAX setup when passing variable arguments (x86 only).
460CODEGENOPT(SkipRaxSetup, 1, 0)
461
462#undef CODEGENOPT
463#undef ENUM_CODEGENOPT
464#undef VALUE_CODEGENOPT
465