clang 19.0.0git
TCE.cpp
Go to the documentation of this file.
1//===--- TCE.cpp - TCE 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#include "TCE.h"
10#include "CommonArgs.h"
11
12using namespace clang::driver;
13using namespace clang::driver::toolchains;
14using namespace clang;
15using namespace llvm::opt;
16
17/// TCEToolChain - A tool chain using the llvm bitcode tools to perform
18/// all subcommands. See http://tce.cs.tut.fi for our peculiar target.
19/// Currently does not support anything else but compilation.
20
21TCEToolChain::TCEToolChain(const Driver &D, const llvm::Triple &Triple,
22 const ArgList &Args)
23 : ToolChain(D, Triple, Args) {
24 // Path mangling to find libexec
25 std::string Path(getDriver().Dir);
26
27 Path += "/../libexec";
28 getProgramPaths().push_back(Path);
29}
30
32
33bool TCEToolChain::IsMathErrnoDefault() const { return true; }
34
35bool TCEToolChain::isPICDefault() const { return false; }
36
37bool TCEToolChain::isPIEDefault(const llvm::opt::ArgList &Args) const {
38 return false;
39}
40
41bool TCEToolChain::isPICDefaultForced() const { return false; }
42
43TCELEToolChain::TCELEToolChain(const Driver &D, const llvm::Triple& Triple,
44 const ArgList &Args)
45 : TCEToolChain(D, Triple, Args) {
46}
47
Driver - Encapsulate logic for constructing compilation processes from a set of gcc-driver-like comma...
Definition: Driver.h:77
ToolChain - Access to tools for a single platform.
Definition: ToolChain.h:92
const Driver & getDriver() const
Definition: ToolChain.h:252
path_list & getProgramPaths()
Definition: ToolChain.h:297
TCELEToolChain(const Driver &D, const llvm::Triple &Triple, const llvm::opt::ArgList &Args)
Definition: TCE.cpp:43
TCEToolChain - A tool chain using the llvm bitcode tools to perform all subcommands.
Definition: TCE.h:22
bool IsMathErrnoDefault() const override
IsMathErrnoDefault - Does this tool chain use -fmath-errno by default.
Definition: TCE.cpp:33
bool isPIEDefault(const llvm::opt::ArgList &Args) const override
Test whether this toolchain defaults to PIE.
Definition: TCE.cpp:37
bool isPICDefaultForced() const override
Tests whether this toolchain forces its default for PIC, PIE or non-PIC.
Definition: TCE.cpp:41
TCEToolChain(const Driver &D, const llvm::Triple &Triple, const llvm::opt::ArgList &Args)
TCEToolChain - A tool chain using the llvm bitcode tools to perform all subcommands.
Definition: TCE.cpp:21
bool isPICDefault() const override
Test whether this toolchain defaults to PIC.
Definition: TCE.cpp:35
The JSON file list parser is used to communicate input to InstallAPI.