blob: 11cae6c5aa215bf7baa7fd73fbaf1c1bd6527966 [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
15#ifndef CLANG_CODEGEN_TARGETINFO_H
16#define CLANG_CODEGEN_TARGETINFO_H
17
John McCallcbc038a2011-09-21 08:08:30 +000018#include "clang/AST/Type.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000019#include "clang/Basic/LLVM.h"
Reid Klecknere43f0fe2013-05-08 13:44:39 +000020#include "llvm/ADT/SmallString.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000021#include "llvm/ADT/StringRef.h"
Peter Collingbourne8f5cf742011-02-19 23:03:58 +000022
Anton Korobeynikov55bcea12010-01-10 12:58:08 +000023namespace llvm {
Peter Collingbourneb453cd62013-10-20 21:29:19 +000024 class Constant;
Anton Korobeynikov55bcea12010-01-10 12:58:08 +000025 class GlobalValue;
Peter Collingbourne8f5cf742011-02-19 23:03:58 +000026 class Type;
John McCalld4f4b7f2010-03-03 04:15:11 +000027 class Value;
Anton Korobeynikov55bcea12010-01-10 12:58:08 +000028}
29
30namespace clang {
31 class ABIInfo;
32 class Decl;
33
34 namespace CodeGen {
John McCalla729c622012-02-17 03:33:10 +000035 class CallArgList;
Anton Korobeynikov55bcea12010-01-10 12:58:08 +000036 class CodeGenModule;
John McCalld4f4b7f2010-03-03 04:15:11 +000037 class CodeGenFunction;
Eli Friedmanf37bd2f2011-12-01 04:53:19 +000038 class CGFunctionInfo;
Anton Korobeynikov55bcea12010-01-10 12:58:08 +000039 }
40
41 /// TargetCodeGenInfo - This class organizes various target-specific
42 /// codegeneration issues, like target-specific attributes, builtins and so
43 /// on.
44 class TargetCodeGenInfo {
45 ABIInfo *Info;
46 public:
47 // WARNING: Acquires the ownership of ABIInfo.
Douglas Gregor0599df12010-01-22 15:41:14 +000048 TargetCodeGenInfo(ABIInfo *info = 0):Info(info) { }
Anton Korobeynikov55bcea12010-01-10 12:58:08 +000049 virtual ~TargetCodeGenInfo();
50
51 /// getABIInfo() - Returns ABI info helper for the target.
52 const ABIInfo& getABIInfo() const { return *Info; }
53
54 /// SetTargetAttributes - Provides a convenient hook to handle extra
55 /// target-specific attributes for the given global.
56 virtual void SetTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
Douglas Gregor0599df12010-01-22 15:41:14 +000057 CodeGen::CodeGenModule &M) const { }
John McCallb6cc2c042010-03-02 03:50:12 +000058
John McCall5add20c2010-07-20 22:17:55 +000059 /// Determines the size of struct _Unwind_Exception on this platform,
60 /// in 8-bit units. The Itanium ABI defines this as:
61 /// struct _Unwind_Exception {
62 /// uint64 exception_class;
63 /// _Unwind_Exception_Cleanup_Fn exception_cleanup;
64 /// uint64 private_1;
65 /// uint64 private_2;
66 /// };
John McCall3480ef22011-08-30 01:42:09 +000067 virtual unsigned getSizeOfUnwindException() const;
John McCall5add20c2010-07-20 22:17:55 +000068
John McCallb6cc2c042010-03-02 03:50:12 +000069 /// Controls whether __builtin_extend_pointer should sign-extend
70 /// pointers to uint64_t or zero-extend them (the default). Has
71 /// no effect for targets:
72 /// - that have 64-bit pointers, or
73 /// - that cannot address through registers larger than pointers, or
74 /// - that implicitly ignore/truncate the top bits when addressing
75 /// through such registers.
76 virtual bool extendPointerWithSExt() const { return false; }
John McCalld4f4b7f2010-03-03 04:15:11 +000077
John McCallbeec5a02010-03-06 00:35:14 +000078 /// Determines the DWARF register number for the stack pointer, for
79 /// exception-handling purposes. Implements __builtin_dwarf_sp_column.
80 ///
81 /// Returns -1 if the operation is unsupported by this target.
82 virtual int getDwarfEHStackPointer(CodeGen::CodeGenModule &M) const {
83 return -1;
84 }
85
86 /// Initializes the given DWARF EH register-size table, a char*.
87 /// Implements __builtin_init_dwarf_reg_size_table.
88 ///
89 /// Returns true if the operation is unsupported by this target.
90 virtual bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
91 llvm::Value *Address) const {
92 return true;
93 }
94
John McCalld4f4b7f2010-03-03 04:15:11 +000095 /// Performs the code-generation required to convert a return
96 /// address as stored by the system into the actual address of the
97 /// next instruction that will be executed.
98 ///
99 /// Used by __builtin_extract_return_addr().
100 virtual llvm::Value *decodeReturnAddress(CodeGen::CodeGenFunction &CGF,
101 llvm::Value *Address) const {
102 return Address;
103 }
104
105 /// Performs the code-generation required to convert the address
106 /// of an instruction into a return address suitable for storage
107 /// by the system in a return slot.
108 ///
109 /// Used by __builtin_frob_return_addr().
110 virtual llvm::Value *encodeReturnAddress(CodeGen::CodeGenFunction &CGF,
111 llvm::Value *Address) const {
112 return Address;
113 }
Peter Collingbourne8f5cf742011-02-19 23:03:58 +0000114
Tim Northover0ae93912013-06-07 00:04:50 +0000115 /// Corrects the low-level LLVM type for a given constraint and "usual"
116 /// type.
117 ///
118 /// \returns A pointer to a new LLVM type, possibly the same as the original
119 /// on success; 0 on failure.
Jay Foad7c57be32011-07-11 09:56:20 +0000120 virtual llvm::Type* adjustInlineAsmType(CodeGen::CodeGenFunction &CGF,
Tim Northover0ae93912013-06-07 00:04:50 +0000121 StringRef Constraint,
Jay Foad7c57be32011-07-11 09:56:20 +0000122 llvm::Type* Ty) const {
Peter Collingbourne8f5cf742011-02-19 23:03:58 +0000123 return Ty;
124 }
John McCall31168b02011-06-15 23:02:42 +0000125
126 /// Retrieve the address of a function to call immediately before
127 /// calling objc_retainAutoreleasedReturnValue. The
128 /// implementation of objc_autoreleaseReturnValue sniffs the
129 /// instruction stream following its return address to decide
130 /// whether it's a call to objc_retainAutoreleasedReturnValue.
131 /// This can be prohibitively expensive, depending on the
132 /// relocation model, and so on some targets it instead sniffs for
133 /// a particular instruction sequence. This functions returns
134 /// that instruction sequence in inline assembly, which will be
135 /// empty if none is required.
Chris Lattner01cf8db2011-07-20 06:58:45 +0000136 virtual StringRef getARCRetainAutoreleasedReturnValueMarker() const {
John McCall31168b02011-06-15 23:02:42 +0000137 return "";
138 }
John McCallcbc038a2011-09-21 08:08:30 +0000139
Peter Collingbourneb453cd62013-10-20 21:29:19 +0000140 /// Return a constant used by UBSan as a signature to identify functions
141 /// possessing type information, or 0 if the platform is unsupported.
142 virtual llvm::Constant *getUBSanFunctionSignature(
143 CodeGen::CodeGenModule &CGM) const {
144 return 0;
145 }
146
John McCallcbc038a2011-09-21 08:08:30 +0000147 /// Determine whether a call to an unprototyped functions under
148 /// the given calling convention should use the variadic
149 /// convention or the non-variadic convention.
150 ///
151 /// There's a good reason to make a platform's variadic calling
152 /// convention be different from its non-variadic calling
153 /// convention: the non-variadic arguments can be passed in
154 /// registers (better for performance), and the variadic arguments
155 /// can be passed on the stack (also better for performance). If
156 /// this is done, however, unprototyped functions *must* use the
157 /// non-variadic convention, because C99 states that a call
158 /// through an unprototyped function type must succeed if the
159 /// function was defined with a non-variadic prototype with
160 /// compatible parameters. Therefore, splitting the conventions
161 /// makes it impossible to call a variadic function through an
162 /// unprototyped type. Since function prototypes came out in the
163 /// late 1970s, this is probably an acceptable trade-off.
164 /// Nonetheless, not all platforms are willing to make it, and in
165 /// particularly x86-64 bends over backwards to make the
166 /// conventions compatible.
167 ///
168 /// The default is false. This is correct whenever:
169 /// - the conventions are exactly the same, because it does not
170 /// matter and the resulting IR will be somewhat prettier in
171 /// certain cases; or
172 /// - the conventions are substantively different in how they pass
173 /// arguments, because in this case using the variadic convention
174 /// will lead to C99 violations.
John McCallc818bbb2012-12-07 07:03:17 +0000175 ///
176 /// However, some platforms make the conventions identical except
177 /// for passing additional out-of-band information to a variadic
178 /// function: for example, x86-64 passes the number of SSE
Alp Tokerf6a24ce2013-12-05 16:25:25 +0000179 /// arguments in %al. On these platforms, it is desirable to
John McCallc818bbb2012-12-07 07:03:17 +0000180 /// call unprototyped functions using the variadic convention so
181 /// that unprototyped calls to varargs functions still succeed.
John McCall611d9b62013-06-27 22:43:24 +0000182 ///
183 /// Relatedly, platforms which pass the fixed arguments to this:
184 /// A foo(B, C, D);
185 /// differently than they would pass them to this:
186 /// A foo(B, C, D, ...);
187 /// may need to adjust the debugger-support code in Sema to do the
188 /// right thing when calling a function with no know signature.
John McCalla729c622012-02-17 03:33:10 +0000189 virtual bool isNoProtoCallVariadic(const CodeGen::CallArgList &args,
190 const FunctionNoProtoType *fnType) const;
Reid Klecknere43f0fe2013-05-08 13:44:39 +0000191
192 /// Gets the linker options necessary to link a dependent library on this
193 /// platform.
194 virtual void getDependentLibraryOption(llvm::StringRef Lib,
195 llvm::SmallString<24> &Opt) const;
Aaron Ballman5d041be2013-06-04 02:07:14 +0000196
197 /// Gets the linker options necessary to detect object file mismatches on
198 /// this platform.
199 virtual void getDetectMismatchOption(llvm::StringRef Name,
200 llvm::StringRef Value,
201 llvm::SmallString<32> &Opt) const {}
Anton Korobeynikov55bcea12010-01-10 12:58:08 +0000202 };
203}
204
205#endif // CLANG_CODEGEN_TARGETINFO_H