1 //===--- HLSL.h - HLSL ToolChain Implementations ----------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_HLSL_H
10 #define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_HLSL_H
12 #include "clang/Driver/Tool.h"
13 #include "clang/Driver/ToolChain.h"
21 class LLVM_LIBRARY_VISIBILITY Validator
: public Tool
{
23 Validator(const ToolChain
&TC
) : Tool("hlsl::Validator", "dxv", TC
) {}
25 bool hasIntegratedCPP() const override
{ return false; }
27 void ConstructJob(Compilation
&C
, const JobAction
&JA
,
28 const InputInfo
&Output
, const InputInfoList
&Inputs
,
29 const llvm::opt::ArgList
&TCArgs
,
30 const char *LinkingOutput
) const override
;
35 namespace toolchains
{
37 class LLVM_LIBRARY_VISIBILITY HLSLToolChain
: public ToolChain
{
39 HLSLToolChain(const Driver
&D
, const llvm::Triple
&Triple
,
40 const llvm::opt::ArgList
&Args
);
41 Tool
*getTool(Action::ActionClass AC
) const override
;
43 bool isPICDefault() const override
{ return false; }
44 bool isPIEDefault(const llvm::opt::ArgList
&Args
) const override
{
47 bool isPICDefaultForced() const override
{ return false; }
49 llvm::opt::DerivedArgList
*
50 TranslateArgs(const llvm::opt::DerivedArgList
&Args
, StringRef BoundArch
,
51 Action::OffloadKind DeviceOffloadKind
) const override
;
52 static std::optional
<std::string
> parseTargetProfile(StringRef TargetProfile
);
53 bool requiresValidation(llvm::opt::DerivedArgList
&Args
) const;
56 mutable std::unique_ptr
<tools::hlsl::Validator
> Validator
;
59 } // end namespace toolchains
60 } // end namespace driver
61 } // end namespace clang
63 #endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_HLSL_H