diff options
| author | Jason Henline <jhen@google.com> | 2016-12-02 01:42:54 +0000 |
|---|---|---|
| committer | Jason Henline <jhen@google.com> | 2016-12-02 01:42:54 +0000 |
| commit | c3e24403f0c933a9e3fac6689ea008c097f424e2 (patch) | |
| tree | 899a848155833962a72cbdca46d7ec399fcb8812 | |
| parent | d0eed81dc0554b190ccb6458f213039fa4235b69 (diff) | |
| download | bcm5719-llvm-c3e24403f0c933a9e3fac6689ea008c097f424e2.tar.gz bcm5719-llvm-c3e24403f0c933a9e3fac6689ea008c097f424e2.zip | |
[CUDA] "Support" ASAN arguments in CudaToolChain
This fixes a bug that was introduced in rL287285. The bug made it
illegal to pass -fsanitize=address during CUDA compilation because the
CudaToolChain class was switched from deriving from the Linux toolchain
class to deriving directly from the ToolChain toolchain class. When
CudaToolChain derived from Linux, it used Linux's getSupportedSanitizers
method, and that method allowed ASAN, but when it switched to deriving
directly from ToolChain, it inherited a getSupportedSanitizers method
that didn't allow for ASAN.
This patch fixes that bug by creating a getSupportedSanitizers method
for CudaToolChain that supports ASAN.
This patch also fixes the test that checks that -fsanitize=address is
passed correctly for CUDA builds. That test didn't used to notice if an
error message was emitted, and that's why it didn't catch this bug when
it was first introduced. With the fix from this patch, that test will
now catch any similar bug in the future.
llvm-svn: 288448
| -rw-r--r-- | clang/lib/Driver/ToolChains.cpp | 9 | ||||
| -rw-r--r-- | clang/lib/Driver/ToolChains.h | 2 | ||||
| -rw-r--r-- | clang/test/Driver/cuda-no-sanitizers.cu | 1 |
3 files changed, 12 insertions, 0 deletions
diff --git a/clang/lib/Driver/ToolChains.cpp b/clang/lib/Driver/ToolChains.cpp index 512bebd3f0c..d03e0cbd8ae 100644 --- a/clang/lib/Driver/ToolChains.cpp +++ b/clang/lib/Driver/ToolChains.cpp @@ -4973,6 +4973,15 @@ void CudaToolChain::AddIAMCUIncludeArgs(const ArgList &Args, HostTC.AddIAMCUIncludeArgs(Args, CC1Args); } +SanitizerMask CudaToolChain::getSupportedSanitizers() const { + // The CudaToolChain only supports address sanitization in the sense that it + // allows ASAN arguments on the command line. It must not error out on these + // command line arguments because the host code compilation supports them. + // However, it doesn't actually do any address sanitization for device code; + // instead, it just ignores any ASAN command line arguments it sees. + return SanitizerKind::Address; +} + /// XCore tool chain XCoreToolChain::XCoreToolChain(const Driver &D, const llvm::Triple &Triple, const ArgList &Args) diff --git a/clang/lib/Driver/ToolChains.h b/clang/lib/Driver/ToolChains.h index 35543cdb94b..1c1ee21c6d6 100644 --- a/clang/lib/Driver/ToolChains.h +++ b/clang/lib/Driver/ToolChains.h @@ -912,6 +912,8 @@ public: void AddIAMCUIncludeArgs(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args) const override; + SanitizerMask getSupportedSanitizers() const override; + const ToolChain &HostTC; CudaInstallationDetector CudaInstallation; diff --git a/clang/test/Driver/cuda-no-sanitizers.cu b/clang/test/Driver/cuda-no-sanitizers.cu index e344f9043ab..4c01bbdab0f 100644 --- a/clang/test/Driver/cuda-no-sanitizers.cu +++ b/clang/test/Driver/cuda-no-sanitizers.cu @@ -6,6 +6,7 @@ // RUN: %clang -### -target x86_64-linux-gnu -c --cuda-gpu-arch=sm_20 -fsanitize=address %s 2>&1 | \ // RUN: FileCheck %s +// CHECK-NOT: error: // CHECK-DAG: "-fcuda-is-device" // CHECK-NOT: "-fsanitize=address" // CHECK-DAG: "-triple" "x86_64--linux-gnu" |

