]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/PPC.h
Merge clang 7.0.1 and several follow-up changes
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / lib / Driver / ToolChains / Arch / PPC.h
1 //===--- PPC.h - PPC-specific Tool Helpers ----------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_PPC_H
11 #define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_PPC_H
12
13 #include "clang/Driver/Driver.h"
14 #include "llvm/ADT/StringRef.h"
15 #include "llvm/Option/Option.h"
16 #include <string>
17 #include <vector>
18
19 namespace clang {
20 namespace driver {
21 namespace tools {
22 namespace ppc {
23
24 bool hasPPCAbiArg(const llvm::opt::ArgList &Args, const char *Value);
25
26 enum class FloatABI {
27   Invalid,
28   Soft,
29   Hard,
30 };
31
32 enum class ReadGOTPtrMode {
33   Bss,
34   SecurePlt,
35 };
36
37 FloatABI getPPCFloatABI(const Driver &D, const llvm::opt::ArgList &Args);
38
39 std::string getPPCTargetCPU(const llvm::opt::ArgList &Args);
40 const char *getPPCAsmModeForCPU(StringRef Name);
41 ReadGOTPtrMode getPPCReadGOTPtrMode(const Driver &D, const llvm::Triple &Triple,
42                                     const llvm::opt::ArgList &Args);
43
44 void getPPCTargetFeatures(const Driver &D, const llvm::Triple &Triple,
45                           const llvm::opt::ArgList &Args,
46                           std::vector<llvm::StringRef> &Features);
47
48 } // end namespace ppc
49 } // end namespace target
50 } // end namespace driver
51 } // end namespace clang
52
53 #endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_PPC_H