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