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 | |
Peter Collingbourne | 1411047 | 2011-01-13 18:57:25 +0000 | [diff] [blame] | 17 | #include "clang/Basic/ABI.h" |
Daniel Dunbar | 04d4078 | 2009-04-14 06:00:08 +0000 | [diff] [blame] | 18 | #include "clang/Basic/LangOptions.h" |
Dan Gohman | 4f8d123 | 2008-05-22 00:50:06 +0000 | [diff] [blame] | 19 | #include "clang/AST/Attr.h" |
Anders Carlsson | 2a131fb | 2009-05-05 04:44:02 +0000 | [diff] [blame] | 20 | #include "clang/AST/DeclCXX.h" |
Anders Carlsson | 0ff8baf | 2009-09-11 00:07:24 +0000 | [diff] [blame] | 21 | #include "clang/AST/DeclObjC.h" |
Peter Collingbourne | 1411047 | 2011-01-13 18:57:25 +0000 | [diff] [blame] | 22 | #include "clang/AST/Mangle.h" |
Chris Lattner | bd36064 | 2009-03-26 05:00:52 +0000 | [diff] [blame] | 23 | #include "CGBlocks.h" |
| 24 | #include "CGCall.h" |
Anders Carlsson | 461e326 | 2010-04-08 16:30:25 +0000 | [diff] [blame] | 25 | #include "CGVTables.h" |
Chris Lattner | bd36064 | 2009-03-26 05:00:52 +0000 | [diff] [blame] | 26 | #include "CodeGenTypes.h" |
Anders Carlsson | 764d0c2 | 2009-11-13 04:25:07 +0000 | [diff] [blame] | 27 | #include "GlobalDecl.h" |
Owen Anderson | 6924382 | 2009-07-13 04:10:07 +0000 | [diff] [blame] | 28 | #include "llvm/Module.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 29 | #include "llvm/ADT/DenseMap.h" |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 30 | #include "llvm/ADT/StringMap.h" |
Douglas Gregor | 6ec3668 | 2009-02-18 23:53:56 +0000 | [diff] [blame] | 31 | #include "llvm/ADT/StringSet.h" |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 32 | #include "llvm/ADT/SmallPtrSet.h" |
Chris Lattner | 35f38a2 | 2009-03-31 22:37:52 +0000 | [diff] [blame] | 33 | #include "llvm/Support/ValueHandle.h" |
Anders Carlsson | b723f75 | 2009-01-04 02:08:04 +0000 | [diff] [blame] | 34 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 35 | namespace llvm { |
| 36 | class Module; |
| 37 | class Constant; |
| 38 | class Function; |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 39 | class GlobalValue; |
Devang Patel | 7a4718e | 2007-10-31 20:01:01 +0000 | [diff] [blame] | 40 | class TargetData; |
Eli Friedman | ff4a2d9 | 2008-06-01 15:54:49 +0000 | [diff] [blame] | 41 | class FunctionType; |
Benjamin Kramer | f21efe9 | 2009-08-11 17:46:57 +0000 | [diff] [blame] | 42 | class LLVMContext; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 43 | } |
| 44 | |
| 45 | namespace clang { |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 46 | class TargetCodeGenInfo; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 47 | class ASTContext; |
| 48 | class FunctionDecl; |
Daniel Dunbar | 90db882 | 2008-08-25 06:18:57 +0000 | [diff] [blame] | 49 | class IdentifierInfo; |
Chris Lattner | 391d77a | 2008-03-30 23:03:07 +0000 | [diff] [blame] | 50 | class ObjCMethodDecl; |
Anton Korobeynikov | 20ff310 | 2008-06-01 14:13:53 +0000 | [diff] [blame] | 51 | class ObjCImplementationDecl; |
| 52 | class ObjCCategoryImplDecl; |
| 53 | class ObjCProtocolDecl; |
Chris Lattner | eaf2bb8 | 2009-02-24 22:18:39 +0000 | [diff] [blame] | 54 | class ObjCEncodeExpr; |
Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 55 | class BlockExpr; |
Ken Dyck | 687cc4a | 2010-01-26 13:48:07 +0000 | [diff] [blame] | 56 | class CharUnits; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 57 | class Decl; |
Oliver Hunt | 2824723 | 2007-12-02 00:11:25 +0000 | [diff] [blame] | 58 | class Expr; |
Chris Lattner | 2c8569d | 2007-12-02 07:19:18 +0000 | [diff] [blame] | 59 | class Stmt; |
Daniel Dunbar | 1e04976 | 2008-08-10 20:25:57 +0000 | [diff] [blame] | 60 | class StringLiteral; |
Nate Begeman | 1a1d92a | 2008-04-20 20:38:08 +0000 | [diff] [blame] | 61 | class NamedDecl; |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 62 | class ValueDecl; |
Chris Lattner | 2b9d2ca | 2007-12-18 08:16:44 +0000 | [diff] [blame] | 63 | class VarDecl; |
Sebastian Redl | 43af76e | 2009-03-07 12:16:37 +0000 | [diff] [blame] | 64 | class LangOptions; |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 65 | class CodeGenOptions; |
Chris Lattner | fb97b03 | 2007-12-02 01:40:18 +0000 | [diff] [blame] | 66 | class Diagnostic; |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 67 | class AnnotateAttr; |
Anders Carlsson | 27ae536 | 2009-04-17 01:58:57 +0000 | [diff] [blame] | 68 | class CXXDestructorDecl; |
Peter Collingbourne | 1411047 | 2011-01-13 18:57:25 +0000 | [diff] [blame] | 69 | class MangleBuffer; |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 70 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 71 | namespace CodeGen { |
| 72 | |
Lauro Ramos Venancio | 8137335 | 2008-02-26 21:41:45 +0000 | [diff] [blame] | 73 | class CodeGenFunction; |
Dan Gohman | 3d5aff5 | 2010-10-14 23:06:10 +0000 | [diff] [blame] | 74 | class CodeGenTBAA; |
John McCall | 4c40d98 | 2010-08-31 07:33:07 +0000 | [diff] [blame] | 75 | class CGCXXABI; |
Sanjiv Gupta | e8b9f5b | 2008-05-08 08:54:20 +0000 | [diff] [blame] | 76 | class CGDebugInfo; |
Daniel Dunbar | af2f62c | 2008-08-13 00:59:25 +0000 | [diff] [blame] | 77 | class CGObjCRuntime; |
Anders Carlsson | 4a6835e | 2009-09-10 23:38:47 +0000 | [diff] [blame] | 78 | |
Chris Lattner | ec2830d | 2010-06-27 06:32:58 +0000 | [diff] [blame] | 79 | struct OrderGlobalInits { |
Fariborz Jahanian | e0b691a | 2010-06-21 21:27:42 +0000 | [diff] [blame] | 80 | unsigned int priority; |
| 81 | unsigned int lex_order; |
| 82 | OrderGlobalInits(unsigned int p, unsigned int l) |
Chris Lattner | ec2830d | 2010-06-27 06:32:58 +0000 | [diff] [blame] | 83 | : priority(p), lex_order(l) {} |
| 84 | |
| 85 | bool operator==(const OrderGlobalInits &RHS) const { |
| 86 | return priority == RHS.priority && |
| 87 | lex_order == RHS.lex_order; |
Fariborz Jahanian | f489688 | 2010-06-22 00:23:08 +0000 | [diff] [blame] | 88 | } |
| 89 | |
Chris Lattner | ec2830d | 2010-06-27 06:32:58 +0000 | [diff] [blame] | 90 | bool operator<(const OrderGlobalInits &RHS) const { |
| 91 | if (priority < RHS.priority) |
Fariborz Jahanian | f489688 | 2010-06-22 00:23:08 +0000 | [diff] [blame] | 92 | return true; |
| 93 | |
Chris Lattner | ec2830d | 2010-06-27 06:32:58 +0000 | [diff] [blame] | 94 | return priority == RHS.priority && lex_order < RHS.lex_order; |
Fariborz Jahanian | f489688 | 2010-06-22 00:23:08 +0000 | [diff] [blame] | 95 | } |
Chris Lattner | ec2830d | 2010-06-27 06:32:58 +0000 | [diff] [blame] | 96 | }; |
Fariborz Jahanian | e0b691a | 2010-06-21 21:27:42 +0000 | [diff] [blame] | 97 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 98 | /// CodeGenModule - This class organizes the cross-function state that is used |
| 99 | /// while generating LLVM code. |
Mike Stump | 2a99814 | 2009-03-04 18:17:45 +0000 | [diff] [blame] | 100 | class CodeGenModule : public BlockModule { |
Anders Carlsson | 8a219ce | 2009-02-24 04:21:31 +0000 | [diff] [blame] | 101 | CodeGenModule(const CodeGenModule&); // DO NOT IMPLEMENT |
| 102 | void operator=(const CodeGenModule&); // DO NOT IMPLEMENT |
| 103 | |
Chris Lattner | ca0017a | 2009-09-12 22:45:21 +0000 | [diff] [blame] | 104 | typedef std::vector<std::pair<llvm::Constant*, int> > CtorList; |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 105 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 106 | ASTContext &Context; |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 107 | const LangOptions &Features; |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 108 | const CodeGenOptions &CodeGenOpts; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 109 | llvm::Module &TheModule; |
Devang Patel | 7a4718e | 2007-10-31 20:01:01 +0000 | [diff] [blame] | 110 | const llvm::TargetData &TheTargetData; |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 111 | mutable const TargetCodeGenInfo *TheTargetCodeGenInfo; |
Chris Lattner | fb97b03 | 2007-12-02 01:40:18 +0000 | [diff] [blame] | 112 | Diagnostic &Diags; |
John McCall | f16aa10 | 2010-08-22 21:01:12 +0000 | [diff] [blame] | 113 | CGCXXABI &ABI; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 114 | CodeGenTypes Types; |
Dan Gohman | 3d5aff5 | 2010-10-14 23:06:10 +0000 | [diff] [blame] | 115 | CodeGenTBAA *TBAA; |
Anders Carlsson | b540491 | 2009-10-07 01:06:45 +0000 | [diff] [blame] | 116 | |
Anders Carlsson | af44035 | 2010-03-23 04:11:45 +0000 | [diff] [blame] | 117 | /// VTables - Holds information about C++ vtables. |
| 118 | CodeGenVTables VTables; |
Douglas Gregor | e17ad2f | 2010-04-08 16:07:47 +0000 | [diff] [blame] | 119 | friend class CodeGenVTables; |
| 120 | |
Ted Kremenek | 815c78f | 2008-08-05 18:50:11 +0000 | [diff] [blame] | 121 | CGObjCRuntime* Runtime; |
| 122 | CGDebugInfo* DebugInfo; |
Daniel Dunbar | 9986eab | 2008-07-30 16:32:24 +0000 | [diff] [blame] | 123 | |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 124 | // WeakRefReferences - A set of references that have only been seen via |
| 125 | // a weakref so far. This is used to remove the weak of the reference if we ever |
| 126 | // see a direct reference or a definition. |
| 127 | llvm::SmallPtrSet<llvm::GlobalValue*, 10> WeakRefReferences; |
| 128 | |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 129 | /// DeferredDecls - This contains all the decls which have definitions but |
| 130 | /// which are deferred for emission and therefore should only be output if |
| 131 | /// they are actually used. If a decl is in this, then it is known to have |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 132 | /// not been referenced yet. |
| 133 | llvm::StringMap<GlobalDecl> DeferredDecls; |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 134 | |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 135 | /// DeferredDeclsToEmit - This is a list of deferred decls which we have seen |
| 136 | /// that *are* actually referenced. These get code generated when the module |
| 137 | /// is done. |
Anders Carlsson | 2a131fb | 2009-05-05 04:44:02 +0000 | [diff] [blame] | 138 | std::vector<GlobalDecl> DeferredDeclsToEmit; |
Daniel Dunbar | 03f5ad9 | 2009-04-15 22:08:45 +0000 | [diff] [blame] | 139 | |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 140 | /// LLVMUsed - List of global values which are required to be |
| 141 | /// present in the object file; bitcast to i8*. This is used for |
| 142 | /// forcing visibility of symbols which may otherwise be optimized |
| 143 | /// out. |
Chris Lattner | 35f38a2 | 2009-03-31 22:37:52 +0000 | [diff] [blame] | 144 | std::vector<llvm::WeakVH> LLVMUsed; |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 145 | |
| 146 | /// GlobalCtors - Store the list of global constructors and their respective |
| 147 | /// priorities to be emitted when the translation unit is complete. |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 148 | CtorList GlobalCtors; |
| 149 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 150 | /// GlobalDtors - Store the list of global destructors and their respective |
| 151 | /// priorities to be emitted when the translation unit is complete. |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 152 | CtorList GlobalDtors; |
| 153 | |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 154 | /// MangledDeclNames - A map of canonical GlobalDecls to their mangled names. |
| 155 | llvm::DenseMap<GlobalDecl, llvm::StringRef> MangledDeclNames; |
| 156 | llvm::BumpPtrAllocator MangledNamesAllocator; |
| 157 | |
Nate Begeman | 532485c | 2008-04-18 23:43:57 +0000 | [diff] [blame] | 158 | std::vector<llvm::Constant*> Annotations; |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 159 | |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 160 | llvm::StringMap<llvm::Constant*> CFConstantStringMap; |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 161 | llvm::StringMap<llvm::Constant*> ConstantStringMap; |
Fariborz Jahanian | 65ad5a4 | 2010-04-18 21:01:23 +0000 | [diff] [blame] | 162 | llvm::DenseMap<const Decl*, llvm::Value*> StaticLocalDeclMap; |
Daniel Dunbar | 3e9df99 | 2008-08-23 18:37:06 +0000 | [diff] [blame] | 163 | |
Daniel Dunbar | efb0fa9 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 164 | /// CXXGlobalInits - Global variables with initializers that need to run |
Anders Carlsson | 89ed31d | 2009-08-08 23:24:23 +0000 | [diff] [blame] | 165 | /// before main. |
Eli Friedman | 6c6bda3 | 2010-01-08 00:50:11 +0000 | [diff] [blame] | 166 | std::vector<llvm::Constant*> CXXGlobalInits; |
John McCall | bf40cb5 | 2010-07-15 23:40:35 +0000 | [diff] [blame] | 167 | |
| 168 | /// When a C++ decl with an initializer is deferred, null is |
| 169 | /// appended to CXXGlobalInits, and the index of that null is placed |
| 170 | /// here so that the initializer will be performed in the correct |
| 171 | /// order. |
| 172 | llvm::DenseMap<const Decl*, unsigned> DelayedCXXInitPosition; |
Fariborz Jahanian | 9f967c5 | 2010-06-21 18:45:05 +0000 | [diff] [blame] | 173 | |
| 174 | /// - Global variables with initializers whose order of initialization |
| 175 | /// is set by init_priority attribute. |
Fariborz Jahanian | e0b691a | 2010-06-21 21:27:42 +0000 | [diff] [blame] | 176 | |
Chris Lattner | ec2830d | 2010-06-27 06:32:58 +0000 | [diff] [blame] | 177 | llvm::SmallVector<std::pair<OrderGlobalInits, llvm::Function*>, 8> |
Fariborz Jahanian | 9f967c5 | 2010-06-21 18:45:05 +0000 | [diff] [blame] | 178 | PrioritizedCXXGlobalInits; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 179 | |
Daniel Dunbar | efb0fa9 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 180 | /// CXXGlobalDtors - Global destructor functions and arguments that need to |
| 181 | /// run on termination. |
Chris Lattner | 810112e | 2010-06-19 05:52:45 +0000 | [diff] [blame] | 182 | std::vector<std::pair<llvm::WeakVH,llvm::Constant*> > CXXGlobalDtors; |
Daniel Dunbar | efb0fa9 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 183 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 184 | /// CFConstantStringClassRef - Cached reference to the class for constant |
| 185 | /// 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] | 186 | llvm::Constant *CFConstantStringClassRef; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 187 | |
Fariborz Jahanian | 4c73307 | 2010-10-19 17:19:29 +0000 | [diff] [blame] | 188 | /// ConstantStringClassRef - Cached reference to the class for constant |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 189 | /// strings. This value has type int * but is actually an Obj-C class pointer. |
Fariborz Jahanian | 4c73307 | 2010-10-19 17:19:29 +0000 | [diff] [blame] | 190 | llvm::Constant *ConstantStringClassRef; |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 191 | |
David Chisnall | 0d13f6f | 2010-01-23 02:40:42 +0000 | [diff] [blame] | 192 | /// Lazily create the Objective-C runtime |
| 193 | void createObjCRuntime(); |
| 194 | |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 195 | llvm::LLVMContext &VMContext; |
Daniel Dunbar | 673431a | 2010-07-16 00:00:15 +0000 | [diff] [blame] | 196 | |
| 197 | /// @name Cache for Blocks Runtime Globals |
| 198 | /// @{ |
| 199 | |
Daniel Dunbar | 754b9fb | 2010-07-16 00:00:19 +0000 | [diff] [blame] | 200 | const VarDecl *NSConcreteGlobalBlockDecl; |
| 201 | const VarDecl *NSConcreteStackBlockDecl; |
Daniel Dunbar | 673431a | 2010-07-16 00:00:15 +0000 | [diff] [blame] | 202 | llvm::Constant *NSConcreteGlobalBlock; |
| 203 | llvm::Constant *NSConcreteStackBlock; |
Daniel Dunbar | 754b9fb | 2010-07-16 00:00:19 +0000 | [diff] [blame] | 204 | |
| 205 | const FunctionDecl *BlockObjectAssignDecl; |
| 206 | const FunctionDecl *BlockObjectDisposeDecl; |
Daniel Dunbar | 673431a | 2010-07-16 00:00:15 +0000 | [diff] [blame] | 207 | llvm::Constant *BlockObjectAssign; |
| 208 | llvm::Constant *BlockObjectDispose; |
| 209 | |
| 210 | /// @} |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 211 | public: |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 212 | CodeGenModule(ASTContext &C, const CodeGenOptions &CodeGenOpts, |
John McCall | 468ec6c | 2010-03-04 04:29:44 +0000 | [diff] [blame] | 213 | llvm::Module &M, const llvm::TargetData &TD, Diagnostic &Diags); |
Ted Kremenek | 815c78f | 2008-08-05 18:50:11 +0000 | [diff] [blame] | 214 | |
Chris Lattner | 2b94fe3 | 2008-03-01 08:45:05 +0000 | [diff] [blame] | 215 | ~CodeGenModule(); |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 216 | |
Ted Kremenek | 815c78f | 2008-08-05 18:50:11 +0000 | [diff] [blame] | 217 | /// Release - Finalize LLVM code generation. |
| 218 | void Release(); |
Daniel Dunbar | 208ff5e | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 219 | |
| 220 | /// getObjCRuntime() - Return a reference to the configured |
| 221 | /// Objective-C runtime. |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 222 | CGObjCRuntime &getObjCRuntime() { |
David Chisnall | 0d13f6f | 2010-01-23 02:40:42 +0000 | [diff] [blame] | 223 | if (!Runtime) createObjCRuntime(); |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 224 | return *Runtime; |
Daniel Dunbar | 208ff5e | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 225 | } |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 226 | |
Daniel Dunbar | 208ff5e | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 227 | /// hasObjCRuntime() - Return true iff an Objective-C runtime has |
| 228 | /// been configured. |
| 229 | bool hasObjCRuntime() { return !!Runtime; } |
| 230 | |
John McCall | f16aa10 | 2010-08-22 21:01:12 +0000 | [diff] [blame] | 231 | /// getCXXABI() - Return a reference to the configured C++ ABI. |
| 232 | CGCXXABI &getCXXABI() { return ABI; } |
Charles Davis | 3a811f1 | 2010-05-25 19:52:27 +0000 | [diff] [blame] | 233 | |
Fariborz Jahanian | 63326a5 | 2010-04-19 18:15:02 +0000 | [diff] [blame] | 234 | llvm::Value *getStaticLocalDeclAddress(const VarDecl *VD) { |
Fariborz Jahanian | 65ad5a4 | 2010-04-18 21:01:23 +0000 | [diff] [blame] | 235 | return StaticLocalDeclMap[VD]; |
| 236 | } |
Fariborz Jahanian | 63326a5 | 2010-04-19 18:15:02 +0000 | [diff] [blame] | 237 | void setStaticLocalDeclAddress(const VarDecl *D, |
Fariborz Jahanian | 65ad5a4 | 2010-04-18 21:01:23 +0000 | [diff] [blame] | 238 | llvm::GlobalVariable *GV) { |
| 239 | StaticLocalDeclMap[D] = GV; |
| 240 | } |
| 241 | |
Sanjiv Gupta | e8b9f5b | 2008-05-08 08:54:20 +0000 | [diff] [blame] | 242 | CGDebugInfo *getDebugInfo() { return DebugInfo; } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 243 | ASTContext &getContext() const { return Context; } |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 244 | const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; } |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 245 | const LangOptions &getLangOptions() const { return Features; } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 246 | llvm::Module &getModule() const { return TheModule; } |
| 247 | CodeGenTypes &getTypes() { return Types; } |
Anders Carlsson | af44035 | 2010-03-23 04:11:45 +0000 | [diff] [blame] | 248 | CodeGenVTables &getVTables() { return VTables; } |
Chris Lattner | fb97b03 | 2007-12-02 01:40:18 +0000 | [diff] [blame] | 249 | Diagnostic &getDiags() const { return Diags; } |
Chris Lattner | 8f92528 | 2008-01-03 06:36:51 +0000 | [diff] [blame] | 250 | const llvm::TargetData &getTargetData() const { return TheTargetData; } |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 251 | llvm::LLVMContext &getLLVMContext() { return VMContext; } |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 252 | const TargetCodeGenInfo &getTargetCodeGenInfo(); |
John McCall | 6374c33 | 2010-03-06 00:35:14 +0000 | [diff] [blame] | 253 | bool isTargetDarwin() const; |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 254 | |
Dan Gohman | 3d5aff5 | 2010-10-14 23:06:10 +0000 | [diff] [blame] | 255 | llvm::MDNode *getTBAAInfo(QualType QTy); |
| 256 | |
| 257 | static void DecorateInstruction(llvm::Instruction *Inst, |
| 258 | llvm::MDNode *TBAAInfo); |
| 259 | |
Daniel Dunbar | 04d4078 | 2009-04-14 06:00:08 +0000 | [diff] [blame] | 260 | /// setGlobalVisibility - Set the visibility for the given LLVM |
| 261 | /// GlobalValue. |
Anders Carlsson | 0ffeaad | 2011-01-29 19:39:23 +0000 | [diff] [blame] | 262 | void setGlobalVisibility(llvm::GlobalValue *GV, const NamedDecl *D) const; |
Daniel Dunbar | 04d4078 | 2009-04-14 06:00:08 +0000 | [diff] [blame] | 263 | |
Anders Carlsson | fa2e99f | 2011-01-29 20:24:48 +0000 | [diff] [blame] | 264 | /// TypeVisibilityKind - The kind of global variable that is passed to |
| 265 | /// setTypeVisibility |
| 266 | enum TypeVisibilityKind { |
| 267 | TVK_ForVTT, |
| 268 | TVK_ForVTable, |
| 269 | TVK_ForRTTI, |
| 270 | TVK_ForRTTIName |
| 271 | }; |
| 272 | |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 273 | /// setTypeVisibility - Set the visibility for the given global |
| 274 | /// value which holds information about a type. |
| 275 | void setTypeVisibility(llvm::GlobalValue *GV, const CXXRecordDecl *D, |
Anders Carlsson | fa2e99f | 2011-01-29 20:24:48 +0000 | [diff] [blame] | 276 | TypeVisibilityKind TVK) const; |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 277 | |
Anders Carlsson | c7e98fa | 2011-01-29 20:59:35 +0000 | [diff] [blame] | 278 | static llvm::GlobalValue::VisibilityTypes GetLLVMVisibility(Visibility V) { |
| 279 | switch (V) { |
| 280 | case DefaultVisibility: return llvm::GlobalValue::DefaultVisibility; |
| 281 | case HiddenVisibility: return llvm::GlobalValue::HiddenVisibility; |
| 282 | case ProtectedVisibility: return llvm::GlobalValue::ProtectedVisibility; |
| 283 | } |
| 284 | llvm_unreachable("unknown visibility!"); |
| 285 | return llvm::GlobalValue::DefaultVisibility; |
| 286 | } |
| 287 | |
John McCall | d46f985 | 2010-02-19 01:32:20 +0000 | [diff] [blame] | 288 | llvm::Constant *GetAddrOfGlobal(GlobalDecl GD) { |
| 289 | if (isa<CXXConstructorDecl>(GD.getDecl())) |
| 290 | return GetAddrOfCXXConstructor(cast<CXXConstructorDecl>(GD.getDecl()), |
| 291 | GD.getCtorType()); |
| 292 | else if (isa<CXXDestructorDecl>(GD.getDecl())) |
| 293 | return GetAddrOfCXXDestructor(cast<CXXDestructorDecl>(GD.getDecl()), |
| 294 | GD.getDtorType()); |
| 295 | else if (isa<FunctionDecl>(GD.getDecl())) |
| 296 | return GetAddrOfFunction(GD); |
| 297 | else |
| 298 | return GetAddrOfGlobalVar(cast<VarDecl>(GD.getDecl())); |
| 299 | } |
| 300 | |
Anders Carlsson | 3bd6202 | 2011-01-29 18:20:20 +0000 | [diff] [blame] | 301 | /// CreateOrReplaceCXXRuntimeVariable - Will return a global variable of the given |
| 302 | /// type. If a variable with a different type already exists then a new |
| 303 | /// variable with the right type will be created and all uses of the old |
| 304 | /// variable will be replaced with a bitcast to the new variable. |
| 305 | llvm::GlobalVariable * |
| 306 | CreateOrReplaceCXXRuntimeVariable(llvm::StringRef Name, const llvm::Type *Ty, |
| 307 | llvm::GlobalValue::LinkageTypes Linkage); |
| 308 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 309 | /// GetAddrOfGlobalVar - Return the llvm::Constant for the address of the |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 310 | /// given global variable. If Ty is non-null and if the global doesn't exist, |
| 311 | /// then it will be greated with the specified type instead of whatever the |
| 312 | /// normal requested type would be. |
| 313 | llvm::Constant *GetAddrOfGlobalVar(const VarDecl *D, |
| 314 | const llvm::Type *Ty = 0); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 315 | |
Chris Lattner | 3480950 | 2009-03-21 08:53:37 +0000 | [diff] [blame] | 316 | /// GetAddrOfFunction - Return the address of the given function. If Ty is |
| 317 | /// non-null, then this function will use the specified type if it has to |
| 318 | /// create it. |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 319 | llvm::Constant *GetAddrOfFunction(GlobalDecl GD, |
Anders Carlsson | 1faa89f | 2011-02-05 04:35:53 +0000 | [diff] [blame] | 320 | const llvm::Type *Ty = 0, |
| 321 | bool ForVTable = false); |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 322 | |
Anders Carlsson | 1d7088d | 2009-12-17 07:09:17 +0000 | [diff] [blame] | 323 | /// GetAddrOfRTTIDescriptor - Get the address of the RTTI descriptor |
| 324 | /// for the given type. |
John McCall | 9dffe6f | 2010-04-30 01:15:21 +0000 | [diff] [blame] | 325 | llvm::Constant *GetAddrOfRTTIDescriptor(QualType Ty, bool ForEH = false); |
Anders Carlsson | 31b7f52 | 2009-12-11 02:46:30 +0000 | [diff] [blame] | 326 | |
Anders Carlsson | 19879c9 | 2010-03-23 17:17:29 +0000 | [diff] [blame] | 327 | /// GetAddrOfThunk - Get the address of the thunk for the given global decl. |
Anders Carlsson | 84c49e4 | 2011-02-06 17:15:43 +0000 | [diff] [blame] | 328 | llvm::Constant *GetAddrOfThunk(GlobalDecl GD, const ThunkInfo &Thunk); |
Anders Carlsson | 19879c9 | 2010-03-23 17:17:29 +0000 | [diff] [blame] | 329 | |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 330 | /// GetWeakRefReference - Get a reference to the target of VD. |
| 331 | llvm::Constant *GetWeakRefReference(const ValueDecl *VD); |
| 332 | |
Anders Carlsson | bb7e17b | 2010-01-31 01:36:53 +0000 | [diff] [blame] | 333 | /// GetNonVirtualBaseClassOffset - Returns the offset from a derived class to |
Anders Carlsson | e04d45e | 2010-04-24 21:27:51 +0000 | [diff] [blame] | 334 | /// a class. Returns null if the offset is 0. |
Anders Carlsson | a04efdf | 2010-04-24 21:23:59 +0000 | [diff] [blame] | 335 | llvm::Constant * |
| 336 | GetNonVirtualBaseClassOffset(const CXXRecordDecl *ClassDecl, |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 337 | CastExpr::path_const_iterator PathBegin, |
| 338 | CastExpr::path_const_iterator PathEnd); |
Anders Carlsson | a04efdf | 2010-04-24 21:23:59 +0000 | [diff] [blame] | 339 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 340 | /// GetStringForStringLiteral - Return the appropriate bytes for a string |
| 341 | /// literal, properly padded to match the literal type. If only the address of |
| 342 | /// a constant is needed consider using GetAddrOfConstantStringLiteral. |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 343 | std::string GetStringForStringLiteral(const StringLiteral *E); |
| 344 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 345 | /// GetAddrOfConstantCFString - Return a pointer to a constant CFString object |
| 346 | /// for the given string. |
Steve Naroff | 8d4141f | 2009-04-01 13:55:36 +0000 | [diff] [blame] | 347 | llvm::Constant *GetAddrOfConstantCFString(const StringLiteral *Literal); |
Fariborz Jahanian | 33e982b | 2010-04-22 20:26:39 +0000 | [diff] [blame] | 348 | |
Fariborz Jahanian | 4c73307 | 2010-10-19 17:19:29 +0000 | [diff] [blame] | 349 | /// GetAddrOfConstantString - Return a pointer to a constant NSString object |
| 350 | /// for the given string. Or a user defined String object as defined via |
| 351 | /// -fconstant-string-class=class_name option. |
| 352 | llvm::Constant *GetAddrOfConstantString(const StringLiteral *Literal); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 353 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 354 | /// GetAddrOfConstantStringFromLiteral - Return a pointer to a constant array |
| 355 | /// for the given string literal. |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 356 | llvm::Constant *GetAddrOfConstantStringFromLiteral(const StringLiteral *S); |
Daniel Dunbar | 1e04976 | 2008-08-10 20:25:57 +0000 | [diff] [blame] | 357 | |
Chris Lattner | eaf2bb8 | 2009-02-24 22:18:39 +0000 | [diff] [blame] | 358 | /// GetAddrOfConstantStringFromObjCEncode - Return a pointer to a constant |
| 359 | /// array for the given ObjCEncodeExpr node. |
| 360 | llvm::Constant *GetAddrOfConstantStringFromObjCEncode(const ObjCEncodeExpr *); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 361 | |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 362 | /// GetAddrOfConstantString - Returns a pointer to a character array |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 363 | /// containing the literal. This contents are exactly that of the given |
| 364 | /// string, i.e. it will not be null terminated automatically; see |
| 365 | /// GetAddrOfConstantCString. Note that whether the result is actually a |
| 366 | /// pointer to an LLVM constant depends on Feature.WriteableStrings. |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 367 | /// |
| 368 | /// The result has pointer to array type. |
Daniel Dunbar | 5fabf9d | 2008-10-17 21:56:50 +0000 | [diff] [blame] | 369 | /// |
| 370 | /// \param GlobalName If provided, the name to use for the global |
| 371 | /// (if one is created). |
| 372 | llvm::Constant *GetAddrOfConstantString(const std::string& str, |
| 373 | const char *GlobalName=0); |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 374 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 375 | /// GetAddrOfConstantCString - Returns a pointer to a character array |
| 376 | /// containing the literal and a terminating '\0' character. The result has |
| 377 | /// pointer to array type. |
Daniel Dunbar | 5fabf9d | 2008-10-17 21:56:50 +0000 | [diff] [blame] | 378 | /// |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 379 | /// \param GlobalName If provided, the name to use for the global (if one is |
| 380 | /// created). |
Daniel Dunbar | 5fabf9d | 2008-10-17 21:56:50 +0000 | [diff] [blame] | 381 | llvm::Constant *GetAddrOfConstantCString(const std::string &str, |
| 382 | const char *GlobalName=0); |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 383 | |
Anders Carlsson | 363c184 | 2009-04-16 23:57:24 +0000 | [diff] [blame] | 384 | /// GetAddrOfCXXConstructor - Return the address of the constructor of the |
| 385 | /// given type. |
John McCall | d46f985 | 2010-02-19 01:32:20 +0000 | [diff] [blame] | 386 | llvm::GlobalValue *GetAddrOfCXXConstructor(const CXXConstructorDecl *D, |
| 387 | CXXCtorType Type); |
Anders Carlsson | 27ae536 | 2009-04-17 01:58:57 +0000 | [diff] [blame] | 388 | |
| 389 | /// GetAddrOfCXXDestructor - Return the address of the constructor of the |
| 390 | /// given type. |
John McCall | d46f985 | 2010-02-19 01:32:20 +0000 | [diff] [blame] | 391 | llvm::GlobalValue *GetAddrOfCXXDestructor(const CXXDestructorDecl *D, |
| 392 | CXXDtorType Type); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 393 | |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 394 | /// getBuiltinLibFunction - Given a builtin id for a function like |
| 395 | /// "__builtin_fabsf", return a Function* for "fabsf". |
Daniel Dunbar | 34771b5 | 2009-09-14 04:33:21 +0000 | [diff] [blame] | 396 | llvm::Value *getBuiltinLibFunction(const FunctionDecl *FD, |
| 397 | unsigned BuiltinID); |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 398 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 399 | llvm::Function *getIntrinsic(unsigned IID, const llvm::Type **Tys = 0, |
Chris Lattner | 7acda7c | 2007-12-18 00:25:38 +0000 | [diff] [blame] | 400 | unsigned NumTys = 0); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 401 | |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 402 | /// EmitTopLevelDecl - Emit code for a single top level declaration. |
| 403 | void EmitTopLevelDecl(Decl *D); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 404 | |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 405 | /// AddUsedGlobal - Add a global which should be forced to be |
| 406 | /// present in the object file; these are emitted to the llvm.used |
| 407 | /// metadata global. |
| 408 | void AddUsedGlobal(llvm::GlobalValue *GV); |
| 409 | |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 410 | void AddAnnotation(llvm::Constant *C) { Annotations.push_back(C); } |
| 411 | |
Daniel Dunbar | efb0fa9 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 412 | /// AddCXXDtorEntry - Add a destructor and object to add to the C++ global |
| 413 | /// destructor function. |
Chris Lattner | 810112e | 2010-06-19 05:52:45 +0000 | [diff] [blame] | 414 | void AddCXXDtorEntry(llvm::Constant *DtorFn, llvm::Constant *Object) { |
| 415 | CXXGlobalDtors.push_back(std::make_pair(DtorFn, Object)); |
| 416 | } |
Daniel Dunbar | efb0fa9 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 417 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 418 | /// CreateRuntimeFunction - Create a new runtime function with the specified |
| 419 | /// type and name. |
| 420 | llvm::Constant *CreateRuntimeFunction(const llvm::FunctionType *Ty, |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 421 | llvm::StringRef Name); |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 422 | /// CreateRuntimeVariable - Create a new runtime global variable with the |
| 423 | /// specified type and name. |
| 424 | llvm::Constant *CreateRuntimeVariable(const llvm::Type *Ty, |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 425 | llvm::StringRef Name); |
Daniel Dunbar | f1968f2 | 2008-10-01 00:49:24 +0000 | [diff] [blame] | 426 | |
Daniel Dunbar | 673431a | 2010-07-16 00:00:15 +0000 | [diff] [blame] | 427 | ///@name Custom Blocks Runtime Interfaces |
| 428 | ///@{ |
| 429 | |
| 430 | llvm::Constant *getNSConcreteGlobalBlock(); |
| 431 | llvm::Constant *getNSConcreteStackBlock(); |
| 432 | llvm::Constant *getBlockObjectAssign(); |
| 433 | llvm::Constant *getBlockObjectDispose(); |
| 434 | |
| 435 | ///@} |
| 436 | |
Chris Lattner | 5ad0f67 | 2009-04-01 02:08:13 +0000 | [diff] [blame] | 437 | void UpdateCompletedType(const TagDecl *TD) { |
| 438 | // Make sure that this type is translated. |
| 439 | Types.UpdateCompletedType(TD); |
| 440 | } |
Daniel Dunbar | d60f2fb | 2009-02-17 18:43:32 +0000 | [diff] [blame] | 441 | |
John McCall | 5808ce4 | 2011-02-03 08:15:49 +0000 | [diff] [blame] | 442 | llvm::Constant *getMemberPointerConstant(const UnaryOperator *e); |
| 443 | |
Daniel Dunbar | d60f2fb | 2009-02-17 18:43:32 +0000 | [diff] [blame] | 444 | /// EmitConstantExpr - Try to emit the given expression as a |
| 445 | /// constant; returns 0 if the expression cannot be emitted as a |
| 446 | /// constant. |
Anders Carlsson | e9352cc | 2009-04-08 04:48:15 +0000 | [diff] [blame] | 447 | llvm::Constant *EmitConstantExpr(const Expr *E, QualType DestType, |
| 448 | CodeGenFunction *CGF = 0); |
Daniel Dunbar | d60f2fb | 2009-02-17 18:43:32 +0000 | [diff] [blame] | 449 | |
Eli Friedman | 0f59312 | 2009-04-13 21:47:26 +0000 | [diff] [blame] | 450 | /// EmitNullConstant - Return the result of value-initializing the given |
| 451 | /// type, i.e. a null expression of the given type. This is usually, |
| 452 | /// but not always, an LLVM null constant. |
| 453 | llvm::Constant *EmitNullConstant(QualType T); |
| 454 | |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 455 | llvm::Constant *EmitAnnotateAttr(llvm::GlobalValue *GV, |
| 456 | const AnnotateAttr *AA, unsigned LineNo); |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 457 | |
Daniel Dunbar | 488e993 | 2008-08-16 00:56:44 +0000 | [diff] [blame] | 458 | /// ErrorUnsupported - Print out an error that codegen doesn't support the |
Daniel Dunbar | 90df4b6 | 2008-09-04 03:43:08 +0000 | [diff] [blame] | 459 | /// specified stmt yet. |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 460 | /// \param OmitOnError - If true, then this error should only be emitted if no |
| 461 | /// other errors have been reported. |
| 462 | void ErrorUnsupported(const Stmt *S, const char *Type, |
Daniel Dunbar | 90df4b6 | 2008-09-04 03:43:08 +0000 | [diff] [blame] | 463 | bool OmitOnError=false); |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 464 | |
Daniel Dunbar | 488e993 | 2008-08-16 00:56:44 +0000 | [diff] [blame] | 465 | /// ErrorUnsupported - Print out an error that codegen doesn't support the |
Chris Lattner | c6fdc34 | 2008-01-12 07:05:38 +0000 | [diff] [blame] | 466 | /// specified decl yet. |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 467 | /// \param OmitOnError - If true, then this error should only be emitted if no |
| 468 | /// other errors have been reported. |
Daniel Dunbar | 90df4b6 | 2008-09-04 03:43:08 +0000 | [diff] [blame] | 469 | void ErrorUnsupported(const Decl *D, const char *Type, |
| 470 | bool OmitOnError=false); |
Dan Gohman | 4f8d123 | 2008-05-22 00:50:06 +0000 | [diff] [blame] | 471 | |
Daniel Dunbar | 0e4f40e | 2009-04-17 00:48:04 +0000 | [diff] [blame] | 472 | /// SetInternalFunctionAttributes - Set the attributes on the LLVM |
| 473 | /// function for the given decl and function info. This applies |
| 474 | /// attributes necessary for handling the ABI as well as user |
| 475 | /// specified attributes like section. |
| 476 | void SetInternalFunctionAttributes(const Decl *D, llvm::Function *F, |
| 477 | const CGFunctionInfo &FI); |
Daniel Dunbar | f80519b | 2008-09-04 23:41:35 +0000 | [diff] [blame] | 478 | |
Daniel Dunbar | 7dbd819 | 2009-04-14 07:08:30 +0000 | [diff] [blame] | 479 | /// SetLLVMFunctionAttributes - Set the LLVM function attributes |
| 480 | /// (sext, zext, etc). |
| 481 | void SetLLVMFunctionAttributes(const Decl *D, |
| 482 | const CGFunctionInfo &Info, |
| 483 | llvm::Function *F); |
Daniel Dunbar | b768807 | 2008-09-10 00:41:16 +0000 | [diff] [blame] | 484 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 485 | /// SetLLVMFunctionAttributesForDefinition - Set the LLVM function attributes |
| 486 | /// which only apply to a function definintion. |
| 487 | void SetLLVMFunctionAttributesForDefinition(const Decl *D, llvm::Function *F); |
| 488 | |
Daniel Dunbar | dacf9dd | 2010-07-14 23:39:36 +0000 | [diff] [blame] | 489 | /// ReturnTypeUsesSRet - Return true iff the given type uses 'sret' when used |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 490 | /// as a return type. |
Daniel Dunbar | dacf9dd | 2010-07-14 23:39:36 +0000 | [diff] [blame] | 491 | bool ReturnTypeUsesSRet(const CGFunctionInfo &FI); |
| 492 | |
| 493 | /// ReturnTypeUsesSret - Return true iff the given type uses 'fpret' when used |
| 494 | /// as a return type. |
| 495 | bool ReturnTypeUsesFPRet(QualType ResultType); |
Daniel Dunbar | b768807 | 2008-09-10 00:41:16 +0000 | [diff] [blame] | 496 | |
Daniel Dunbar | ca6408c | 2009-09-12 00:59:20 +0000 | [diff] [blame] | 497 | /// ConstructAttributeList - Get the LLVM attributes and calling convention to |
| 498 | /// use for a particular function type. |
| 499 | /// |
| 500 | /// \param Info - The function type information. |
| 501 | /// \param TargetDecl - The decl these attributes are being constructed |
| 502 | /// for. If supplied the attributes applied to this decl may contribute to the |
| 503 | /// function attributes and calling convention. |
| 504 | /// \param PAL [out] - On return, the attribute list to use. |
| 505 | /// \param CallingConv [out] - On return, the LLVM calling convention to use. |
Daniel Dunbar | 88b5396 | 2009-02-02 22:03:45 +0000 | [diff] [blame] | 506 | void ConstructAttributeList(const CGFunctionInfo &Info, |
| 507 | const Decl *TargetDecl, |
Daniel Dunbar | ca6408c | 2009-09-12 00:59:20 +0000 | [diff] [blame] | 508 | AttributeListType &PAL, |
| 509 | unsigned &CallingConv); |
Daniel Dunbar | b768807 | 2008-09-10 00:41:16 +0000 | [diff] [blame] | 510 | |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 511 | llvm::StringRef getMangledName(GlobalDecl GD); |
Peter Collingbourne | 1411047 | 2011-01-13 18:57:25 +0000 | [diff] [blame] | 512 | void getBlockMangledName(GlobalDecl GD, MangleBuffer &Buffer, |
| 513 | const BlockDecl *BD); |
Douglas Gregor | b6c8c8b | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 514 | |
| 515 | void EmitTentativeDefinition(const VarDecl *D); |
Mike Stump | f121677 | 2009-07-31 18:25:34 +0000 | [diff] [blame] | 516 | |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 517 | void EmitVTable(CXXRecordDecl *Class, bool DefinitionRequired); |
| 518 | |
John McCall | d46f985 | 2010-02-19 01:32:20 +0000 | [diff] [blame] | 519 | llvm::GlobalVariable::LinkageTypes |
| 520 | getFunctionLinkage(const FunctionDecl *FD); |
| 521 | |
John McCall | 8b24233 | 2010-05-25 04:30:21 +0000 | [diff] [blame] | 522 | void setFunctionLinkage(const FunctionDecl *FD, llvm::GlobalValue *V) { |
| 523 | V->setLinkage(getFunctionLinkage(FD)); |
| 524 | } |
| 525 | |
Anders Carlsson | 046c294 | 2010-04-17 20:15:18 +0000 | [diff] [blame] | 526 | /// getVTableLinkage - Return the appropriate linkage for the vtable, VTT, |
Douglas Gregor | 4b0f21c | 2010-01-06 20:27:16 +0000 | [diff] [blame] | 527 | /// and type information of the given class. |
Anders Carlsson | 3a717f7 | 2011-01-24 02:04:33 +0000 | [diff] [blame] | 528 | llvm::GlobalVariable::LinkageTypes getVTableLinkage(const CXXRecordDecl *RD); |
Ken Dyck | 687cc4a | 2010-01-26 13:48:07 +0000 | [diff] [blame] | 529 | |
| 530 | /// GetTargetTypeStoreSize - Return the store size, in character units, of |
| 531 | /// the given LLVM type. |
| 532 | CharUnits GetTargetTypeStoreSize(const llvm::Type *Ty) const; |
Fariborz Jahanian | 354e712 | 2010-10-27 16:21:54 +0000 | [diff] [blame] | 533 | |
| 534 | /// GetLLVMLinkageVarDefinition - Returns LLVM linkage for a global |
| 535 | /// variable. |
| 536 | llvm::GlobalValue::LinkageTypes |
| 537 | GetLLVMLinkageVarDefinition(const VarDecl *D, |
| 538 | llvm::GlobalVariable *GV); |
| 539 | |
Anders Carlsson | 046c294 | 2010-04-17 20:15:18 +0000 | [diff] [blame] | 540 | std::vector<const CXXRecordDecl*> DeferredVTables; |
Rafael Espindola | bbf58bb | 2010-03-10 02:19:29 +0000 | [diff] [blame] | 541 | |
Chris Lattner | 9cd4fe4 | 2007-12-02 07:09:19 +0000 | [diff] [blame] | 542 | private: |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 543 | llvm::GlobalValue *GetGlobalValue(llvm::StringRef Ref); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 544 | |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 545 | llvm::Constant *GetOrCreateLLVMFunction(llvm::StringRef MangledName, |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 546 | const llvm::Type *Ty, |
Anders Carlsson | 1faa89f | 2011-02-05 04:35:53 +0000 | [diff] [blame] | 547 | GlobalDecl D, |
| 548 | bool ForVTable); |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 549 | llvm::Constant *GetOrCreateLLVMGlobal(llvm::StringRef MangledName, |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 550 | const llvm::PointerType *PTy, |
Rafael Espindola | c532b50 | 2011-01-18 21:07:57 +0000 | [diff] [blame] | 551 | const VarDecl *D, |
| 552 | bool UnnamedAddr = false); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 553 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 554 | /// SetCommonAttributes - Set attributes which are common to any |
| 555 | /// form of a global definition (alias, Objective-C method, |
| 556 | /// function, global variable). |
Daniel Dunbar | 7dbd819 | 2009-04-14 07:08:30 +0000 | [diff] [blame] | 557 | /// |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 558 | /// NOTE: This should only be called for definitions. |
| 559 | void SetCommonAttributes(const Decl *D, llvm::GlobalValue *GV); |
Daniel Dunbar | f80519b | 2008-09-04 23:41:35 +0000 | [diff] [blame] | 560 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 561 | /// SetFunctionDefinitionAttributes - Set attributes for a global definition. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 562 | void SetFunctionDefinitionAttributes(const FunctionDecl *D, |
Eli Friedman | c6c14d1 | 2009-05-26 01:22:57 +0000 | [diff] [blame] | 563 | llvm::GlobalValue *GV); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 564 | |
Daniel Dunbar | 7dbd819 | 2009-04-14 07:08:30 +0000 | [diff] [blame] | 565 | /// SetFunctionAttributes - Set function attributes for a function |
| 566 | /// declaration. |
Anders Carlsson | b2bcf1c | 2010-02-06 02:44:09 +0000 | [diff] [blame] | 567 | void SetFunctionAttributes(GlobalDecl GD, |
Eli Friedman | c6c14d1 | 2009-05-26 01:22:57 +0000 | [diff] [blame] | 568 | llvm::Function *F, |
| 569 | bool IsIncompleteFunction); |
Nuno Lopes | d4cbda6 | 2008-06-08 15:45:52 +0000 | [diff] [blame] | 570 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 571 | /// EmitGlobal - Emit code for a singal global function or var decl. Forward |
| 572 | /// declarations are emitted lazily. |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 573 | void EmitGlobal(GlobalDecl D); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 574 | |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 575 | void EmitGlobalDefinition(GlobalDecl D); |
Daniel Dunbar | d5d3180 | 2009-02-19 07:15:39 +0000 | [diff] [blame] | 576 | |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 577 | void EmitGlobalFunctionDefinition(GlobalDecl GD); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 578 | void EmitGlobalVarDefinition(const VarDecl *D); |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 579 | void EmitAliasDefinition(GlobalDecl GD); |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 580 | void EmitObjCPropertyImplementations(const ObjCImplementationDecl *D); |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 581 | void EmitObjCIvarInitializations(ObjCImplementationDecl *D); |
Fariborz Jahanian | 354e712 | 2010-10-27 16:21:54 +0000 | [diff] [blame] | 582 | |
Anders Carlsson | 95d4e5d | 2009-04-15 15:55:24 +0000 | [diff] [blame] | 583 | // C++ related functions. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 584 | |
John McCall | d46f985 | 2010-02-19 01:32:20 +0000 | [diff] [blame] | 585 | bool TryEmitDefinitionAsAlias(GlobalDecl Alias, GlobalDecl Target); |
John McCall | c0bf462 | 2010-02-23 00:48:20 +0000 | [diff] [blame] | 586 | bool TryEmitBaseDestructorAsAlias(const CXXDestructorDecl *D); |
John McCall | d46f985 | 2010-02-19 01:32:20 +0000 | [diff] [blame] | 587 | |
Anders Carlsson | 984e068 | 2009-04-01 00:58:25 +0000 | [diff] [blame] | 588 | void EmitNamespace(const NamespaceDecl *D); |
Anders Carlsson | 91e20dd | 2009-04-02 05:55:18 +0000 | [diff] [blame] | 589 | void EmitLinkageSpec(const LinkageSpecDecl *D); |
Anders Carlsson | 95d4e5d | 2009-04-15 15:55:24 +0000 | [diff] [blame] | 590 | |
| 591 | /// EmitCXXConstructors - Emit constructors (base, complete) from a |
| 592 | /// C++ constructor Decl. |
| 593 | void EmitCXXConstructors(const CXXConstructorDecl *D); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 594 | |
Anders Carlsson | 95d4e5d | 2009-04-15 15:55:24 +0000 | [diff] [blame] | 595 | /// EmitCXXConstructor - Emit a single constructor with the given type from |
| 596 | /// a C++ constructor Decl. |
| 597 | void EmitCXXConstructor(const CXXConstructorDecl *D, CXXCtorType Type); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 598 | |
| 599 | /// EmitCXXDestructors - Emit destructors (base, complete) from a |
Anders Carlsson | 27ae536 | 2009-04-17 01:58:57 +0000 | [diff] [blame] | 600 | /// C++ destructor Decl. |
| 601 | void EmitCXXDestructors(const CXXDestructorDecl *D); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 602 | |
Anders Carlsson | 27ae536 | 2009-04-17 01:58:57 +0000 | [diff] [blame] | 603 | /// EmitCXXDestructor - Emit a single destructor with the given type from |
| 604 | /// a C++ destructor Decl. |
| 605 | void EmitCXXDestructor(const CXXDestructorDecl *D, CXXDtorType Type); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 606 | |
Daniel Dunbar | efb0fa9 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 607 | /// EmitCXXGlobalInitFunc - Emit the function that initializes C++ globals. |
Anders Carlsson | 89ed31d | 2009-08-08 23:24:23 +0000 | [diff] [blame] | 608 | void EmitCXXGlobalInitFunc(); |
Eli Friedman | 6c6bda3 | 2010-01-08 00:50:11 +0000 | [diff] [blame] | 609 | |
Daniel Dunbar | efb0fa9 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 610 | /// EmitCXXGlobalDtorFunc - Emit the function that destroys C++ globals. |
| 611 | void EmitCXXGlobalDtorFunc(); |
| 612 | |
John McCall | 3030eb8 | 2010-11-06 09:44:32 +0000 | [diff] [blame] | 613 | void EmitCXXGlobalVarDeclInitFunc(const VarDecl *D, |
| 614 | llvm::GlobalVariable *Addr); |
Eli Friedman | 6c6bda3 | 2010-01-08 00:50:11 +0000 | [diff] [blame] | 615 | |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 616 | // FIXME: Hardcoding priority here is gross. |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 617 | void AddGlobalCtor(llvm::Function *Ctor, int Priority=65535); |
| 618 | void AddGlobalDtor(llvm::Function *Dtor, int Priority=65535); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 619 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 620 | /// EmitCtorList - Generates a global array of functions and priorities using |
| 621 | /// the given list and name. This array will have appending linkage and is |
| 622 | /// suitable for use as a LLVM constructor or destructor array. |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 623 | void EmitCtorList(const CtorList &Fns, const char *GlobalName); |
| 624 | |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 625 | void EmitAnnotations(void); |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 626 | |
Rafael Espindola | d1a5c31 | 2010-03-27 02:52:14 +0000 | [diff] [blame] | 627 | /// EmitFundamentalRTTIDescriptor - Emit the RTTI descriptors for the |
| 628 | /// given type. |
| 629 | void EmitFundamentalRTTIDescriptor(QualType Type); |
| 630 | |
| 631 | /// EmitFundamentalRTTIDescriptors - Emit the RTTI descriptors for the |
| 632 | /// builtin types. |
| 633 | void EmitFundamentalRTTIDescriptors(); |
| 634 | |
Daniel Dunbar | 4274581 | 2009-03-09 23:53:08 +0000 | [diff] [blame] | 635 | /// EmitDeferred - Emit any needed decls for which code generation |
| 636 | /// was deferred. |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 637 | void EmitDeferred(void); |
| 638 | |
Daniel Dunbar | 4274581 | 2009-03-09 23:53:08 +0000 | [diff] [blame] | 639 | /// EmitLLVMUsed - Emit the llvm.used metadata used to force |
| 640 | /// references to global which may otherwise be optimized out. |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 641 | void EmitLLVMUsed(void); |
Daniel Dunbar | f1968f2 | 2008-10-01 00:49:24 +0000 | [diff] [blame] | 642 | |
John McCall | 744016d | 2010-07-06 23:57:41 +0000 | [diff] [blame] | 643 | void EmitDeclMetadata(); |
| 644 | |
Daniel Dunbar | 4274581 | 2009-03-09 23:53:08 +0000 | [diff] [blame] | 645 | /// MayDeferGeneration - Determine if the given decl can be emitted |
| 646 | /// lazily; this is only relevant for definitions. The given decl |
| 647 | /// must be either a function or var decl. |
Daniel Dunbar | 73241df | 2009-02-13 21:18:01 +0000 | [diff] [blame] | 648 | bool MayDeferGeneration(const ValueDecl *D); |
John McCall | b259383 | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 649 | |
| 650 | /// SimplifyPersonality - Check whether we can use a "simpler", more |
| 651 | /// core exceptions personality function. |
| 652 | void SimplifyPersonality(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 653 | }; |
| 654 | } // end namespace CodeGen |
| 655 | } // end namespace clang |
| 656 | |
| 657 | #endif |