1 //===--- ZOS.h - z/OS 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 #ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ZOS_H 10 #define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ZOS_H 11 12 #include "clang/Driver/Tool.h" 13 #include "clang/Driver/ToolChain.h" 14 15 namespace clang { 16 namespace driver { 17 namespace toolchains { 18 19 class LLVM_LIBRARY_VISIBILITY ZOS : public ToolChain { 20 public: 21 ZOS(const Driver &D, const llvm::Triple &Triple, 22 const llvm::opt::ArgList &Args); 23 ~ZOS() override; 24 25 bool isPICDefault() const override { return false; } 26 bool isPIEDefault(const llvm::opt::ArgList &Args) const override { 27 return false; 28 } 29 bool isPICDefaultForced() const override { return false; } 30 31 bool IsIntegratedAssemblerDefault() const override { return true; } 32 33 void addClangTargetOptions( 34 const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args, 35 Action::OffloadKind DeviceOffloadingKind) const override; 36 }; 37 38 } // end namespace toolchains 39 } // end namespace driver 40 } // end namespace clang 41 42 #endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ZOS_H 43