xref: /freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/CommonArgs.h (revision d56accc7c3dcc897489b6a07834763a03b9f3d68)
1 //===--- CommonArgs.h - Args handling for multiple toolchains ---*- 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 #ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_COMMONARGS_H
10 #define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_COMMONARGS_H
11 
12 #include "clang/Driver/Driver.h"
13 #include "clang/Driver/InputInfo.h"
14 #include "clang/Driver/Multilib.h"
15 #include "clang/Driver/Tool.h"
16 #include "clang/Driver/ToolChain.h"
17 #include "llvm/Support/CodeGen.h"
18 
19 namespace clang {
20 namespace driver {
21 namespace tools {
22 
23 void addPathIfExists(const Driver &D, const Twine &Path,
24                      ToolChain::path_list &Paths);
25 
26 void AddLinkerInputs(const ToolChain &TC, const InputInfoList &Inputs,
27                      const llvm::opt::ArgList &Args,
28                      llvm::opt::ArgStringList &CmdArgs, const JobAction &JA);
29 
30 void addLinkerCompressDebugSectionsOption(const ToolChain &TC,
31                                           const llvm::opt::ArgList &Args,
32                                           llvm::opt::ArgStringList &CmdArgs);
33 
34 void claimNoWarnArgs(const llvm::opt::ArgList &Args);
35 
36 bool addSanitizerRuntimes(const ToolChain &TC, const llvm::opt::ArgList &Args,
37                           llvm::opt::ArgStringList &CmdArgs);
38 
39 void linkSanitizerRuntimeDeps(const ToolChain &TC,
40                               llvm::opt::ArgStringList &CmdArgs);
41 
42 bool addXRayRuntime(const ToolChain &TC, const llvm::opt::ArgList &Args,
43                     llvm::opt::ArgStringList &CmdArgs);
44 
45 void linkXRayRuntimeDeps(const ToolChain &TC,
46                          llvm::opt::ArgStringList &CmdArgs);
47 
48 void AddRunTimeLibs(const ToolChain &TC, const Driver &D,
49                     llvm::opt::ArgStringList &CmdArgs,
50                     const llvm::opt::ArgList &Args);
51 
52 void AddStaticDeviceLibsLinking(Compilation &C, const Tool &T,
53                                 const JobAction &JA,
54                                 const InputInfoList &Inputs,
55                                 const llvm::opt::ArgList &DriverArgs,
56                                 llvm::opt::ArgStringList &CmdArgs,
57                                 StringRef Arch, StringRef Target,
58                                 bool isBitCodeSDL, bool postClangLink);
59 void AddStaticDeviceLibsPostLinking(const Driver &D,
60                                     const llvm::opt::ArgList &DriverArgs,
61                                     llvm::opt::ArgStringList &CmdArgs,
62                                     StringRef Arch, StringRef Target,
63                                     bool isBitCodeSDL, bool postClangLink);
64 void AddStaticDeviceLibs(Compilation *C, const Tool *T, const JobAction *JA,
65                          const InputInfoList *Inputs, const Driver &D,
66                          const llvm::opt::ArgList &DriverArgs,
67                          llvm::opt::ArgStringList &CmdArgs, StringRef Arch,
68                          StringRef Target, bool isBitCodeSDL,
69                          bool postClangLink);
70 
71 bool SDLSearch(const Driver &D, const llvm::opt::ArgList &DriverArgs,
72                llvm::opt::ArgStringList &CmdArgs,
73                SmallVector<std::string, 8> LibraryPaths, std::string Lib,
74                StringRef Arch, StringRef Target, bool isBitCodeSDL,
75                bool postClangLink);
76 
77 bool GetSDLFromOffloadArchive(Compilation &C, const Driver &D, const Tool &T,
78                               const JobAction &JA, const InputInfoList &Inputs,
79                               const llvm::opt::ArgList &DriverArgs,
80                               llvm::opt::ArgStringList &CC1Args,
81                               SmallVector<std::string, 8> LibraryPaths,
82                               StringRef Lib, StringRef Arch, StringRef Target,
83                               bool isBitCodeSDL, bool postClangLink);
84 
85 const char *SplitDebugName(const JobAction &JA, const llvm::opt::ArgList &Args,
86                            const InputInfo &Input, const InputInfo &Output);
87 
88 void SplitDebugInfo(const ToolChain &TC, Compilation &C, const Tool &T,
89                     const JobAction &JA, const llvm::opt::ArgList &Args,
90                     const InputInfo &Output, const char *OutFile);
91 
92 void addLTOOptions(const ToolChain &ToolChain, const llvm::opt::ArgList &Args,
93                    llvm::opt::ArgStringList &CmdArgs, const InputInfo &Output,
94                    const InputInfo &Input, bool IsThinLTO);
95 
96 std::tuple<llvm::Reloc::Model, unsigned, bool>
97 ParsePICArgs(const ToolChain &ToolChain, const llvm::opt::ArgList &Args);
98 
99 unsigned ParseFunctionAlignment(const ToolChain &TC,
100                                 const llvm::opt::ArgList &Args);
101 
102 unsigned ParseDebugDefaultVersion(const ToolChain &TC,
103                                   const llvm::opt::ArgList &Args);
104 
105 void AddAssemblerKPIC(const ToolChain &ToolChain,
106                       const llvm::opt::ArgList &Args,
107                       llvm::opt::ArgStringList &CmdArgs);
108 
109 void addOpenMPRuntimeSpecificRPath(const ToolChain &TC,
110                                    const llvm::opt::ArgList &Args,
111                                    llvm::opt::ArgStringList &CmdArgs);
112 void addArchSpecificRPath(const ToolChain &TC, const llvm::opt::ArgList &Args,
113                           llvm::opt::ArgStringList &CmdArgs);
114 /// Returns true, if an OpenMP runtime has been added.
115 bool addOpenMPRuntime(llvm::opt::ArgStringList &CmdArgs, const ToolChain &TC,
116                       const llvm::opt::ArgList &Args,
117                       bool ForceStaticHostRuntime = false,
118                       bool IsOffloadingHost = false, bool GompNeedsRT = false);
119 
120 llvm::opt::Arg *getLastProfileUseArg(const llvm::opt::ArgList &Args);
121 llvm::opt::Arg *getLastProfileSampleUseArg(const llvm::opt::ArgList &Args);
122 
123 bool isObjCAutoRefCount(const llvm::opt::ArgList &Args);
124 
125 llvm::StringRef getLTOParallelism(const llvm::opt::ArgList &Args,
126                                   const Driver &D);
127 
128 bool areOptimizationsEnabled(const llvm::opt::ArgList &Args);
129 
130 bool isUseSeparateSections(const llvm::Triple &Triple);
131 
132 /// \p EnvVar is split by system delimiter for environment variables.
133 /// If \p ArgName is "-I", "-L", or an empty string, each entry from \p EnvVar
134 /// is prefixed by \p ArgName then added to \p Args. Otherwise, for each
135 /// entry of \p EnvVar, \p ArgName is added to \p Args first, then the entry
136 /// itself is added.
137 void addDirectoryList(const llvm::opt::ArgList &Args,
138                       llvm::opt::ArgStringList &CmdArgs, const char *ArgName,
139                       const char *EnvVar);
140 
141 void AddTargetFeature(const llvm::opt::ArgList &Args,
142                       std::vector<StringRef> &Features,
143                       llvm::opt::OptSpecifier OnOpt,
144                       llvm::opt::OptSpecifier OffOpt, StringRef FeatureName);
145 
146 std::string getCPUName(const Driver &D, const llvm::opt::ArgList &Args,
147                        const llvm::Triple &T, bool FromAs = false);
148 
149 /// Iterate \p Args and convert -mxxx to +xxx and -mno-xxx to -xxx and
150 /// append it to \p Features.
151 ///
152 /// Note: Since \p Features may contain default values before calling
153 /// this function, or may be appended with entries to override arguments,
154 /// entries in \p Features are not unique.
155 void handleTargetFeaturesGroup(const llvm::opt::ArgList &Args,
156                                std::vector<StringRef> &Features,
157                                llvm::opt::OptSpecifier Group);
158 
159 /// If there are multiple +xxx or -xxx features, keep the last one.
160 std::vector<StringRef>
161 unifyTargetFeatures(const std::vector<StringRef> &Features);
162 
163 /// Handles the -save-stats option and returns the filename to save statistics
164 /// to.
165 SmallString<128> getStatsFileName(const llvm::opt::ArgList &Args,
166                                   const InputInfo &Output,
167                                   const InputInfo &Input, const Driver &D);
168 
169 /// \p Flag must be a flag accepted by the driver with its leading '-' removed,
170 //     otherwise '-print-multi-lib' will not emit them correctly.
171 void addMultilibFlag(bool Enabled, const char *const Flag,
172                      Multilib::flags_list &Flags);
173 
174 void addX86AlignBranchArgs(const Driver &D, const llvm::opt::ArgList &Args,
175                            llvm::opt::ArgStringList &CmdArgs, bool IsLTO);
176 
177 void checkAMDGPUCodeObjectVersion(const Driver &D,
178                                   const llvm::opt::ArgList &Args);
179 
180 unsigned getAMDGPUCodeObjectVersion(const Driver &D,
181                                     const llvm::opt::ArgList &Args);
182 
183 bool haveAMDGPUCodeObjectVersionArgument(const Driver &D,
184                                          const llvm::opt::ArgList &Args);
185 
186 void addMachineOutlinerArgs(const Driver &D, const llvm::opt::ArgList &Args,
187                             llvm::opt::ArgStringList &CmdArgs,
188                             const llvm::Triple &Triple, bool IsLTO);
189 
190 void addOpenMPDeviceRTL(const Driver &D, const llvm::opt::ArgList &DriverArgs,
191                         llvm::opt::ArgStringList &CC1Args,
192                         StringRef BitcodeSuffix, const llvm::Triple &Triple);
193 } // end namespace tools
194 } // end namespace driver
195 } // end namespace clang
196 
197 #endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_COMMONARGS_H
198