blob: 3d058c2f4ccf5b215103a349966e7b80b35314da [file] [log] [blame]
Dean Michael Berris835832d2017-03-30 00:29:36 +00001//===--- XRayArgs.cpp - Arguments for XRay --------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9#include "clang/Driver/XRayArgs.h"
10#include "ToolChains/CommonArgs.h"
11#include "clang/Driver/Driver.h"
12#include "clang/Driver/DriverDiagnostic.h"
13#include "clang/Driver/Options.h"
14#include "clang/Driver/ToolChain.h"
15#include "llvm/ADT/StringExtras.h"
16#include "llvm/ADT/StringSwitch.h"
17#include "llvm/Support/FileSystem.h"
18#include "llvm/Support/Path.h"
Dean Michael Berris00ad3d52017-03-30 01:05:09 +000019#include "llvm/Support/ScopedPrinter.h"
Dean Michael Berris504fc222017-03-30 22:46:45 +000020#include "llvm/Support/SpecialCaseList.h"
Dean Michael Berris835832d2017-03-30 00:29:36 +000021
22using namespace clang;
23using namespace clang::driver;
24using namespace llvm::opt;
25
26namespace {
27constexpr char XRayInstrumentOption[] = "-fxray-instrument";
28constexpr char XRayInstructionThresholdOption[] =
29 "-fxray-instruction-threshold=";
Dean Michael Berris826e6662018-04-11 01:28:25 +000030constexpr const char *const XRaySupportedModes[] = {"xray-fdr", "xray-basic"};
Dean Michael Berris835832d2017-03-30 00:29:36 +000031} // namespace
32
33XRayArgs::XRayArgs(const ToolChain &TC, const ArgList &Args) {
34 const Driver &D = TC.getDriver();
35 const llvm::Triple &Triple = TC.getTriple();
36 if (Args.hasFlag(options::OPT_fxray_instrument,
37 options::OPT_fnoxray_instrument, false)) {
Kamil Rytarowski3e4e74c2018-02-22 06:31:40 +000038 if (Triple.getOS() == llvm::Triple::Linux) {
Dean Michael Berris835832d2017-03-30 00:29:36 +000039 switch (Triple.getArch()) {
40 case llvm::Triple::x86_64:
41 case llvm::Triple::arm:
42 case llvm::Triple::aarch64:
43 case llvm::Triple::ppc64le:
44 case llvm::Triple::mips:
45 case llvm::Triple::mipsel:
46 case llvm::Triple::mips64:
47 case llvm::Triple::mips64el:
48 break;
49 default:
50 D.Diag(diag::err_drv_clang_unsupported)
51 << (std::string(XRayInstrumentOption) + " on " + Triple.str());
52 }
Dean Michael Berris9b592332018-04-04 12:47:49 +000053 } else if (Triple.getOS() == llvm::Triple::FreeBSD ||
Kamil Rytarowski448631f2018-05-11 00:58:55 +000054 Triple.getOS() == llvm::Triple::OpenBSD ||
David Carlier6e116a52018-08-27 05:16:09 +000055 Triple.getOS() == llvm::Triple::NetBSD ||
56 Triple.getOS() == llvm::Triple::Darwin) {
Dean Michael Berris826e6662018-04-11 01:28:25 +000057 if (Triple.getArch() != llvm::Triple::x86_64) {
58 D.Diag(diag::err_drv_clang_unsupported)
59 << (std::string(XRayInstrumentOption) + " on " + Triple.str());
60 }
Kamil Rytarowski3e4e74c2018-02-22 06:31:40 +000061 } else {
Dean Michael Berris835832d2017-03-30 00:29:36 +000062 D.Diag(diag::err_drv_clang_unsupported)
Dean Michael Berris488f7c22018-04-13 02:31:58 +000063 << (std::string(XRayInstrumentOption) + " on " + Triple.str());
Kamil Rytarowski3e4e74c2018-02-22 06:31:40 +000064 }
Dean Michael Berris835832d2017-03-30 00:29:36 +000065 XRayInstrument = true;
66 if (const Arg *A =
67 Args.getLastArg(options::OPT_fxray_instruction_threshold_,
68 options::OPT_fxray_instruction_threshold_EQ)) {
69 StringRef S = A->getValue();
70 if (S.getAsInteger(0, InstructionThreshold) || InstructionThreshold < 0)
71 D.Diag(clang::diag::err_drv_invalid_value) << A->getAsString(Args) << S;
72 }
73
Dean Michael Berris1a5b10d2017-11-30 00:04:54 +000074 // By default, the back-end will not emit the lowering for XRay customevent
75 // calls if the function is not instrumented. In the future we will change
76 // this default to be the reverse, but in the meantime we're going to
77 // introduce the new functionality behind a flag.
78 if (Args.hasFlag(options::OPT_fxray_always_emit_customevents,
79 options::OPT_fnoxray_always_emit_customevents, false))
80 XRayAlwaysEmitCustomEvents = true;
81
Keith Wyssf437e352018-04-17 21:32:43 +000082 if (Args.hasFlag(options::OPT_fxray_always_emit_typedevents,
83 options::OPT_fnoxray_always_emit_typedevents, false))
84 XRayAlwaysEmitTypedEvents = true;
85
Dean Michael Berris248148d2018-04-06 05:28:54 +000086 if (!Args.hasFlag(options::OPT_fxray_link_deps,
87 options::OPT_fnoxray_link_deps, true))
88 XRayRT = false;
89
Dean Michael Berris488f7c22018-04-13 02:31:58 +000090 auto Bundles =
91 Args.getAllArgValues(options::OPT_fxray_instrumentation_bundle);
92 if (Bundles.empty())
93 InstrumentationBundle.Mask = XRayInstrKind::All;
94 else
95 for (const auto &B : Bundles) {
96 llvm::SmallVector<StringRef, 2> BundleParts;
97 llvm::SplitString(B, BundleParts, ",");
98 for (const auto &P : BundleParts) {
99 // TODO: Automate the generation of the string case table.
100 auto Valid = llvm::StringSwitch<bool>(P)
101 .Cases("none", "all", "function", "custom", true)
102 .Default(false);
103
104 if (!Valid) {
105 D.Diag(clang::diag::err_drv_invalid_value)
106 << "-fxray-instrumentation-bundle=" << P;
107 continue;
108 }
109
110 auto Mask = parseXRayInstrValue(P);
111 if (Mask == XRayInstrKind::None) {
112 InstrumentationBundle.clear();
113 break;
114 }
115
116 InstrumentationBundle.Mask |= Mask;
117 }
118 }
119
Dean Michael Berris835832d2017-03-30 00:29:36 +0000120 // Validate the always/never attribute files. We also make sure that they
121 // are treated as actual dependencies.
122 for (const auto &Filename :
123 Args.getAllArgValues(options::OPT_fxray_always_instrument)) {
124 if (llvm::sys::fs::exists(Filename)) {
125 AlwaysInstrumentFiles.push_back(Filename);
126 ExtraDeps.push_back(Filename);
127 } else
128 D.Diag(clang::diag::err_drv_no_such_file) << Filename;
129 }
130
131 for (const auto &Filename :
132 Args.getAllArgValues(options::OPT_fxray_never_instrument)) {
133 if (llvm::sys::fs::exists(Filename)) {
134 NeverInstrumentFiles.push_back(Filename);
135 ExtraDeps.push_back(Filename);
136 } else
137 D.Diag(clang::diag::err_drv_no_such_file) << Filename;
138 }
Dean Michael Berris20dc6ef2018-04-09 04:02:09 +0000139
140 for (const auto &Filename :
141 Args.getAllArgValues(options::OPT_fxray_attr_list)) {
142 if (llvm::sys::fs::exists(Filename)) {
143 AttrListFiles.push_back(Filename);
144 ExtraDeps.push_back(Filename);
145 } else
146 D.Diag(clang::diag::err_drv_no_such_file) << Filename;
147 }
Dean Michael Berris826e6662018-04-11 01:28:25 +0000148
149 // Get the list of modes we want to support.
150 auto SpecifiedModes = Args.getAllArgValues(options::OPT_fxray_modes);
151 if (SpecifiedModes.empty())
152 llvm::copy(XRaySupportedModes, std::back_inserter(Modes));
153 else
154 for (const auto &Arg : SpecifiedModes) {
Dean Michael Berris826e6662018-04-11 01:28:25 +0000155 // Parse CSV values for -fxray-modes=...
156 llvm::SmallVector<StringRef, 2> ModeParts;
157 llvm::SplitString(Arg, ModeParts, ",");
158 for (const auto &M : ModeParts)
Dean Michael Berris7fc737a2018-04-13 05:59:57 +0000159 if (M == "none")
160 Modes.clear();
161 else if (M == "all")
162 llvm::copy(XRaySupportedModes, std::back_inserter(Modes));
163 else
164 Modes.push_back(M);
Dean Michael Berris826e6662018-04-11 01:28:25 +0000165 }
166
167 // Then we want to sort and unique the modes we've collected.
Fangrui Song55fab262018-09-26 22:16:28 +0000168 llvm::sort(Modes);
Dean Michael Berris826e6662018-04-11 01:28:25 +0000169 Modes.erase(std::unique(Modes.begin(), Modes.end()), Modes.end());
Dean Michael Berris835832d2017-03-30 00:29:36 +0000170 }
171}
172
173void XRayArgs::addArgs(const ToolChain &TC, const ArgList &Args,
174 ArgStringList &CmdArgs, types::ID InputType) const {
175 if (!XRayInstrument)
176 return;
177
178 CmdArgs.push_back(XRayInstrumentOption);
Dean Michael Berris1a5b10d2017-11-30 00:04:54 +0000179
180 if (XRayAlwaysEmitCustomEvents)
181 CmdArgs.push_back("-fxray-always-emit-customevents");
182
Keith Wyssf437e352018-04-17 21:32:43 +0000183 if (XRayAlwaysEmitTypedEvents)
184 CmdArgs.push_back("-fxray-always-emit-typedevents");
185
Dean Michael Berris504fc222017-03-30 22:46:45 +0000186 CmdArgs.push_back(Args.MakeArgString(Twine(XRayInstructionThresholdOption) +
187 Twine(InstructionThreshold)));
Dean Michael Berris835832d2017-03-30 00:29:36 +0000188
189 for (const auto &Always : AlwaysInstrumentFiles) {
Dean Michael Berris1a5b10d2017-11-30 00:04:54 +0000190 SmallString<64> AlwaysInstrumentOpt("-fxray-always-instrument=");
Dean Michael Berris835832d2017-03-30 00:29:36 +0000191 AlwaysInstrumentOpt += Always;
192 CmdArgs.push_back(Args.MakeArgString(AlwaysInstrumentOpt));
193 }
194
195 for (const auto &Never : NeverInstrumentFiles) {
Dean Michael Berris1a5b10d2017-11-30 00:04:54 +0000196 SmallString<64> NeverInstrumentOpt("-fxray-never-instrument=");
Dean Michael Berris835832d2017-03-30 00:29:36 +0000197 NeverInstrumentOpt += Never;
198 CmdArgs.push_back(Args.MakeArgString(NeverInstrumentOpt));
199 }
200
Dean Michael Berris488f7c22018-04-13 02:31:58 +0000201 for (const auto &AttrFile : AttrListFiles) {
Dean Michael Berris20dc6ef2018-04-09 04:02:09 +0000202 SmallString<64> AttrListFileOpt("-fxray-attr-list=");
203 AttrListFileOpt += AttrFile;
204 CmdArgs.push_back(Args.MakeArgString(AttrListFileOpt));
205 }
206
Dean Michael Berris835832d2017-03-30 00:29:36 +0000207 for (const auto &Dep : ExtraDeps) {
208 SmallString<64> ExtraDepOpt("-fdepfile-entry=");
209 ExtraDepOpt += Dep;
210 CmdArgs.push_back(Args.MakeArgString(ExtraDepOpt));
211 }
Dean Michael Berris7fc737a2018-04-13 05:59:57 +0000212
213 for (const auto &Mode : Modes) {
214 SmallString<64> ModeOpt("-fxray-modes=");
215 ModeOpt += Mode;
216 CmdArgs.push_back(Args.MakeArgString(ModeOpt));
217 }
Dean Michael Berris5082e252018-09-21 08:32:49 +0000218
219 SmallString<64> Bundle("-fxray-instrumentation-bundle=");
220 if (InstrumentationBundle.full()) {
221 Bundle += "all";
222 } else if (InstrumentationBundle.empty()) {
223 Bundle += "none";
224 } else {
225 if (InstrumentationBundle.has(XRayInstrKind::Function))
226 Bundle += "function";
227 if (InstrumentationBundle.has(XRayInstrKind::Custom))
228 Bundle += "custom";
229 if (InstrumentationBundle.has(XRayInstrKind::Typed))
230 Bundle += "typed";
231 }
232 CmdArgs.push_back(Args.MakeArgString(Bundle));
Dean Michael Berris835832d2017-03-30 00:29:36 +0000233}