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