Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 1 | //===--- CodeGenModule.h - Per-Module state for LLVM CodeGen ----*- C++ -*-===// |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 10 | // This is the internal per-translation-unit state used for llvm translation. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chris Lattner | ef52a2f | 2008-02-29 17:10:38 +0000 | [diff] [blame] | 14 | #ifndef CLANG_CODEGEN_CODEGENMODULE_H |
| 15 | #define CLANG_CODEGEN_CODEGENMODULE_H |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 16 | |
Dan Gohman | 4f8d123 | 2008-05-22 00:50:06 +0000 | [diff] [blame] | 17 | #include "clang/AST/Attr.h" |
Chris Lattner | bd36064 | 2009-03-26 05:00:52 +0000 | [diff] [blame] | 18 | #include "CGBlocks.h" |
| 19 | #include "CGCall.h" |
| 20 | #include "CodeGenTypes.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/DenseMap.h" |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/StringMap.h" |
Douglas Gregor | 6ec3668 | 2009-02-18 23:53:56 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/StringSet.h" |
Chris Lattner | 35f38a2 | 2009-03-31 22:37:52 +0000 | [diff] [blame] | 24 | #include "llvm/Support/ValueHandle.h" |
Anders Carlsson | b723f75 | 2009-01-04 02:08:04 +0000 | [diff] [blame] | 25 | #include <list> |
| 26 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 27 | namespace llvm { |
| 28 | class Module; |
| 29 | class Constant; |
| 30 | class Function; |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 31 | class GlobalValue; |
Devang Patel | 7a4718e | 2007-10-31 20:01:01 +0000 | [diff] [blame] | 32 | class TargetData; |
Eli Friedman | ff4a2d9 | 2008-06-01 15:54:49 +0000 | [diff] [blame] | 33 | class FunctionType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 34 | } |
| 35 | |
| 36 | namespace clang { |
| 37 | class ASTContext; |
| 38 | class FunctionDecl; |
Daniel Dunbar | 90db882 | 2008-08-25 06:18:57 +0000 | [diff] [blame] | 39 | class IdentifierInfo; |
Chris Lattner | 391d77a | 2008-03-30 23:03:07 +0000 | [diff] [blame] | 40 | class ObjCMethodDecl; |
Anton Korobeynikov | 20ff310 | 2008-06-01 14:13:53 +0000 | [diff] [blame] | 41 | class ObjCImplementationDecl; |
| 42 | class ObjCCategoryImplDecl; |
| 43 | class ObjCProtocolDecl; |
Chris Lattner | eaf2bb8 | 2009-02-24 22:18:39 +0000 | [diff] [blame] | 44 | class ObjCEncodeExpr; |
Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 45 | class BlockExpr; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 46 | class Decl; |
Oliver Hunt | 2824723 | 2007-12-02 00:11:25 +0000 | [diff] [blame] | 47 | class Expr; |
Chris Lattner | 2c8569d | 2007-12-02 07:19:18 +0000 | [diff] [blame] | 48 | class Stmt; |
Daniel Dunbar | 1e04976 | 2008-08-10 20:25:57 +0000 | [diff] [blame] | 49 | class StringLiteral; |
Nate Begeman | 1a1d92a | 2008-04-20 20:38:08 +0000 | [diff] [blame] | 50 | class NamedDecl; |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 51 | class ValueDecl; |
Chris Lattner | 2b9d2ca | 2007-12-18 08:16:44 +0000 | [diff] [blame] | 52 | class VarDecl; |
Sebastian Redl | 43af76e | 2009-03-07 12:16:37 +0000 | [diff] [blame] | 53 | class LangOptions; |
Chris Lattner | bd36064 | 2009-03-26 05:00:52 +0000 | [diff] [blame] | 54 | class CompileOptions; |
Chris Lattner | fb97b03 | 2007-12-02 01:40:18 +0000 | [diff] [blame] | 55 | class Diagnostic; |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 56 | class AnnotateAttr; |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 57 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 58 | namespace CodeGen { |
| 59 | |
Lauro Ramos Venancio | 8137335 | 2008-02-26 21:41:45 +0000 | [diff] [blame] | 60 | class CodeGenFunction; |
Sanjiv Gupta | e8b9f5b | 2008-05-08 08:54:20 +0000 | [diff] [blame] | 61 | class CGDebugInfo; |
Daniel Dunbar | af2f62c | 2008-08-13 00:59:25 +0000 | [diff] [blame] | 62 | class CGObjCRuntime; |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 63 | |
| 64 | /// CodeGenModule - This class organizes the cross-function state that is used |
| 65 | /// while generating LLVM code. |
Mike Stump | 2a99814 | 2009-03-04 18:17:45 +0000 | [diff] [blame] | 66 | class CodeGenModule : public BlockModule { |
Anders Carlsson | 8a219ce | 2009-02-24 04:21:31 +0000 | [diff] [blame] | 67 | CodeGenModule(const CodeGenModule&); // DO NOT IMPLEMENT |
| 68 | void operator=(const CodeGenModule&); // DO NOT IMPLEMENT |
| 69 | |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 70 | typedef std::vector< std::pair<llvm::Constant*, int> > CtorList; |
| 71 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 72 | ASTContext &Context; |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 73 | const LangOptions &Features; |
Chris Lattner | bd36064 | 2009-03-26 05:00:52 +0000 | [diff] [blame] | 74 | const CompileOptions &CompileOpts; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 75 | llvm::Module &TheModule; |
Devang Patel | 7a4718e | 2007-10-31 20:01:01 +0000 | [diff] [blame] | 76 | const llvm::TargetData &TheTargetData; |
Chris Lattner | fb97b03 | 2007-12-02 01:40:18 +0000 | [diff] [blame] | 77 | Diagnostic &Diags; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 78 | CodeGenTypes Types; |
Ted Kremenek | 815c78f | 2008-08-05 18:50:11 +0000 | [diff] [blame] | 79 | CGObjCRuntime* Runtime; |
| 80 | CGDebugInfo* DebugInfo; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 81 | |
| 82 | llvm::Function *MemCpyFn; |
Eli Friedman | 0c99509 | 2008-05-26 12:59:39 +0000 | [diff] [blame] | 83 | llvm::Function *MemMoveFn; |
Lauro Ramos Venancio | 41ef30e | 2008-02-19 22:01:01 +0000 | [diff] [blame] | 84 | llvm::Function *MemSetFn; |
Daniel Dunbar | 9986eab | 2008-07-30 16:32:24 +0000 | [diff] [blame] | 85 | |
Douglas Gregor | 6ec3668 | 2009-02-18 23:53:56 +0000 | [diff] [blame] | 86 | /// GlobalDeclMap - Mapping of decl names (represented as unique |
| 87 | /// character pointers from either the identifier table or the set |
| 88 | /// of mangled names) to global variables we have already |
| 89 | /// emitted. Note that the entries in this map are the actual |
| 90 | /// globals and therefore may not be of the same type as the decl, |
| 91 | /// they should be bitcasted on retrieval. Also note that the |
Chris Lattner | e21c4b8 | 2009-03-21 07:48:31 +0000 | [diff] [blame] | 92 | /// globals are keyed on their source mangled name, not the global name |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 93 | /// (which may change with attributes such as asm-labels). The key |
Douglas Gregor | 6ec3668 | 2009-02-18 23:53:56 +0000 | [diff] [blame] | 94 | /// to this map should be generated using getMangledName(). |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 95 | /// |
| 96 | /// Note that this map always lines up exactly with the contents of the LLVM |
| 97 | /// IR symbol table, but this is quicker to query since it is doing uniqued |
| 98 | /// pointer lookups instead of full string lookups. |
Douglas Gregor | 6ec3668 | 2009-02-18 23:53:56 +0000 | [diff] [blame] | 99 | llvm::DenseMap<const char*, llvm::GlobalValue*> GlobalDeclMap; |
| 100 | |
| 101 | /// \brief Contains the strings used for mangled names. |
| 102 | /// |
| 103 | /// FIXME: Eventually, this should map from the semantic/canonical |
| 104 | /// declaration for each global entity to its mangled name (if it |
| 105 | /// has one). |
| 106 | llvm::StringSet<> MangledNames; |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 107 | |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 108 | /// DeferredDecls - This contains all the decls which have definitions but |
| 109 | /// which are deferred for emission and therefore should only be output if |
| 110 | /// they are actually used. If a decl is in this, then it is known to have |
| 111 | /// not been referenced yet. The key to this map is a uniqued mangled name. |
| 112 | llvm::DenseMap<const char*, const ValueDecl*> DeferredDecls; |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 113 | |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 114 | /// DeferredDeclsToEmit - This is a list of deferred decls which we have seen |
| 115 | /// that *are* actually referenced. These get code generated when the module |
| 116 | /// is done. |
| 117 | std::vector<const ValueDecl*> DeferredDeclsToEmit; |
| 118 | |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 119 | /// LLVMUsed - List of global values which are required to be |
| 120 | /// present in the object file; bitcast to i8*. This is used for |
| 121 | /// forcing visibility of symbols which may otherwise be optimized |
| 122 | /// out. |
Chris Lattner | 35f38a2 | 2009-03-31 22:37:52 +0000 | [diff] [blame] | 123 | std::vector<llvm::WeakVH> LLVMUsed; |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 124 | |
| 125 | /// GlobalCtors - Store the list of global constructors and their respective |
| 126 | /// priorities to be emitted when the translation unit is complete. |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 127 | CtorList GlobalCtors; |
| 128 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 129 | /// GlobalDtors - Store the list of global destructors and their respective |
| 130 | /// priorities to be emitted when the translation unit is complete. |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 131 | CtorList GlobalDtors; |
| 132 | |
Nate Begeman | 532485c | 2008-04-18 23:43:57 +0000 | [diff] [blame] | 133 | std::vector<llvm::Constant*> Annotations; |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 134 | |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 135 | llvm::StringMap<llvm::Constant*> CFConstantStringMap; |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 136 | llvm::StringMap<llvm::Constant*> ConstantStringMap; |
Daniel Dunbar | 3e9df99 | 2008-08-23 18:37:06 +0000 | [diff] [blame] | 137 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 138 | /// CFConstantStringClassRef - Cached reference to the class for constant |
| 139 | /// strings. This value has type int * but is actually an Obj-C class pointer. |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 140 | llvm::Constant *CFConstantStringClassRef; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 141 | public: |
Chris Lattner | bd36064 | 2009-03-26 05:00:52 +0000 | [diff] [blame] | 142 | CodeGenModule(ASTContext &C, const CompileOptions &CompileOpts, |
| 143 | llvm::Module &M, const llvm::TargetData &TD, Diagnostic &Diags); |
Ted Kremenek | 815c78f | 2008-08-05 18:50:11 +0000 | [diff] [blame] | 144 | |
Chris Lattner | 2b94fe3 | 2008-03-01 08:45:05 +0000 | [diff] [blame] | 145 | ~CodeGenModule(); |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 146 | |
Ted Kremenek | 815c78f | 2008-08-05 18:50:11 +0000 | [diff] [blame] | 147 | /// Release - Finalize LLVM code generation. |
| 148 | void Release(); |
Daniel Dunbar | 208ff5e | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 149 | |
| 150 | /// getObjCRuntime() - Return a reference to the configured |
| 151 | /// Objective-C runtime. |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 152 | CGObjCRuntime &getObjCRuntime() { |
Daniel Dunbar | 208ff5e | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 153 | assert(Runtime && "No Objective-C runtime has been configured."); |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 154 | return *Runtime; |
Daniel Dunbar | 208ff5e | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 155 | } |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 156 | |
Daniel Dunbar | 208ff5e | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 157 | /// hasObjCRuntime() - Return true iff an Objective-C runtime has |
| 158 | /// been configured. |
| 159 | bool hasObjCRuntime() { return !!Runtime; } |
| 160 | |
Sanjiv Gupta | e8b9f5b | 2008-05-08 08:54:20 +0000 | [diff] [blame] | 161 | CGDebugInfo *getDebugInfo() { return DebugInfo; } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 162 | ASTContext &getContext() const { return Context; } |
Devang Patel | 0773903 | 2009-03-27 23:16:32 +0000 | [diff] [blame] | 163 | const CompileOptions &getCompileOpts() const { return CompileOpts; } |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 164 | const LangOptions &getLangOptions() const { return Features; } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 165 | llvm::Module &getModule() const { return TheModule; } |
| 166 | CodeGenTypes &getTypes() { return Types; } |
Chris Lattner | fb97b03 | 2007-12-02 01:40:18 +0000 | [diff] [blame] | 167 | Diagnostic &getDiags() const { return Diags; } |
Chris Lattner | 8f92528 | 2008-01-03 06:36:51 +0000 | [diff] [blame] | 168 | const llvm::TargetData &getTargetData() const { return TheTargetData; } |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 169 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 170 | /// GetAddrOfGlobalVar - Return the llvm::Constant for the address of the |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 171 | /// given global variable. If Ty is non-null and if the global doesn't exist, |
| 172 | /// then it will be greated with the specified type instead of whatever the |
| 173 | /// normal requested type would be. |
| 174 | llvm::Constant *GetAddrOfGlobalVar(const VarDecl *D, |
| 175 | const llvm::Type *Ty = 0); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 176 | |
Chris Lattner | 3480950 | 2009-03-21 08:53:37 +0000 | [diff] [blame] | 177 | /// GetAddrOfFunction - Return the address of the given function. If Ty is |
| 178 | /// non-null, then this function will use the specified type if it has to |
| 179 | /// create it. |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 180 | llvm::Constant *GetAddrOfFunction(const FunctionDecl *D, |
Chris Lattner | 3480950 | 2009-03-21 08:53:37 +0000 | [diff] [blame] | 181 | const llvm::Type *Ty = 0); |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 182 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 183 | /// GetStringForStringLiteral - Return the appropriate bytes for a string |
| 184 | /// literal, properly padded to match the literal type. If only the address of |
| 185 | /// a constant is needed consider using GetAddrOfConstantStringLiteral. |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 186 | std::string GetStringForStringLiteral(const StringLiteral *E); |
| 187 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 188 | /// GetAddrOfConstantCFString - Return a pointer to a constant CFString object |
| 189 | /// for the given string. |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 190 | llvm::Constant *GetAddrOfConstantCFString(const std::string& str); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 191 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 192 | /// GetAddrOfConstantStringFromLiteral - Return a pointer to a constant array |
| 193 | /// for the given string literal. |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 194 | llvm::Constant *GetAddrOfConstantStringFromLiteral(const StringLiteral *S); |
Daniel Dunbar | 1e04976 | 2008-08-10 20:25:57 +0000 | [diff] [blame] | 195 | |
Chris Lattner | eaf2bb8 | 2009-02-24 22:18:39 +0000 | [diff] [blame] | 196 | /// GetAddrOfConstantStringFromObjCEncode - Return a pointer to a constant |
| 197 | /// array for the given ObjCEncodeExpr node. |
| 198 | llvm::Constant *GetAddrOfConstantStringFromObjCEncode(const ObjCEncodeExpr *); |
| 199 | |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 200 | /// GetAddrOfConstantString - Returns a pointer to a character array |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 201 | /// containing the literal. This contents are exactly that of the given |
| 202 | /// string, i.e. it will not be null terminated automatically; see |
| 203 | /// GetAddrOfConstantCString. Note that whether the result is actually a |
| 204 | /// pointer to an LLVM constant depends on Feature.WriteableStrings. |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 205 | /// |
| 206 | /// The result has pointer to array type. |
Daniel Dunbar | 5fabf9d | 2008-10-17 21:56:50 +0000 | [diff] [blame] | 207 | /// |
| 208 | /// \param GlobalName If provided, the name to use for the global |
| 209 | /// (if one is created). |
| 210 | llvm::Constant *GetAddrOfConstantString(const std::string& str, |
| 211 | const char *GlobalName=0); |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 212 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 213 | /// GetAddrOfConstantCString - Returns a pointer to a character array |
| 214 | /// containing the literal and a terminating '\0' character. The result has |
| 215 | /// pointer to array type. |
Daniel Dunbar | 5fabf9d | 2008-10-17 21:56:50 +0000 | [diff] [blame] | 216 | /// |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 217 | /// \param GlobalName If provided, the name to use for the global (if one is |
| 218 | /// created). |
Daniel Dunbar | 5fabf9d | 2008-10-17 21:56:50 +0000 | [diff] [blame] | 219 | llvm::Constant *GetAddrOfConstantCString(const std::string &str, |
| 220 | const char *GlobalName=0); |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 221 | |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 222 | /// getBuiltinLibFunction - Given a builtin id for a function like |
| 223 | /// "__builtin_fabsf", return a Function* for "fabsf". |
Mike Stump | c136e6c | 2009-02-27 22:42:30 +0000 | [diff] [blame] | 224 | llvm::Value *getBuiltinLibFunction(unsigned BuiltinID); |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 225 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 226 | llvm::Function *getMemCpyFn(); |
Eli Friedman | 0c99509 | 2008-05-26 12:59:39 +0000 | [diff] [blame] | 227 | llvm::Function *getMemMoveFn(); |
Lauro Ramos Venancio | 41ef30e | 2008-02-19 22:01:01 +0000 | [diff] [blame] | 228 | llvm::Function *getMemSetFn(); |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 229 | llvm::Function *getIntrinsic(unsigned IID, const llvm::Type **Tys = 0, |
Chris Lattner | 7acda7c | 2007-12-18 00:25:38 +0000 | [diff] [blame] | 230 | unsigned NumTys = 0); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 231 | |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 232 | /// EmitTopLevelDecl - Emit code for a single top level declaration. |
| 233 | void EmitTopLevelDecl(Decl *D); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 234 | |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 235 | /// AddUsedGlobal - Add a global which should be forced to be |
| 236 | /// present in the object file; these are emitted to the llvm.used |
| 237 | /// metadata global. |
| 238 | void AddUsedGlobal(llvm::GlobalValue *GV); |
| 239 | |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 240 | void AddAnnotation(llvm::Constant *C) { Annotations.push_back(C); } |
| 241 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 242 | /// CreateRuntimeFunction - Create a new runtime function with the specified |
| 243 | /// type and name. |
| 244 | llvm::Constant *CreateRuntimeFunction(const llvm::FunctionType *Ty, |
| 245 | const char *Name); |
| 246 | /// CreateRuntimeVariable - Create a new runtime global variable with the |
| 247 | /// specified type and name. |
| 248 | llvm::Constant *CreateRuntimeVariable(const llvm::Type *Ty, |
| 249 | const char *Name); |
Daniel Dunbar | f1968f2 | 2008-10-01 00:49:24 +0000 | [diff] [blame] | 250 | |
Chris Lattner | 5ad0f67 | 2009-04-01 02:08:13 +0000 | [diff] [blame] | 251 | void UpdateCompletedType(const TagDecl *TD) { |
| 252 | // Make sure that this type is translated. |
| 253 | Types.UpdateCompletedType(TD); |
| 254 | } |
Daniel Dunbar | d60f2fb | 2009-02-17 18:43:32 +0000 | [diff] [blame] | 255 | |
| 256 | /// EmitConstantExpr - Try to emit the given expression as a |
| 257 | /// constant; returns 0 if the expression cannot be emitted as a |
| 258 | /// constant. |
Lauro Ramos Venancio | 8137335 | 2008-02-26 21:41:45 +0000 | [diff] [blame] | 259 | llvm::Constant *EmitConstantExpr(const Expr *E, CodeGenFunction *CGF = 0); |
Daniel Dunbar | d60f2fb | 2009-02-17 18:43:32 +0000 | [diff] [blame] | 260 | |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 261 | llvm::Constant *EmitAnnotateAttr(llvm::GlobalValue *GV, |
| 262 | const AnnotateAttr *AA, unsigned LineNo); |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 263 | |
Daniel Dunbar | 488e993 | 2008-08-16 00:56:44 +0000 | [diff] [blame] | 264 | /// ErrorUnsupported - Print out an error that codegen doesn't support the |
Daniel Dunbar | 90df4b6 | 2008-09-04 03:43:08 +0000 | [diff] [blame] | 265 | /// specified stmt yet. |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 266 | /// \param OmitOnError - If true, then this error should only be emitted if no |
| 267 | /// other errors have been reported. |
| 268 | void ErrorUnsupported(const Stmt *S, const char *Type, |
Daniel Dunbar | 90df4b6 | 2008-09-04 03:43:08 +0000 | [diff] [blame] | 269 | bool OmitOnError=false); |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 270 | |
Daniel Dunbar | 488e993 | 2008-08-16 00:56:44 +0000 | [diff] [blame] | 271 | /// ErrorUnsupported - Print out an error that codegen doesn't support the |
Chris Lattner | c6fdc34 | 2008-01-12 07:05:38 +0000 | [diff] [blame] | 272 | /// specified decl yet. |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 273 | /// \param OmitOnError - If true, then this error should only be emitted if no |
| 274 | /// other errors have been reported. |
Daniel Dunbar | 90df4b6 | 2008-09-04 03:43:08 +0000 | [diff] [blame] | 275 | void ErrorUnsupported(const Decl *D, const char *Type, |
| 276 | bool OmitOnError=false); |
Dan Gohman | 4f8d123 | 2008-05-22 00:50:06 +0000 | [diff] [blame] | 277 | |
Daniel Dunbar | f80519b | 2008-09-04 23:41:35 +0000 | [diff] [blame] | 278 | void SetMethodAttributes(const ObjCMethodDecl *MD, |
| 279 | llvm::Function *F); |
| 280 | |
Devang Patel | 761d7f7 | 2008-09-25 21:02:23 +0000 | [diff] [blame] | 281 | void SetFunctionAttributes(const Decl *D, |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 282 | const CGFunctionInfo &Info, |
Daniel Dunbar | b768807 | 2008-09-10 00:41:16 +0000 | [diff] [blame] | 283 | llvm::Function *F); |
| 284 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 285 | /// ReturnTypeUsesSret - Return true iff the given type uses 'sret' when used |
| 286 | /// as a return type. |
Daniel Dunbar | 88b5396 | 2009-02-02 22:03:45 +0000 | [diff] [blame] | 287 | bool ReturnTypeUsesSret(const CGFunctionInfo &FI); |
Daniel Dunbar | b768807 | 2008-09-10 00:41:16 +0000 | [diff] [blame] | 288 | |
Daniel Dunbar | 88b5396 | 2009-02-02 22:03:45 +0000 | [diff] [blame] | 289 | void ConstructAttributeList(const CGFunctionInfo &Info, |
| 290 | const Decl *TargetDecl, |
Devang Patel | 761d7f7 | 2008-09-25 21:02:23 +0000 | [diff] [blame] | 291 | AttributeListType &PAL); |
Daniel Dunbar | b768807 | 2008-09-10 00:41:16 +0000 | [diff] [blame] | 292 | |
Douglas Gregor | 6ec3668 | 2009-02-18 23:53:56 +0000 | [diff] [blame] | 293 | const char *getMangledName(const NamedDecl *ND); |
Douglas Gregor | 5f2bfd4 | 2009-02-13 00:10:09 +0000 | [diff] [blame] | 294 | |
| 295 | |
Chris Lattner | 9cd4fe4 | 2007-12-02 07:09:19 +0000 | [diff] [blame] | 296 | private: |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 297 | llvm::Constant *GetOrCreateLLVMFunction(const char *MangledName, |
| 298 | const llvm::Type *Ty, |
| 299 | const FunctionDecl *D); |
| 300 | llvm::Constant *GetOrCreateLLVMGlobal(const char *MangledName, |
| 301 | const llvm::PointerType *PTy, |
| 302 | const VarDecl *D); |
| 303 | |
Daniel Dunbar | 5c61d97 | 2009-02-13 22:08:43 +0000 | [diff] [blame] | 304 | /// SetGlobalValueAttributes - Set attributes for a global decl. |
| 305 | void SetGlobalValueAttributes(const Decl *D, |
| 306 | bool IsInternal, |
| 307 | bool IsInline, |
| 308 | llvm::GlobalValue *GV, |
| 309 | bool ForDefinition); |
| 310 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 311 | /// SetFunctionAttributesForDefinition - Set function attributes specific to a |
| 312 | /// function definition. |
Daniel Dunbar | 219df66 | 2008-09-08 23:44:31 +0000 | [diff] [blame] | 313 | /// \param D - The ObjCMethodDecl or FunctionDecl defining \arg F. |
| 314 | void SetFunctionAttributesForDefinition(const Decl *D, |
| 315 | llvm::Function *F); |
Daniel Dunbar | f80519b | 2008-09-04 23:41:35 +0000 | [diff] [blame] | 316 | |
Eli Friedman | ff4a2d9 | 2008-06-01 15:54:49 +0000 | [diff] [blame] | 317 | void SetFunctionAttributes(const FunctionDecl *FD, |
Daniel Dunbar | f80519b | 2008-09-04 23:41:35 +0000 | [diff] [blame] | 318 | llvm::Function *F); |
Nuno Lopes | d4cbda6 | 2008-06-08 15:45:52 +0000 | [diff] [blame] | 319 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 320 | /// EmitGlobal - Emit code for a singal global function or var decl. Forward |
| 321 | /// declarations are emitted lazily. |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 322 | void EmitGlobal(const ValueDecl *D); |
| 323 | |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 324 | void EmitGlobalDefinition(const ValueDecl *D); |
Daniel Dunbar | d5d3180 | 2009-02-19 07:15:39 +0000 | [diff] [blame] | 325 | |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 326 | void EmitGlobalFunctionDefinition(const FunctionDecl *D); |
| 327 | void EmitGlobalVarDefinition(const VarDecl *D); |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 328 | void EmitAliasDefinition(const ValueDecl *D); |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 329 | void EmitObjCPropertyImplementations(const ObjCImplementationDecl *D); |
Anders Carlsson | 984e068 | 2009-04-01 00:58:25 +0000 | [diff] [blame] | 330 | void EmitNamespace(const NamespaceDecl *D); |
| 331 | |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 332 | // FIXME: Hardcoding priority here is gross. |
| 333 | void AddGlobalCtor(llvm::Function * Ctor, int Priority=65535); |
| 334 | void AddGlobalDtor(llvm::Function * Dtor, int Priority=65535); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 335 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 336 | /// EmitCtorList - Generates a global array of functions and priorities using |
| 337 | /// the given list and name. This array will have appending linkage and is |
| 338 | /// suitable for use as a LLVM constructor or destructor array. |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 339 | void EmitCtorList(const CtorList &Fns, const char *GlobalName); |
| 340 | |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 341 | void EmitAnnotations(void); |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 342 | |
Daniel Dunbar | 4274581 | 2009-03-09 23:53:08 +0000 | [diff] [blame] | 343 | /// EmitDeferred - Emit any needed decls for which code generation |
| 344 | /// was deferred. |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 345 | void EmitDeferred(void); |
| 346 | |
Daniel Dunbar | 4274581 | 2009-03-09 23:53:08 +0000 | [diff] [blame] | 347 | /// EmitLLVMUsed - Emit the llvm.used metadata used to force |
| 348 | /// references to global which may otherwise be optimized out. |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 349 | void EmitLLVMUsed(void); |
Daniel Dunbar | f1968f2 | 2008-10-01 00:49:24 +0000 | [diff] [blame] | 350 | |
Daniel Dunbar | 4274581 | 2009-03-09 23:53:08 +0000 | [diff] [blame] | 351 | /// MayDeferGeneration - Determine if the given decl can be emitted |
| 352 | /// lazily; this is only relevant for definitions. The given decl |
| 353 | /// must be either a function or var decl. |
Daniel Dunbar | 73241df | 2009-02-13 21:18:01 +0000 | [diff] [blame] | 354 | bool MayDeferGeneration(const ValueDecl *D); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 355 | }; |
| 356 | } // end namespace CodeGen |
| 357 | } // end namespace clang |
| 358 | |
| 359 | #endif |