clang 19.0.0git
Tool.cpp
Go to the documentation of this file.
1//===--- Tool.cpp - Compilation Tools -------------------------------------===//
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#include "clang/Driver/Tool.h"
11
12using namespace clang::driver;
13
14Tool::Tool(const char *_Name, const char *_ShortName, const ToolChain &TC)
15 : Name(_Name), ShortName(_ShortName), TheToolChain(TC) {}
16
18}
19
21 const InputInfoList &Outputs,
22 const InputInfoList &Inputs,
23 const llvm::opt::ArgList &TCArgs,
24 const char *LinkingOutput) const {
25 assert(Outputs.size() == 1 && "Expected only one output by default!");
26 ConstructJob(C, JA, Outputs.front(), Inputs, TCArgs, LinkingOutput);
27}
Compilation - A set of tasks to perform for a single driver invocation.
Definition: Compilation.h:45
ToolChain - Access to tools for a single platform.
Definition: ToolChain.h:92
virtual ~Tool()
Definition: Tool.cpp:17
Tool(const char *Name, const char *ShortName, const ToolChain &TC)
Definition: Tool.cpp:14
virtual void ConstructJobMultipleOutputs(Compilation &C, const JobAction &JA, const InputInfoList &Outputs, const InputInfoList &Inputs, const llvm::opt::ArgList &TCArgs, const char *LinkingOutput) const
Construct jobs to perform the action JA, writing to the Outputs and with Inputs, and add the jobs to ...
Definition: Tool.cpp:20
virtual void ConstructJob(Compilation &C, const JobAction &JA, const InputInfo &Output, const InputInfoList &Inputs, const llvm::opt::ArgList &TCArgs, const char *LinkingOutput) const =0
ConstructJob - Construct jobs to perform the action JA, writing to Output and with Inputs,...