1//===--- XRayArgs.h - Arguments for XRay ------------------------*- 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#ifndef LLVM_CLANG_DRIVER_XRAYARGS_H
9#define LLVM_CLANG_DRIVER_XRAYARGS_H
10
11#include "clang/Basic/XRayInstr.h"
12#include "clang/Driver/Types.h"
13#include "llvm/Option/Arg.h"
14#include "llvm/Option/ArgList.h"
15
16namespace clang {
17namespace driver {
18
19class ToolChain;
20
21class XRayArgs {
22  std::vector<std::string> AlwaysInstrumentFiles;
23  std::vector<std::string> NeverInstrumentFiles;
24  std::vector<std::string> AttrListFiles;
25  std::vector<std::string> ExtraDeps;
26  std::vector<std::string> Modes;
27  XRayInstrSet InstrumentationBundle;
28  llvm::opt::Arg *XRayInstrument = nullptr;
29  bool XRayRT = true;
30
31public:
32  /// Parses the XRay arguments from an argument list.
33  XRayArgs(const ToolChain &TC, const llvm::opt::ArgList &Args);
34  void addArgs(const ToolChain &TC, const llvm::opt::ArgList &Args,
35               llvm::opt::ArgStringList &CmdArgs, types::ID InputType) const;
36
37  bool needsXRayRt() const { return XRayInstrument && XRayRT; }
38  llvm::ArrayRef<std::string> modeList() const { return Modes; }
39  XRayInstrSet instrumentationBundle() const { return InstrumentationBundle; }
40};
41
42} // namespace driver
43} // namespace clang
44
45#endif // LLVM_CLANG_DRIVER_XRAYARGS_H
46