blob: 71f6b0a4c5c5d9535bedd74b24dc50401881c7d0 [file] [log] [blame]
Anton Korobeynikov55bcea12010-01-10 12:58:08 +00001//===---- TargetInfo.h - Encapsulate target details -------------*- 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// These classes wrap the information about a call or function
11// definition used to handle ABI compliancy.
12//
13//===----------------------------------------------------------------------===//
14
Benjamin Kramer2f5db8b2014-08-13 16:25:19 +000015#ifndef LLVM_CLANG_LIB_CODEGEN_TARGETINFO_H
16#define LLVM_CLANG_LIB_CODEGEN_TARGETINFO_H
Anton Korobeynikov55bcea12010-01-10 12:58:08 +000017
Reid Kleckner9b3e3df2014-09-04 20:04:38 +000018#include "CGValue.h"
John McCallcbc038a2011-09-21 08:08:30 +000019#include "clang/AST/Type.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000020#include "clang/Basic/LLVM.h"
Reid Klecknere43f0fe2013-05-08 13:44:39 +000021#include "llvm/ADT/SmallString.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000022#include "llvm/ADT/StringRef.h"
Peter Collingbourne8f5cf742011-02-19 23:03:58 +000023
Anton Korobeynikov55bcea12010-01-10 12:58:08 +000024namespace llvm {
Rafael Espindola14048092014-05-09 00:26:20 +000025class Constant;
26class GlobalValue;
27class Type;
28class Value;
Anton Korobeynikov55bcea12010-01-10 12:58:08 +000029}
30
31namespace clang {
Rafael Espindola14048092014-05-09 00:26:20 +000032class Decl;
Anton Korobeynikov55bcea12010-01-10 12:58:08 +000033
Rafael Espindola14048092014-05-09 00:26:20 +000034namespace CodeGen {
John McCall12f23522016-04-04 18:33:08 +000035class ABIInfo;
Rafael Espindola14048092014-05-09 00:26:20 +000036class CallArgList;
37class CodeGenModule;
38class CodeGenFunction;
39class CGFunctionInfo;
Rafael Espindola14048092014-05-09 00:26:20 +000040
41/// TargetCodeGenInfo - This class organizes various target-specific
42/// codegeneration issues, like target-specific attributes, builtins and so
43/// on.
44class TargetCodeGenInfo {
45 ABIInfo *Info;
46
47public:
48 // WARNING: Acquires the ownership of ABIInfo.
Hans Wennborg59dbe862015-09-29 20:56:43 +000049 TargetCodeGenInfo(ABIInfo *info = nullptr) : Info(info) {}
Rafael Espindola14048092014-05-09 00:26:20 +000050 virtual ~TargetCodeGenInfo();
51
52 /// getABIInfo() - Returns ABI info helper for the target.
53 const ABIInfo &getABIInfo() const { return *Info; }
54
Eric Christopher162c91c2015-06-05 22:03:00 +000055 /// setTargetAttributes - Provides a convenient hook to handle extra
Rafael Espindola14048092014-05-09 00:26:20 +000056 /// target-specific attributes for the given global.
Eric Christopher162c91c2015-06-05 22:03:00 +000057 virtual void setTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
Rafael Espindola14048092014-05-09 00:26:20 +000058 CodeGen::CodeGenModule &M) const {}
59
Eric Christopher56df4352015-06-05 22:03:01 +000060 /// emitTargetMD - Provides a convenient hook to handle extra
Rafael Espindola14048092014-05-09 00:26:20 +000061 /// target-specific metadata for the given global.
62 virtual void emitTargetMD(const Decl *D, llvm::GlobalValue *GV,
63 CodeGen::CodeGenModule &M) const {}
64
65 /// Determines the size of struct _Unwind_Exception on this platform,
66 /// in 8-bit units. The Itanium ABI defines this as:
67 /// struct _Unwind_Exception {
68 /// uint64 exception_class;
69 /// _Unwind_Exception_Cleanup_Fn exception_cleanup;
70 /// uint64 private_1;
71 /// uint64 private_2;
72 /// };
73 virtual unsigned getSizeOfUnwindException() const;
74
75 /// Controls whether __builtin_extend_pointer should sign-extend
76 /// pointers to uint64_t or zero-extend them (the default). Has
77 /// no effect for targets:
78 /// - that have 64-bit pointers, or
79 /// - that cannot address through registers larger than pointers, or
80 /// - that implicitly ignore/truncate the top bits when addressing
81 /// through such registers.
82 virtual bool extendPointerWithSExt() const { return false; }
83
84 /// Determines the DWARF register number for the stack pointer, for
85 /// exception-handling purposes. Implements __builtin_dwarf_sp_column.
86 ///
87 /// Returns -1 if the operation is unsupported by this target.
88 virtual int getDwarfEHStackPointer(CodeGen::CodeGenModule &M) const {
89 return -1;
Anton Korobeynikov55bcea12010-01-10 12:58:08 +000090 }
91
Rafael Espindola14048092014-05-09 00:26:20 +000092 /// Initializes the given DWARF EH register-size table, a char*.
93 /// Implements __builtin_init_dwarf_reg_size_table.
94 ///
95 /// Returns true if the operation is unsupported by this target.
96 virtual bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
97 llvm::Value *Address) const {
98 return true;
99 }
Anton Korobeynikov55bcea12010-01-10 12:58:08 +0000100
Rafael Espindola14048092014-05-09 00:26:20 +0000101 /// Performs the code-generation required to convert a return
102 /// address as stored by the system into the actual address of the
103 /// next instruction that will be executed.
104 ///
105 /// Used by __builtin_extract_return_addr().
106 virtual llvm::Value *decodeReturnAddress(CodeGen::CodeGenFunction &CGF,
107 llvm::Value *Address) const {
108 return Address;
109 }
Anton Korobeynikov55bcea12010-01-10 12:58:08 +0000110
Rafael Espindola14048092014-05-09 00:26:20 +0000111 /// Performs the code-generation required to convert the address
112 /// of an instruction into a return address suitable for storage
113 /// by the system in a return slot.
114 ///
115 /// Used by __builtin_frob_return_addr().
116 virtual llvm::Value *encodeReturnAddress(CodeGen::CodeGenFunction &CGF,
117 llvm::Value *Address) const {
118 return Address;
119 }
John McCallb6cc2c042010-03-02 03:50:12 +0000120
Rafael Espindola14048092014-05-09 00:26:20 +0000121 /// Corrects the low-level LLVM type for a given constraint and "usual"
122 /// type.
123 ///
124 /// \returns A pointer to a new LLVM type, possibly the same as the original
125 /// on success; 0 on failure.
126 virtual llvm::Type *adjustInlineAsmType(CodeGen::CodeGenFunction &CGF,
127 StringRef Constraint,
128 llvm::Type *Ty) const {
129 return Ty;
130 }
Robert Lytton844aeeb2014-05-02 09:33:20 +0000131
Reid Kleckner9b3e3df2014-09-04 20:04:38 +0000132 /// Adds constraints and types for result registers.
133 virtual void addReturnRegisterOutputs(
134 CodeGen::CodeGenFunction &CGF, CodeGen::LValue ReturnValue,
135 std::string &Constraints, std::vector<llvm::Type *> &ResultRegTypes,
136 std::vector<llvm::Type *> &ResultTruncRegTypes,
137 std::vector<CodeGen::LValue> &ResultRegDests, std::string &AsmString,
138 unsigned NumOutputs) const {}
139
Rafael Espindola14048092014-05-09 00:26:20 +0000140 /// doesReturnSlotInterfereWithArgs - Return true if the target uses an
141 /// argument slot for an 'sret' type.
142 virtual bool doesReturnSlotInterfereWithArgs() const { return true; }
John McCall5add20c2010-07-20 22:17:55 +0000143
Rafael Espindola14048092014-05-09 00:26:20 +0000144 /// Retrieve the address of a function to call immediately before
145 /// calling objc_retainAutoreleasedReturnValue. The
146 /// implementation of objc_autoreleaseReturnValue sniffs the
147 /// instruction stream following its return address to decide
148 /// whether it's a call to objc_retainAutoreleasedReturnValue.
149 /// This can be prohibitively expensive, depending on the
150 /// relocation model, and so on some targets it instead sniffs for
151 /// a particular instruction sequence. This functions returns
152 /// that instruction sequence in inline assembly, which will be
153 /// empty if none is required.
154 virtual StringRef getARCRetainAutoreleasedReturnValueMarker() const {
155 return "";
156 }
John McCalld4f4b7f2010-03-03 04:15:11 +0000157
Rafael Espindola14048092014-05-09 00:26:20 +0000158 /// Return a constant used by UBSan as a signature to identify functions
159 /// possessing type information, or 0 if the platform is unsupported.
160 virtual llvm::Constant *
161 getUBSanFunctionSignature(CodeGen::CodeGenModule &CGM) const {
Craig Topper8a13c412014-05-21 05:09:00 +0000162 return nullptr;
Rafael Espindola14048092014-05-09 00:26:20 +0000163 }
John McCallbeec5a02010-03-06 00:35:14 +0000164
Rafael Espindola14048092014-05-09 00:26:20 +0000165 /// Determine whether a call to an unprototyped functions under
166 /// the given calling convention should use the variadic
167 /// convention or the non-variadic convention.
168 ///
169 /// There's a good reason to make a platform's variadic calling
170 /// convention be different from its non-variadic calling
171 /// convention: the non-variadic arguments can be passed in
172 /// registers (better for performance), and the variadic arguments
173 /// can be passed on the stack (also better for performance). If
174 /// this is done, however, unprototyped functions *must* use the
175 /// non-variadic convention, because C99 states that a call
176 /// through an unprototyped function type must succeed if the
177 /// function was defined with a non-variadic prototype with
178 /// compatible parameters. Therefore, splitting the conventions
179 /// makes it impossible to call a variadic function through an
180 /// unprototyped type. Since function prototypes came out in the
181 /// late 1970s, this is probably an acceptable trade-off.
182 /// Nonetheless, not all platforms are willing to make it, and in
183 /// particularly x86-64 bends over backwards to make the
184 /// conventions compatible.
185 ///
186 /// The default is false. This is correct whenever:
187 /// - the conventions are exactly the same, because it does not
188 /// matter and the resulting IR will be somewhat prettier in
189 /// certain cases; or
190 /// - the conventions are substantively different in how they pass
191 /// arguments, because in this case using the variadic convention
192 /// will lead to C99 violations.
193 ///
194 /// However, some platforms make the conventions identical except
195 /// for passing additional out-of-band information to a variadic
196 /// function: for example, x86-64 passes the number of SSE
197 /// arguments in %al. On these platforms, it is desirable to
198 /// call unprototyped functions using the variadic convention so
199 /// that unprototyped calls to varargs functions still succeed.
200 ///
201 /// Relatedly, platforms which pass the fixed arguments to this:
202 /// A foo(B, C, D);
203 /// differently than they would pass them to this:
204 /// A foo(B, C, D, ...);
205 /// may need to adjust the debugger-support code in Sema to do the
206 /// right thing when calling a function with no know signature.
207 virtual bool isNoProtoCallVariadic(const CodeGen::CallArgList &args,
208 const FunctionNoProtoType *fnType) const;
John McCallbeec5a02010-03-06 00:35:14 +0000209
Rafael Espindola14048092014-05-09 00:26:20 +0000210 /// Gets the linker options necessary to link a dependent library on this
211 /// platform.
212 virtual void getDependentLibraryOption(llvm::StringRef Lib,
213 llvm::SmallString<24> &Opt) const;
John McCalld4f4b7f2010-03-03 04:15:11 +0000214
Rafael Espindola14048092014-05-09 00:26:20 +0000215 /// Gets the linker options necessary to detect object file mismatches on
216 /// this platform.
217 virtual void getDetectMismatchOption(llvm::StringRef Name,
218 llvm::StringRef Value,
219 llvm::SmallString<32> &Opt) const {}
220};
John McCall12f23522016-04-04 18:33:08 +0000221
222} // namespace CodeGen
Hans Wennborg59dbe862015-09-29 20:56:43 +0000223} // namespace clang
Anton Korobeynikov55bcea12010-01-10 12:58:08 +0000224
Hans Wennborg59dbe862015-09-29 20:56:43 +0000225#endif // LLVM_CLANG_LIB_CODEGEN_TARGETINFO_H