1 //===--- CodeGenOptions.h ---------------------------------------*- 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 CodeGenOptions interface.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef LLVM_CLANG_BASIC_CODEGENOPTIONS_H
14 #define LLVM_CLANG_BASIC_CODEGENOPTIONS_H
15 
16 #include "clang/Basic/DebugInfoOptions.h"
17 #include "clang/Basic/Sanitizers.h"
18 #include "clang/Basic/XRayInstr.h"
19 #include "llvm/ADT/FloatingPointMode.h"
20 #include "llvm/Support/CodeGen.h"
21 #include "llvm/Support/Regex.h"
22 #include "llvm/Target/TargetOptions.h"
23 #include "llvm/Transforms/Instrumentation/AddressSanitizerOptions.h"
24 #include <map>
25 #include <memory>
26 #include <string>
27 #include <vector>
28 
29 namespace clang {
30 
31 /// Bitfields of CodeGenOptions, split out from CodeGenOptions to ensure
32 /// that this large collection of bitfields is a trivial class type.
33 class CodeGenOptionsBase {
34   friend class CompilerInvocation;
35 
36 public:
37 #define CODEGENOPT(Name, Bits, Default) unsigned Name : Bits;
38 #define ENUM_CODEGENOPT(Name, Type, Bits, Default)
39 #include "clang/Basic/CodeGenOptions.def"
40 
41 protected:
42 #define CODEGENOPT(Name, Bits, Default)
43 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) unsigned Name : Bits;
44 #include "clang/Basic/CodeGenOptions.def"
45 };
46 
47 /// CodeGenOptions - Track various options which control how the code
48 /// is optimized and passed to the backend.
49 class CodeGenOptions : public CodeGenOptionsBase {
50 public:
51   enum InliningMethod {
52     NormalInlining,     // Use the standard function inlining pass.
53     OnlyHintInlining,   // Inline only (implicitly) hinted functions.
54     OnlyAlwaysInlining  // Only run the always inlining pass.
55   };
56 
57   enum VectorLibrary {
58     NoLibrary,         // Don't use any vector library.
59     Accelerate,        // Use the Accelerate framework.
60     LIBMVEC,           // GLIBC vector math library.
61     MASSV,             // IBM MASS vector library.
62     SVML,              // Intel short vector math library.
63     Darwin_libsystem_m // Use Darwin's libsytem_m vector functions.
64   };
65 
66   enum ObjCDispatchMethodKind {
67     Legacy = 0,
68     NonLegacy = 1,
69     Mixed = 2
70   };
71 
72   enum TLSModel {
73     GeneralDynamicTLSModel,
74     LocalDynamicTLSModel,
75     InitialExecTLSModel,
76     LocalExecTLSModel
77   };
78 
79   enum StructReturnConventionKind {
80     SRCK_Default,  // No special option was passed.
81     SRCK_OnStack,  // Small structs on the stack (-fpcc-struct-return).
82     SRCK_InRegs    // Small structs in registers (-freg-struct-return).
83   };
84 
85   enum ProfileInstrKind {
86     ProfileNone,       // Profile instrumentation is turned off.
87     ProfileClangInstr, // Clang instrumentation to generate execution counts
88                        // to use with PGO.
89     ProfileIRInstr,    // IR level PGO instrumentation in LLVM.
90     ProfileCSIRInstr, // IR level PGO context sensitive instrumentation in LLVM.
91   };
92 
93   enum EmbedBitcodeKind {
94     Embed_Off,      // No embedded bitcode.
95     Embed_All,      // Embed both bitcode and commandline in the output.
96     Embed_Bitcode,  // Embed just the bitcode in the output.
97     Embed_Marker    // Embed a marker as a placeholder for bitcode.
98   };
99 
100   enum InlineAsmDialectKind {
101     IAD_ATT,
102     IAD_Intel,
103   };
104 
105   // This field stores one of the allowed values for the option
106   // -fbasic-block-sections=.  The allowed values with this option are:
107   // {"labels", "all", "list=<file>", "none"}.
108   //
109   // "labels":      Only generate basic block symbols (labels) for all basic
110   //                blocks, do not generate unique sections for basic blocks.
111   //                Use the machine basic block id in the symbol name to
112   //                associate profile info from virtual address to machine
113   //                basic block.
114   // "all" :        Generate basic block sections for all basic blocks.
115   // "list=<file>": Generate basic block sections for a subset of basic blocks.
116   //                The functions and the machine basic block ids are specified
117   //                in the file.
118   // "none":        Disable sections/labels for basic blocks.
119   std::string BBSections;
120 
121   // If set, override the default value of MCAsmInfo::BinutilsVersion. If
122   // DisableIntegratedAS is specified, the assembly output will consider GNU as
123   // support. "none" means that all ELF features can be used, regardless of
124   // binutils support.
125   std::string BinutilsVersion;
126 
127   enum class FramePointerKind {
128     None,        // Omit all frame pointers.
129     NonLeaf,     // Keep non-leaf frame pointers.
130     All,         // Keep all frame pointers.
131   };
132 
133   enum class SwiftAsyncFramePointerKind {
134     Auto, // Choose Swift async extended frame info based on deployment target.
135     Always, // Unconditionally emit Swift async extended frame info.
136     Never,  // Don't emit Swift async extended frame info.
137     Default = Always,
138   };
139 
140   enum FiniteLoopsKind {
141     Language, // Not specified, use language standard.
142     Always,   // All loops are assumed to be finite.
143     Never,    // No loop is assumed to be finite.
144   };
145 
146   /// The code model to use (-mcmodel).
147   std::string CodeModel;
148 
149   /// The filename with path we use for coverage data files. The runtime
150   /// allows further manipulation with the GCOV_PREFIX and GCOV_PREFIX_STRIP
151   /// environment variables.
152   std::string CoverageDataFile;
153 
154   /// The filename with path we use for coverage notes files.
155   std::string CoverageNotesFile;
156 
157   /// Regexes separated by a semi-colon to filter the files to instrument.
158   std::string ProfileFilterFiles;
159 
160   /// Regexes separated by a semi-colon to filter the files to not instrument.
161   std::string ProfileExcludeFiles;
162 
163   /// The version string to put into coverage files.
164   char CoverageVersion[4];
165 
166   /// Enable additional debugging information.
167   std::string DebugPass;
168 
169   /// The string to embed in debug information as the current working directory.
170   std::string DebugCompilationDir;
171 
172   /// The string to embed in coverage mapping as the current working directory.
173   std::string CoverageCompilationDir;
174 
175   /// The string to embed in the debug information for the compile unit, if
176   /// non-empty.
177   std::string DwarfDebugFlags;
178 
179   /// The string containing the commandline for the llvm.commandline metadata,
180   /// if non-empty.
181   std::string RecordCommandLine;
182 
183   std::map<std::string, std::string> DebugPrefixMap;
184   std::map<std::string, std::string> CoveragePrefixMap;
185 
186   /// The ABI to use for passing floating point arguments.
187   std::string FloatABI;
188 
189   /// The file to use for dumping bug report by `Debugify` for original
190   /// debug info.
191   std::string DIBugsReportFilePath;
192 
193   /// The floating-point denormal mode to use.
194   llvm::DenormalMode FPDenormalMode = llvm::DenormalMode::getIEEE();
195 
196   /// The floating-point denormal mode to use, for float.
197   llvm::DenormalMode FP32DenormalMode = llvm::DenormalMode::getIEEE();
198 
199   /// The float precision limit to use, if non-empty.
200   std::string LimitFloatPrecision;
201 
202   struct BitcodeFileToLink {
203     /// The filename of the bitcode file to link in.
204     std::string Filename;
205     /// If true, we set attributes functions in the bitcode library according to
206     /// our CodeGenOptions, much as we set attrs on functions that we generate
207     /// ourselves.
208     bool PropagateAttrs = false;
209     /// If true, we use LLVM module internalizer.
210     bool Internalize = false;
211     /// Bitwise combination of llvm::Linker::Flags, passed to the LLVM linker.
212     unsigned LinkFlags = 0;
213   };
214 
215   /// The files specified here are linked in to the module before optimizations.
216   std::vector<BitcodeFileToLink> LinkBitcodeFiles;
217 
218   /// The user provided name for the "main file", if non-empty. This is useful
219   /// in situations where the input file name does not match the original input
220   /// file, for example with -save-temps.
221   std::string MainFileName;
222 
223   /// The name for the split debug info file used for the DW_AT_[GNU_]dwo_name
224   /// attribute in the skeleton CU.
225   std::string SplitDwarfFile;
226 
227   /// Output filename for the split debug info, not used in the skeleton CU.
228   std::string SplitDwarfOutput;
229 
230   /// Output filename used in the COFF debug information.
231   std::string ObjectFilenameForDebug;
232 
233   /// The name of the relocation model to use.
234   llvm::Reloc::Model RelocationModel;
235 
236   /// If not an empty string, trap intrinsics are lowered to calls to this
237   /// function instead of to trap instructions.
238   std::string TrapFuncName;
239 
240   /// A list of dependent libraries.
241   std::vector<std::string> DependentLibraries;
242 
243   /// A list of linker options to embed in the object file.
244   std::vector<std::string> LinkerOptions;
245 
246   /// Name of the profile file to use as output for -fprofile-instr-generate,
247   /// -fprofile-generate, and -fcs-profile-generate.
248   std::string InstrProfileOutput;
249 
250   /// Name of the profile file to use with -fprofile-sample-use.
251   std::string SampleProfileFile;
252 
253   /// Name of the profile file to use as output for with -fmemory-profile.
254   std::string MemoryProfileOutput;
255 
256   /// Name of the profile file to use as input for -fprofile-instr-use
257   std::string ProfileInstrumentUsePath;
258 
259   /// Name of the profile remapping file to apply to the profile data supplied
260   /// by -fprofile-sample-use or -fprofile-instr-use.
261   std::string ProfileRemappingFile;
262 
263   /// Name of the function summary index file to use for ThinLTO function
264   /// importing.
265   std::string ThinLTOIndexFile;
266 
267   /// Name of a file that can optionally be written with minimized bitcode
268   /// to be used as input for the ThinLTO thin link step, which only needs
269   /// the summary and module symbol table (and not, e.g. any debug metadata).
270   std::string ThinLinkBitcodeFile;
271 
272   /// Prefix to use for -save-temps output.
273   std::string SaveTempsFilePrefix;
274 
275   /// Name of file passed with -fcuda-include-gpubinary option to forward to
276   /// CUDA runtime back-end for incorporating them into host-side object file.
277   std::string CudaGpuBinaryFileName;
278 
279   /// List of filenames and section name pairs passed in using the
280   /// -fembed-offload-object option to embed device-side offloading objects into
281   /// the host as a named section. Input passed in as '<filename>,<section>'
282   std::vector<std::string> OffloadObjects;
283 
284   /// The name of the file to which the backend should save YAML optimization
285   /// records.
286   std::string OptRecordFile;
287 
288   /// The regex that filters the passes that should be saved to the optimization
289   /// records.
290   std::string OptRecordPasses;
291 
292   /// The format used for serializing remarks (default: YAML)
293   std::string OptRecordFormat;
294 
295   /// The name of the partition that symbols are assigned to, specified with
296   /// -fsymbol-partition (see https://lld.llvm.org/Partitions.html).
297   std::string SymbolPartition;
298 
299   enum RemarkKind {
300     RK_Missing,            // Remark argument not present on the command line.
301     RK_Enabled,            // Remark enabled via '-Rgroup'.
302     RK_EnabledEverything,  // Remark enabled via '-Reverything'.
303     RK_Disabled,           // Remark disabled via '-Rno-group'.
304     RK_DisabledEverything, // Remark disabled via '-Rno-everything'.
305     RK_WithPattern,        // Remark pattern specified via '-Rgroup=regexp'.
306   };
307 
308   /// Optimization remark with an optional regular expression pattern.
309   struct OptRemark {
310     RemarkKind Kind;
311     std::string Pattern;
312     std::shared_ptr<llvm::Regex> Regex;
313 
314     /// By default, optimization remark is missing.
315     OptRemark() : Kind(RK_Missing), Regex(nullptr) {}
316 
317     /// Returns true iff the optimization remark holds a valid regular
318     /// expression.
319     bool hasValidPattern() const { return Regex != nullptr; }
320 
321     /// Matches the given string against the regex, if there is some.
322     bool patternMatches(StringRef String) const {
323       return hasValidPattern() && Regex->match(String);
324     }
325   };
326 
327   /// Selected optimizations for which we should enable optimization remarks.
328   /// Transformation passes whose name matches the contained (optional) regular
329   /// expression (and support this feature), will emit a diagnostic whenever
330   /// they perform a transformation.
331   OptRemark OptimizationRemark;
332 
333   /// Selected optimizations for which we should enable missed optimization
334   /// remarks. Transformation passes whose name matches the contained (optional)
335   /// regular expression (and support this feature), will emit a diagnostic
336   /// whenever they tried but failed to perform a transformation.
337   OptRemark OptimizationRemarkMissed;
338 
339   /// Selected optimizations for which we should enable optimization analyses.
340   /// Transformation passes whose name matches the contained (optional) regular
341   /// expression (and support this feature), will emit a diagnostic whenever
342   /// they want to explain why they decided to apply or not apply a given
343   /// transformation.
344   OptRemark OptimizationRemarkAnalysis;
345 
346   /// Set of files defining the rules for the symbol rewriting.
347   std::vector<std::string> RewriteMapFiles;
348 
349   /// Set of sanitizer checks that are non-fatal (i.e. execution should be
350   /// continued when possible).
351   SanitizerSet SanitizeRecover;
352 
353   /// Set of sanitizer checks that trap rather than diagnose.
354   SanitizerSet SanitizeTrap;
355 
356   /// List of backend command-line options for -fembed-bitcode.
357   std::vector<uint8_t> CmdArgs;
358 
359   /// A list of all -fno-builtin-* function names (e.g., memset).
360   std::vector<std::string> NoBuiltinFuncs;
361 
362   std::vector<std::string> Reciprocals;
363 
364   /// The preferred width for auto-vectorization transforms. This is intended to
365   /// override default transforms based on the width of the architected vector
366   /// registers.
367   std::string PreferVectorWidth;
368 
369   /// Set of XRay instrumentation kinds to emit.
370   XRayInstrSet XRayInstrumentationBundle;
371 
372   std::vector<std::string> DefaultFunctionAttrs;
373 
374   /// List of dynamic shared object files to be loaded as pass plugins.
375   std::vector<std::string> PassPlugins;
376 
377   /// Path to allowlist file specifying which objects
378   /// (files, functions) should exclusively be instrumented
379   /// by sanitizer coverage pass.
380   std::vector<std::string> SanitizeCoverageAllowlistFiles;
381 
382   /// The guard style used for stack protector to get a initial value, this
383   /// value usually be gotten from TLS or get from __stack_chk_guard, or some
384   /// other styles we may implement in the future.
385   std::string StackProtectorGuard;
386 
387   /// The TLS base register when StackProtectorGuard is "tls", or register used
388   /// to store the stack canary for "sysreg".
389   /// On x86 this can be "fs" or "gs".
390   /// On AArch64 this can only be "sp_el0".
391   std::string StackProtectorGuardReg;
392 
393   /// Path to ignorelist file specifying which objects
394   /// (files, functions) listed for instrumentation by sanitizer
395   /// coverage pass should actually not be instrumented.
396   std::vector<std::string> SanitizeCoverageIgnorelistFiles;
397 
398   /// Name of the stack usage file (i.e., .su file) if user passes
399   /// -fstack-usage. If empty, it can be implied that -fstack-usage is not
400   /// passed on the command line.
401   std::string StackUsageOutput;
402 
403   /// Executable and command-line used to create a given CompilerInvocation.
404   /// Most of the time this will be the full -cc1 command.
405   const char *Argv0 = nullptr;
406   std::vector<std::string> CommandLineArgs;
407 
408   /// The minimum hotness value a diagnostic needs in order to be included in
409   /// optimization diagnostics.
410   ///
411   /// The threshold is an Optional value, which maps to one of the 3 states:
412   /// 1. 0            => threshold disabled. All remarks will be printed.
413   /// 2. positive int => manual threshold by user. Remarks with hotness exceed
414   ///                    threshold will be printed.
415   /// 3. None         => 'auto' threshold by user. The actual value is not
416   ///                    available at command line, but will be synced with
417   ///                    hotness threshold from profile summary during
418   ///                    compilation.
419   ///
420   /// If threshold option is not specified, it is disabled by default.
421   Optional<uint64_t> DiagnosticsHotnessThreshold = 0;
422 
423 public:
424   // Define accessors/mutators for code generation options of enumeration type.
425 #define CODEGENOPT(Name, Bits, Default)
426 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) \
427   Type get##Name() const { return static_cast<Type>(Name); } \
428   void set##Name(Type Value) { Name = static_cast<unsigned>(Value); }
429 #include "clang/Basic/CodeGenOptions.def"
430 
431   CodeGenOptions();
432 
433   const std::vector<std::string> &getNoBuiltinFuncs() const {
434     return NoBuiltinFuncs;
435   }
436 
437   /// Check if Clang profile instrumenation is on.
438   bool hasProfileClangInstr() const {
439     return getProfileInstr() == ProfileClangInstr;
440   }
441 
442   /// Check if IR level profile instrumentation is on.
443   bool hasProfileIRInstr() const {
444     return getProfileInstr() == ProfileIRInstr;
445   }
446 
447   /// Check if CS IR level profile instrumentation is on.
448   bool hasProfileCSIRInstr() const {
449     return getProfileInstr() == ProfileCSIRInstr;
450   }
451 
452   /// Check if Clang profile use is on.
453   bool hasProfileClangUse() const {
454     return getProfileUse() == ProfileClangInstr;
455   }
456 
457   /// Check if IR level profile use is on.
458   bool hasProfileIRUse() const {
459     return getProfileUse() == ProfileIRInstr ||
460            getProfileUse() == ProfileCSIRInstr;
461   }
462 
463   /// Check if CSIR profile use is on.
464   bool hasProfileCSIRUse() const { return getProfileUse() == ProfileCSIRInstr; }
465 
466   /// Check if type and variable info should be emitted.
467   bool hasReducedDebugInfo() const {
468     return getDebugInfo() >= codegenoptions::DebugInfoConstructor;
469   }
470 
471   /// Check if maybe unused type info should be emitted.
472   bool hasMaybeUnusedDebugInfo() const {
473     return getDebugInfo() >= codegenoptions::UnusedTypeInfo;
474   }
475 
476   // Check if any one of SanitizeCoverage* is enabled.
477   bool hasSanitizeCoverage() const {
478     return SanitizeCoverageType || SanitizeCoverageIndirectCalls ||
479            SanitizeCoverageTraceCmp || SanitizeCoverageTraceLoads ||
480            SanitizeCoverageTraceStores;
481   }
482 };
483 
484 }  // end namespace clang
485 
486 #endif
487