1 //===--- HIPAMD.h - HIP 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_HIPAMD_H
10 #define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_HIPAMD_H
13 #include "clang/Driver/Tool.h"
14 #include "clang/Driver/ToolChain.h"
22 // Runs llvm-link/opt/llc/lld, which links multiple LLVM bitcode, together with
23 // device library, then compiles it to ISA in a shared object.
24 class LLVM_LIBRARY_VISIBILITY Linker final
: public Tool
{
26 Linker(const ToolChain
&TC
) : Tool("AMDGCN::Linker", "amdgcn-link", TC
) {}
28 bool hasIntegratedCPP() const override
{ return false; }
30 void ConstructJob(Compilation
&C
, const JobAction
&JA
,
31 const InputInfo
&Output
, const InputInfoList
&Inputs
,
32 const llvm::opt::ArgList
&TCArgs
,
33 const char *LinkingOutput
) const override
;
36 void constructLldCommand(Compilation
&C
, const JobAction
&JA
,
37 const InputInfoList
&Inputs
, const InputInfo
&Output
,
38 const llvm::opt::ArgList
&Args
) const;
39 void constructLlvmLinkCommand(Compilation
&C
, const JobAction
&JA
,
40 const InputInfoList
&Inputs
,
41 const InputInfo
&Output
,
42 const llvm::opt::ArgList
&Args
) const;
43 void constructLinkAndEmitSpirvCommand(Compilation
&C
, const JobAction
&JA
,
44 const InputInfoList
&Inputs
,
45 const InputInfo
&Output
,
46 const llvm::opt::ArgList
&Args
) const;
49 } // end namespace AMDGCN
50 } // end namespace tools
52 namespace toolchains
{
54 class LLVM_LIBRARY_VISIBILITY HIPAMDToolChain final
: public ROCMToolChain
{
56 HIPAMDToolChain(const Driver
&D
, const llvm::Triple
&Triple
,
57 const ToolChain
&HostTC
, const llvm::opt::ArgList
&Args
);
59 const llvm::Triple
*getAuxTriple() const override
{
60 return &HostTC
.getTriple();
63 llvm::opt::DerivedArgList
*
64 TranslateArgs(const llvm::opt::DerivedArgList
&Args
, StringRef BoundArch
,
65 Action::OffloadKind DeviceOffloadKind
) const override
;
67 addClangTargetOptions(const llvm::opt::ArgList
&DriverArgs
,
68 llvm::opt::ArgStringList
&CC1Args
,
69 Action::OffloadKind DeviceOffloadKind
) const override
;
70 void addClangWarningOptions(llvm::opt::ArgStringList
&CC1Args
) const override
;
71 CXXStdlibType
GetCXXStdlibType(const llvm::opt::ArgList
&Args
) const override
;
73 AddClangSystemIncludeArgs(const llvm::opt::ArgList
&DriverArgs
,
74 llvm::opt::ArgStringList
&CC1Args
) const override
;
75 void AddClangCXXStdlibIncludeArgs(
76 const llvm::opt::ArgList
&Args
,
77 llvm::opt::ArgStringList
&CC1Args
) const override
;
78 void AddIAMCUIncludeArgs(const llvm::opt::ArgList
&DriverArgs
,
79 llvm::opt::ArgStringList
&CC1Args
) const override
;
80 void AddHIPIncludeArgs(const llvm::opt::ArgList
&DriverArgs
,
81 llvm::opt::ArgStringList
&CC1Args
) const override
;
82 llvm::SmallVector
<BitCodeLibraryInfo
, 12>
83 getDeviceLibs(const llvm::opt::ArgList
&Args
) const override
;
85 SanitizerMask
getSupportedSanitizers() const override
;
88 computeMSVCVersion(const Driver
*D
,
89 const llvm::opt::ArgList
&Args
) const override
;
91 unsigned GetDefaultDwarfVersion() const override
{ return 5; }
93 const ToolChain
&HostTC
;
94 void checkTargetID(const llvm::opt::ArgList
&DriverArgs
) const override
;
97 Tool
*buildLinker() const override
;
100 } // end namespace toolchains
101 } // end namespace driver
102 } // end namespace clang
104 #endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_HIPAMD_H