]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h
MFC r244628:
[FreeBSD/stable/9.git] / contrib / llvm / tools / clang / include / clang / Frontend / CodeGenOptions.h
1 //===--- CodeGenOptions.h ---------------------------------------*- 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 //  This file defines the CodeGenOptions interface.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_CLANG_FRONTEND_CODEGENOPTIONS_H
15 #define LLVM_CLANG_FRONTEND_CODEGENOPTIONS_H
16
17 #include <string>
18 #include <vector>
19
20 namespace clang {
21
22 /// \brief Bitfields of CodeGenOptions, split out from CodeGenOptions to ensure
23 /// that this large collection of bitfields is a trivial class type.
24 class CodeGenOptionsBase {
25 public:
26 #define CODEGENOPT(Name, Bits, Default) unsigned Name : Bits;
27 #define ENUM_CODEGENOPT(Name, Type, Bits, Default)
28 #include "clang/Frontend/CodeGenOptions.def"
29
30 protected:
31 #define CODEGENOPT(Name, Bits, Default)
32 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) unsigned Name : Bits;
33 #include "clang/Frontend/CodeGenOptions.def"
34 };
35
36 /// CodeGenOptions - Track various options which control how the code
37 /// is optimized and passed to the backend.
38 class CodeGenOptions : public CodeGenOptionsBase {
39 public:
40   enum InliningMethod {
41     NoInlining,         // Perform no inlining whatsoever.
42     NormalInlining,     // Use the standard function inlining pass.
43     OnlyAlwaysInlining  // Only run the always inlining pass.
44   };
45
46   enum ObjCDispatchMethodKind {
47     Legacy = 0,
48     NonLegacy = 1,
49     Mixed = 2
50   };
51
52   enum DebugInfoKind {
53     NoDebugInfo,          // Don't generate debug info.
54     DebugLineTablesOnly,  // Emit only debug info necessary for generating
55                           // line number tables (-gline-tables-only).
56     LimitedDebugInfo,     // Limit generated debug info to reduce size
57                           // (-flimit-debug-info).
58     FullDebugInfo         // Generate complete debug info.
59   };
60
61   enum TLSModel {
62     GeneralDynamicTLSModel,
63     LocalDynamicTLSModel,
64     InitialExecTLSModel,
65     LocalExecTLSModel
66   };
67
68   /// The code model to use (-mcmodel).
69   std::string CodeModel;
70
71   /// The filename with path we use for coverage files. The extension will be
72   /// replaced.
73   std::string CoverageFile;
74
75   /// Enable additional debugging information.
76   std::string DebugPass;
77
78   /// The string to embed in debug information as the current working directory.
79   std::string DebugCompilationDir;
80
81   /// The string to embed in the debug information for the compile unit, if
82   /// non-empty.
83   std::string DwarfDebugFlags;
84
85   /// The ABI to use for passing floating point arguments.
86   std::string FloatABI;
87
88   /// The float precision limit to use, if non-empty.
89   std::string LimitFloatPrecision;
90
91   /// The name of the bitcode file to link before optzns.
92   std::string LinkBitcodeFile;
93
94   /// The user provided name for the "main file", if non-empty. This is useful
95   /// in situations where the input file name does not match the original input
96   /// file, for example with -save-temps.
97   std::string MainFileName;
98
99   /// The name of the relocation model to use.
100   std::string RelocationModel;
101
102   /// If not an empty string, trap intrinsics are lowered to calls to this
103   /// function instead of to trap instructions.
104   std::string TrapFuncName;
105
106   /// A list of command-line options to forward to the LLVM backend.
107   std::vector<std::string> BackendOptions;
108
109 public:
110   // Define accessors/mutators for code generation options of enumeration type.
111 #define CODEGENOPT(Name, Bits, Default)
112 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) \
113   Type get##Name() const { return static_cast<Type>(Name); } \
114   void set##Name(Type Value) { Name = static_cast<unsigned>(Value); }
115 #include "clang/Frontend/CodeGenOptions.def"
116
117   CodeGenOptions() {
118 #define CODEGENOPT(Name, Bits, Default) Name = Default;
119 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) \
120   set##Name(Default);
121 #include "clang/Frontend/CodeGenOptions.def"
122
123     RelocationModel = "pic";
124   }
125 };
126
127 }  // end namespace clang
128
129 #endif