clang 19.0.0git
XCore.h
Go to the documentation of this file.
1//===--- XCore.h - XCore ToolChain Implementations --------------*- 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_XCORE_H
10#define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_XCORE_H
11
12#include "clang/Driver/Tool.h"
14
15namespace clang {
16namespace driver {
17namespace tools {
18
19namespace XCore {
20// For XCore, we do not need to instantiate tools for PreProcess, PreCompile and
21// Compile.
22// We simply use "clang -cc1" for those actions.
23class LLVM_LIBRARY_VISIBILITY Assembler final : public Tool {
24public:
25 Assembler(const ToolChain &TC) : Tool("XCore::Assembler", "XCore-as", TC) {}
26
27 bool hasIntegratedCPP() const override { return false; }
28 void ConstructJob(Compilation &C, const JobAction &JA,
29 const InputInfo &Output, const InputInfoList &Inputs,
30 const llvm::opt::ArgList &TCArgs,
31 const char *LinkingOutput) const override;
32};
33
34class LLVM_LIBRARY_VISIBILITY Linker final : public Tool {
35public:
36 Linker(const ToolChain &TC) : Tool("XCore::Linker", "XCore-ld", TC) {}
37
38 bool hasIntegratedCPP() const override { return false; }
39 bool isLinkJob() const override { return true; }
40 void ConstructJob(Compilation &C, const JobAction &JA,
41 const InputInfo &Output, const InputInfoList &Inputs,
42 const llvm::opt::ArgList &TCArgs,
43 const char *LinkingOutput) const override;
44};
45} // end namespace XCore.
46} // end namespace tools
47
48namespace toolchains {
49
50class LLVM_LIBRARY_VISIBILITY XCoreToolChain : public ToolChain {
51public:
52 XCoreToolChain(const Driver &D, const llvm::Triple &Triple,
53 const llvm::opt::ArgList &Args);
54
55protected:
56 Tool *buildAssembler() const override;
57 Tool *buildLinker() const override;
58
59public:
60 bool IsIntegratedAssemblerDefault() const override { return false; }
61 bool isPICDefault() const override;
62 bool isPIEDefault(const llvm::opt::ArgList &Args) const override;
63 bool isPICDefaultForced() const override;
64 bool SupportsProfiling() const override;
65 bool hasBlocksRuntime() const override;
66 void
67 AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs,
68 llvm::opt::ArgStringList &CC1Args) const override;
69 void addClangTargetOptions(const llvm::opt::ArgList &DriverArgs,
70 llvm::opt::ArgStringList &CC1Args,
71 Action::OffloadKind DeviceOffloadKind) const override;
72 void AddClangCXXStdlibIncludeArgs(
73 const llvm::opt::ArgList &DriverArgs,
74 llvm::opt::ArgStringList &CC1Args) const override;
75 void AddCXXStdlibLibArgs(const llvm::opt::ArgList &Args,
76 llvm::opt::ArgStringList &CmdArgs) const override;
77};
78
79} // end namespace toolchains
80} // end namespace driver
81} // end namespace clang
82
83#endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_XCORE_H
Compilation - A set of tasks to perform for a single driver invocation.
Definition: Compilation.h:45
Driver - Encapsulate logic for constructing compilation processes from a set of gcc-driver-like comma...
Definition: Driver.h:77
InputInfo - Wrapper for information about an input source.
Definition: InputInfo.h:22
ToolChain - Access to tools for a single platform.
Definition: ToolChain.h:92
Tool - Information on a specific compilation tool.
Definition: Tool.h:32
bool IsIntegratedAssemblerDefault() const override
IsIntegratedAssemblerDefault - Does this tool chain enable -integrated-as by default.
Definition: XCore.h:60
Assembler(const ToolChain &TC)
Definition: XCore.h:25
bool hasIntegratedCPP() const override
Definition: XCore.h:27
bool isLinkJob() const override
Definition: XCore.h:39
Linker(const ToolChain &TC)
Definition: XCore.h:36
bool hasIntegratedCPP() const override
Definition: XCore.h:38
The JSON file list parser is used to communicate input to InstallAPI.