
The driver uses class SanitizerArgs to store parsed sanitizer arguments. It keeps a cached SanitizerArgs object in ToolChain and uses it for different jobs. This does not work if the sanitizer options are different for different jobs, which could happen when an offloading toolchain translates the options for different jobs. To fix this, SanitizerArgs should be created by using the actual arguments passed to jobs instead of the original arguments passed to the driver, since the toolchain may change the original arguments. And the sanitizer arguments should be diagnose once. This patch also fixes HIP toolchain for handling -fgpu-sanitize: a warning is emitted for GPU's not supporting sanitizer and skipped. This is for backward compatibility with existing -fsanitize options. -fgpu-sanitize is also turned on by default. Reviewed by: Artem Belevich, Evgenii Stepanov Differential Revision: https://reviews.llvm.org/D111443
49 lines
1.5 KiB
C++
49 lines
1.5 KiB
C++
//===--- TCE.cpp - TCE ToolChain Implementations ----------------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "TCE.h"
|
|
#include "CommonArgs.h"
|
|
|
|
using namespace clang::driver;
|
|
using namespace clang::driver::toolchains;
|
|
using namespace clang;
|
|
using namespace llvm::opt;
|
|
|
|
/// TCEToolChain - A tool chain using the llvm bitcode tools to perform
|
|
/// all subcommands. See http://tce.cs.tut.fi for our peculiar target.
|
|
/// Currently does not support anything else but compilation.
|
|
|
|
TCEToolChain::TCEToolChain(const Driver &D, const llvm::Triple &Triple,
|
|
const ArgList &Args)
|
|
: ToolChain(D, Triple, Args) {
|
|
// Path mangling to find libexec
|
|
std::string Path(getDriver().Dir);
|
|
|
|
Path += "/../libexec";
|
|
getProgramPaths().push_back(Path);
|
|
}
|
|
|
|
TCEToolChain::~TCEToolChain() {}
|
|
|
|
bool TCEToolChain::IsMathErrnoDefault() const { return true; }
|
|
|
|
bool TCEToolChain::isPICDefault() const { return false; }
|
|
|
|
bool TCEToolChain::isPIEDefault(const llvm::opt::ArgList &Args) const {
|
|
return false;
|
|
}
|
|
|
|
bool TCEToolChain::isPICDefaultForced() const { return false; }
|
|
|
|
TCELEToolChain::TCELEToolChain(const Driver &D, const llvm::Triple& Triple,
|
|
const ArgList &Args)
|
|
: TCEToolChain(D, Triple, Args) {
|
|
}
|
|
|
|
TCELEToolChain::~TCELEToolChain() {}
|