Anton Korobeynikov | 93165d6 | 2019-01-15 19:44:05 +0000 | [diff] [blame] | 1 | //===--- MSP430.h - MSP430-specific Tool Helpers ----------------*- C++ -*-===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 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 |
Anton Korobeynikov | 93165d6 | 2019-01-15 19:44:05 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_MSP430_H |
| 10 | #define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_MSP430_H |
| 11 | |
| 12 | #include "Gnu.h" |
| 13 | #include "InputInfo.h" |
| 14 | #include "clang/Driver/Driver.h" |
| 15 | #include "clang/Driver/DriverDiagnostic.h" |
| 16 | #include "clang/Driver/Tool.h" |
| 17 | #include "clang/Driver/ToolChain.h" |
| 18 | #include "llvm/ADT/StringRef.h" |
| 19 | #include "llvm/Option/Option.h" |
| 20 | |
| 21 | #include <string> |
| 22 | #include <vector> |
| 23 | |
| 24 | namespace clang { |
| 25 | namespace driver { |
| 26 | namespace toolchains { |
| 27 | |
| 28 | class LLVM_LIBRARY_VISIBILITY MSP430ToolChain : public Generic_ELF { |
| 29 | public: |
| 30 | MSP430ToolChain(const Driver &D, const llvm::Triple &Triple, |
| 31 | const llvm::opt::ArgList &Args); |
| 32 | void |
| 33 | AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs, |
| 34 | llvm::opt::ArgStringList &CC1Args) const override; |
| 35 | void addClangTargetOptions(const llvm::opt::ArgList &DriverArgs, |
| 36 | llvm::opt::ArgStringList &CC1Args, |
| 37 | Action::OffloadKind) const override; |
| 38 | |
Anton Korobeynikov | a39eb26 | 2019-02-12 20:46:00 +0000 | [diff] [blame] | 39 | bool isPICDefault() const override { return false; } |
| 40 | bool isPIEDefault() const override { return false; } |
| 41 | bool isPICDefaultForced() const override { return true; } |
| 42 | |
Anton Korobeynikov | 93165d6 | 2019-01-15 19:44:05 +0000 | [diff] [blame] | 43 | protected: |
| 44 | Tool *buildLinker() const override; |
| 45 | |
| 46 | private: |
| 47 | std::string computeSysRoot() const; |
| 48 | }; |
| 49 | |
| 50 | } // end namespace toolchains |
| 51 | |
| 52 | namespace tools { |
| 53 | namespace msp430 { |
| 54 | |
| 55 | class LLVM_LIBRARY_VISIBILITY Linker : public GnuTool { |
| 56 | public: |
| 57 | Linker(const ToolChain &TC) |
| 58 | : GnuTool("MSP430::Linker", "msp430-elf-ld", TC) {} |
| 59 | bool hasIntegratedCPP() const override { return false; } |
| 60 | bool isLinkJob() const override { return true; } |
| 61 | void ConstructJob(Compilation &C, const JobAction &JA, |
| 62 | const InputInfo &Output, const InputInfoList &Inputs, |
| 63 | const llvm::opt::ArgList &TCArgs, |
| 64 | const char *LinkingOutput) const override; |
| 65 | }; |
| 66 | |
| 67 | void getMSP430TargetFeatures(const Driver &D, const llvm::opt::ArgList &Args, |
| 68 | std::vector<llvm::StringRef> &Features); |
| 69 | } // end namespace msp430 |
| 70 | } // end namespace tools |
| 71 | } // end namespace driver |
| 72 | } // end namespace clang |
| 73 | |
| 74 | #endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_MSP430_H |