1 //===--- CodeGenModule.cpp - Emit LLVM Code from ASTs for a Module --------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This coordinates the per-module state used while generating code.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "CGDebugInfo.h"
15 #include "CodeGenModule.h"
16 #include "CodeGenFunction.h"
17 #include "clang/AST/ASTContext.h"
18 #include "clang/AST/Decl.h"
19 #include "clang/Basic/Diagnostic.h"
20 #include "clang/Basic/LangOptions.h"
21 #include "clang/Basic/SourceManager.h"
22 #include "clang/Basic/TargetInfo.h"
23 #include "llvm/CallingConv.h"
24 #include "llvm/Constants.h"
25 #include "llvm/DerivedTypes.h"
26 #include "llvm/Module.h"
27 #include "llvm/Intrinsics.h"
28 #include "llvm/Target/TargetData.h"
29 #include "llvm/Analysis/Verifier.h"
30 #include <algorithm>
31 using namespace clang;
32 using namespace CodeGen;
33 
34 
35 CodeGenModule::CodeGenModule(ASTContext &C, const LangOptions &LO,
36                              llvm::Module &M, const llvm::TargetData &TD,
37                              Diagnostic &diags, bool GenerateDebugInfo)
38   : Context(C), Features(LO), TheModule(M), TheTargetData(TD), Diags(diags),
39     Types(C, M, TD), MemCpyFn(0), MemMoveFn(0), MemSetFn(0),
40     CFConstantStringClassRef(0) {
41   //TODO: Make this selectable at runtime
42   Runtime = CreateObjCRuntime(*this);
43 
44   // If debug info generation is enabled, create the CGDebugInfo object.
45   DebugInfo = GenerateDebugInfo ? new CGDebugInfo(this) : 0;
46 }
47 
48 CodeGenModule::~CodeGenModule() {
49   delete Runtime;
50   delete DebugInfo;
51 }
52 
53 void CodeGenModule::Release() {
54   EmitStatics();
55   llvm::Function *ObjCInitFunction = Runtime->ModuleInitFunction();
56   if (ObjCInitFunction)
57     AddGlobalCtor(ObjCInitFunction);
58   EmitCtorList(GlobalCtors, "llvm.global_ctors");
59   EmitCtorList(GlobalDtors, "llvm.global_dtors");
60   EmitAnnotations();
61   // Run the verifier to check that the generated code is consistent.
62   assert(!verifyModule(TheModule));
63 }
64 
65 /// WarnUnsupported - Print out a warning that codegen doesn't support the
66 /// specified stmt yet.
67 void CodeGenModule::WarnUnsupported(const Stmt *S, const char *Type) {
68   unsigned DiagID = getDiags().getCustomDiagID(Diagnostic::Warning,
69                                                "cannot codegen this %0 yet");
70   SourceRange Range = S->getSourceRange();
71   std::string Msg = Type;
72   getDiags().Report(Context.getFullLoc(S->getLocStart()), DiagID,
73                     &Msg, 1, &Range, 1);
74 }
75 
76 /// WarnUnsupported - Print out a warning that codegen doesn't support the
77 /// specified decl yet.
78 void CodeGenModule::WarnUnsupported(const Decl *D, const char *Type) {
79   unsigned DiagID = getDiags().getCustomDiagID(Diagnostic::Warning,
80                                                "cannot codegen this %0 yet");
81   std::string Msg = Type;
82   getDiags().Report(Context.getFullLoc(D->getLocation()), DiagID,
83                     &Msg, 1);
84 }
85 
86 /// setVisibility - Set the visibility for the given LLVM GlobalValue
87 /// according to the given clang AST visibility value.
88 void CodeGenModule::setVisibility(llvm::GlobalValue *GV,
89                                   VisibilityAttr::VisibilityTypes Vis) {
90   switch (Vis) {
91   default: assert(0 && "Unknown visibility!");
92   case VisibilityAttr::DefaultVisibility:
93     GV->setVisibility(llvm::GlobalValue::DefaultVisibility);
94     break;
95   case VisibilityAttr::HiddenVisibility:
96     GV->setVisibility(llvm::GlobalValue::HiddenVisibility);
97     break;
98   case VisibilityAttr::ProtectedVisibility:
99     GV->setVisibility(llvm::GlobalValue::ProtectedVisibility);
100     break;
101   }
102 }
103 
104 /// AddGlobalCtor - Add a function to the list that will be called before
105 /// main() runs.
106 void CodeGenModule::AddGlobalCtor(llvm::Function * Ctor, int Priority) {
107   // TODO: Type coercion of void()* types.
108   GlobalCtors.push_back(std::make_pair(Ctor, Priority));
109 }
110 
111 /// AddGlobalDtor - Add a function to the list that will be called
112 /// when the module is unloaded.
113 void CodeGenModule::AddGlobalDtor(llvm::Function * Dtor, int Priority) {
114   // TODO: Type coercion of void()* types.
115   GlobalDtors.push_back(std::make_pair(Dtor, Priority));
116 }
117 
118 void CodeGenModule::EmitCtorList(const CtorList &Fns, const char *GlobalName) {
119   // Ctor function type is void()*.
120   llvm::FunctionType* CtorFTy =
121     llvm::FunctionType::get(llvm::Type::VoidTy,
122                             std::vector<const llvm::Type*>(),
123                             false);
124   llvm::Type *CtorPFTy = llvm::PointerType::getUnqual(CtorFTy);
125 
126   // Get the type of a ctor entry, { i32, void ()* }.
127   llvm::StructType* CtorStructTy =
128     llvm::StructType::get(llvm::Type::Int32Ty,
129                           llvm::PointerType::getUnqual(CtorFTy), NULL);
130 
131   // Construct the constructor and destructor arrays.
132   std::vector<llvm::Constant*> Ctors;
133   for (CtorList::const_iterator I = Fns.begin(), E = Fns.end(); I != E; ++I) {
134     std::vector<llvm::Constant*> S;
135     S.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, I->second, false));
136     S.push_back(llvm::ConstantExpr::getBitCast(I->first, CtorPFTy));
137     Ctors.push_back(llvm::ConstantStruct::get(CtorStructTy, S));
138   }
139 
140   if (!Ctors.empty()) {
141     llvm::ArrayType *AT = llvm::ArrayType::get(CtorStructTy, Ctors.size());
142     new llvm::GlobalVariable(AT, false,
143                              llvm::GlobalValue::AppendingLinkage,
144                              llvm::ConstantArray::get(AT, Ctors),
145                              GlobalName,
146                              &TheModule);
147   }
148 }
149 
150 void CodeGenModule::EmitAnnotations() {
151   if (Annotations.empty())
152     return;
153 
154   // Create a new global variable for the ConstantStruct in the Module.
155   llvm::Constant *Array =
156   llvm::ConstantArray::get(llvm::ArrayType::get(Annotations[0]->getType(),
157                                                 Annotations.size()),
158                            Annotations);
159   llvm::GlobalValue *gv =
160   new llvm::GlobalVariable(Array->getType(), false,
161                            llvm::GlobalValue::AppendingLinkage, Array,
162                            "llvm.global.annotations", &TheModule);
163   gv->setSection("llvm.metadata");
164 }
165 
166 bool hasAggregateLLVMType(QualType T) {
167   return !T->isRealType() && !T->isPointerLikeType() &&
168          !T->isVoidType() && !T->isVectorType() && !T->isFunctionType();
169 }
170 
171 void CodeGenModule::SetGlobalValueAttributes(const FunctionDecl *FD,
172                                              llvm::GlobalValue *GV) {
173   // TODO: Set up linkage and many other things.  Note, this is a simple
174   // approximation of what we really want.
175   if (FD->getStorageClass() == FunctionDecl::Static)
176     GV->setLinkage(llvm::Function::InternalLinkage);
177   else if (FD->getAttr<DLLImportAttr>())
178     GV->setLinkage(llvm::Function::DLLImportLinkage);
179   else if (FD->getAttr<DLLExportAttr>())
180     GV->setLinkage(llvm::Function::DLLExportLinkage);
181   else if (FD->getAttr<WeakAttr>() || FD->isInline())
182     GV->setLinkage(llvm::Function::WeakLinkage);
183 
184   if (const VisibilityAttr *attr = FD->getAttr<VisibilityAttr>())
185     CodeGenModule::setVisibility(GV, attr->getVisibility());
186   // FIXME: else handle -fvisibility
187 }
188 
189 void CodeGenModule::SetFunctionAttributes(const FunctionDecl *FD,
190                                           llvm::Function *F,
191                                           const llvm::FunctionType *FTy) {
192   unsigned FuncAttrs = 0;
193   if (FD->getAttr<NoThrowAttr>())
194     FuncAttrs |= llvm::ParamAttr::NoUnwind;
195   if (FD->getAttr<NoReturnAttr>())
196     FuncAttrs |= llvm::ParamAttr::NoReturn;
197 
198   llvm::SmallVector<llvm::ParamAttrsWithIndex, 8> ParamAttrList;
199   if (FuncAttrs)
200     ParamAttrList.push_back(llvm::ParamAttrsWithIndex::get(0, FuncAttrs));
201   // Note that there is parallel code in CodeGenFunction::EmitCallExpr
202   bool AggregateReturn = hasAggregateLLVMType(FD->getResultType());
203   if (AggregateReturn)
204     ParamAttrList.push_back(
205         llvm::ParamAttrsWithIndex::get(1, llvm::ParamAttr::StructRet));
206   unsigned increment = AggregateReturn ? 2 : 1;
207   const FunctionTypeProto* FTP = dyn_cast<FunctionTypeProto>(FD->getType());
208   if (FTP) {
209     for (unsigned i = 0; i < FTP->getNumArgs(); i++) {
210       QualType ParamType = FTP->getArgType(i);
211       unsigned ParamAttrs = 0;
212       if (ParamType->isRecordType())
213         ParamAttrs |= llvm::ParamAttr::ByVal;
214       if (ParamType->isSignedIntegerType() &&
215           ParamType->isPromotableIntegerType())
216         ParamAttrs |= llvm::ParamAttr::SExt;
217       if (ParamType->isUnsignedIntegerType() &&
218           ParamType->isPromotableIntegerType())
219         ParamAttrs |= llvm::ParamAttr::ZExt;
220       if (ParamAttrs)
221         ParamAttrList.push_back(llvm::ParamAttrsWithIndex::get(i + increment,
222                                                                ParamAttrs));
223     }
224   }
225 
226   F->setParamAttrs(llvm::PAListPtr::get(ParamAttrList.begin(),
227                                         ParamAttrList.size()));
228 
229   // Set the appropriate calling convention for the Function.
230   if (FD->getAttr<FastCallAttr>())
231     F->setCallingConv(llvm::CallingConv::Fast);
232 
233   SetGlobalValueAttributes(FD, F);
234 }
235 
236 void CodeGenModule::EmitObjCMethod(const ObjCMethodDecl *OMD) {
237   // If this is not a prototype, emit the body.
238   if (OMD->getBody())
239     CodeGenFunction(*this).GenerateObjCMethod(OMD);
240 }
241 void CodeGenModule::EmitObjCProtocolImplementation(const ObjCProtocolDecl *PD){
242   llvm::SmallVector<std::string, 16> Protocols;
243   for (ObjCProtocolDecl::protocol_iterator PI = PD->protocol_begin(),
244        E = PD->protocol_end(); PI != E; ++PI)
245     Protocols.push_back((*PI)->getName());
246   llvm::SmallVector<llvm::Constant*, 16> InstanceMethodNames;
247   llvm::SmallVector<llvm::Constant*, 16> InstanceMethodTypes;
248   for (ObjCProtocolDecl::instmeth_iterator iter = PD->instmeth_begin(),
249        E = PD->instmeth_end(); iter != E; iter++) {
250     std::string TypeStr;
251     Context.getObjCEncodingForMethodDecl(*iter, TypeStr);
252     InstanceMethodNames.push_back(
253         GetAddrOfConstantString((*iter)->getSelector().getName()));
254     InstanceMethodTypes.push_back(GetAddrOfConstantString(TypeStr));
255   }
256   // Collect information about class methods:
257   llvm::SmallVector<llvm::Constant*, 16> ClassMethodNames;
258   llvm::SmallVector<llvm::Constant*, 16> ClassMethodTypes;
259   for (ObjCProtocolDecl::classmeth_iterator iter = PD->classmeth_begin(),
260       endIter = PD->classmeth_end() ; iter != endIter ; iter++) {
261     std::string TypeStr;
262     Context.getObjCEncodingForMethodDecl((*iter),TypeStr);
263     ClassMethodNames.push_back(
264         GetAddrOfConstantString((*iter)->getSelector().getName()));
265     ClassMethodTypes.push_back(GetAddrOfConstantString(TypeStr));
266   }
267   Runtime->GenerateProtocol(PD->getName(), Protocols, InstanceMethodNames,
268       InstanceMethodTypes, ClassMethodNames, ClassMethodTypes);
269 }
270 
271 void CodeGenModule::EmitObjCCategoryImpl(const ObjCCategoryImplDecl *OCD) {
272 
273   // Collect information about instance methods
274   llvm::SmallVector<Selector, 16> InstanceMethodSels;
275   llvm::SmallVector<llvm::Constant*, 16> InstanceMethodTypes;
276   for (ObjCCategoryDecl::instmeth_iterator iter = OCD->instmeth_begin(),
277       endIter = OCD->instmeth_end() ; iter != endIter ; iter++) {
278     InstanceMethodSels.push_back((*iter)->getSelector());
279     std::string TypeStr;
280     Context.getObjCEncodingForMethodDecl(*iter,TypeStr);
281     InstanceMethodTypes.push_back(GetAddrOfConstantString(TypeStr));
282   }
283 
284   // Collect information about class methods
285   llvm::SmallVector<Selector, 16> ClassMethodSels;
286   llvm::SmallVector<llvm::Constant*, 16> ClassMethodTypes;
287   for (ObjCCategoryDecl::classmeth_iterator iter = OCD->classmeth_begin(),
288       endIter = OCD->classmeth_end() ; iter != endIter ; iter++) {
289     ClassMethodSels.push_back((*iter)->getSelector());
290     std::string TypeStr;
291     Context.getObjCEncodingForMethodDecl(*iter,TypeStr);
292     ClassMethodTypes.push_back(GetAddrOfConstantString(TypeStr));
293   }
294 
295   // Collect the names of referenced protocols
296   llvm::SmallVector<std::string, 16> Protocols;
297   const ObjCInterfaceDecl *ClassDecl = OCD->getClassInterface();
298   const ObjCList<ObjCProtocolDecl> &Protos =ClassDecl->getReferencedProtocols();
299   for (ObjCList<ObjCProtocolDecl>::iterator I = Protos.begin(),
300        E = Protos.end(); I != E; ++I)
301     Protocols.push_back((*I)->getName());
302 
303   // Generate the category
304   Runtime->GenerateCategory(OCD->getClassInterface()->getName(),
305       OCD->getName(), InstanceMethodSels, InstanceMethodTypes,
306       ClassMethodSels, ClassMethodTypes, Protocols);
307 }
308 
309 void CodeGenModule::EmitObjCClassImplementation(
310     const ObjCImplementationDecl *OID) {
311   // Get the superclass name.
312   const ObjCInterfaceDecl * SCDecl = OID->getClassInterface()->getSuperClass();
313   const char * SCName = NULL;
314   if (SCDecl) {
315     SCName = SCDecl->getName();
316   }
317 
318   // Get the class name
319   ObjCInterfaceDecl * ClassDecl = (ObjCInterfaceDecl*)OID->getClassInterface();
320   const char * ClassName = ClassDecl->getName();
321 
322   // Get the size of instances.  For runtimes that support late-bound instances
323   // this should probably be something different (size just of instance
324   // varaibles in this class, not superclasses?).
325   int instanceSize = 0;
326   const llvm::Type *ObjTy;
327   if (!Runtime->LateBoundIVars()) {
328     ObjTy = getTypes().ConvertType(Context.getObjCInterfaceType(ClassDecl));
329     instanceSize = TheTargetData.getABITypeSize(ObjTy);
330   }
331 
332   // Collect information about instance variables.
333   llvm::SmallVector<llvm::Constant*, 16> IvarNames;
334   llvm::SmallVector<llvm::Constant*, 16> IvarTypes;
335   llvm::SmallVector<llvm::Constant*, 16> IvarOffsets;
336   const llvm::StructLayout *Layout =
337     TheTargetData.getStructLayout(cast<llvm::StructType>(ObjTy));
338   ObjTy = llvm::PointerType::getUnqual(ObjTy);
339   for (ObjCInterfaceDecl::ivar_iterator iter = ClassDecl->ivar_begin(),
340       endIter = ClassDecl->ivar_end() ; iter != endIter ; iter++) {
341       // Store the name
342       IvarNames.push_back(GetAddrOfConstantString((*iter)->getName()));
343       // Get the type encoding for this ivar
344       std::string TypeStr;
345       llvm::SmallVector<const RecordType *, 8> EncodingRecordTypes;
346       Context.getObjCEncodingForType((*iter)->getType(), TypeStr,
347                                      EncodingRecordTypes);
348       IvarTypes.push_back(GetAddrOfConstantString(TypeStr));
349       // Get the offset
350       int offset =
351         (int)Layout->getElementOffset(getTypes().getLLVMFieldNo(*iter));
352       IvarOffsets.push_back(
353           llvm::ConstantInt::get(llvm::Type::Int32Ty, offset));
354   }
355 
356   // Collect information about instance methods
357   llvm::SmallVector<Selector, 16> InstanceMethodSels;
358   llvm::SmallVector<llvm::Constant*, 16> InstanceMethodTypes;
359   for (ObjCImplementationDecl::instmeth_iterator iter = OID->instmeth_begin(),
360       endIter = OID->instmeth_end() ; iter != endIter ; iter++) {
361     InstanceMethodSels.push_back((*iter)->getSelector());
362     std::string TypeStr;
363     Context.getObjCEncodingForMethodDecl((*iter),TypeStr);
364     InstanceMethodTypes.push_back(GetAddrOfConstantString(TypeStr));
365   }
366 
367   // Collect information about class methods
368   llvm::SmallVector<Selector, 16> ClassMethodSels;
369   llvm::SmallVector<llvm::Constant*, 16> ClassMethodTypes;
370   for (ObjCImplementationDecl::classmeth_iterator iter = OID->classmeth_begin(),
371       endIter = OID->classmeth_end() ; iter != endIter ; iter++) {
372     ClassMethodSels.push_back((*iter)->getSelector());
373     std::string TypeStr;
374     Context.getObjCEncodingForMethodDecl((*iter),TypeStr);
375     ClassMethodTypes.push_back(GetAddrOfConstantString(TypeStr));
376   }
377   // Collect the names of referenced protocols
378   llvm::SmallVector<std::string, 16> Protocols;
379   const ObjCList<ObjCProtocolDecl> &Protos =ClassDecl->getReferencedProtocols();
380   for (ObjCList<ObjCProtocolDecl>::iterator I = Protos.begin(),
381        E = Protos.end(); I != E; ++I)
382     Protocols.push_back((*I)->getName());
383 
384   // Generate the category
385   Runtime->GenerateClass(ClassName, SCName, instanceSize, IvarNames, IvarTypes,
386                          IvarOffsets, InstanceMethodSels, InstanceMethodTypes,
387                          ClassMethodSels, ClassMethodTypes, Protocols);
388 }
389 
390 void CodeGenModule::EmitStatics() {
391   // Emit code for each used static decl encountered.  Since a previously unused
392   // static decl may become used during the generation of code for a static
393   // function, iterate until no changes are made.
394   bool Changed;
395   do {
396     Changed = false;
397     for (unsigned i = 0, e = StaticDecls.size(); i != e; ++i) {
398       const ValueDecl *D = StaticDecls[i];
399 
400       // Check if we have used a decl with the same name
401       // FIXME: The AST should have some sort of aggregate decls or
402       // global symbol map.
403       if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
404         if (!getModule().getFunction(FD->getName()))
405           continue;
406       } else {
407         if (!getModule().getNamedGlobal(cast<VarDecl>(D)->getName()))
408           continue;
409       }
410 
411       // Emit the definition.
412       EmitGlobalDefinition(D);
413 
414       // Erase the used decl from the list.
415       StaticDecls[i] = StaticDecls.back();
416       StaticDecls.pop_back();
417       --i;
418       --e;
419 
420       // Remember that we made a change.
421       Changed = true;
422     }
423   } while (Changed);
424 }
425 
426 /// EmitAnnotateAttr - Generate the llvm::ConstantStruct which contains the
427 /// annotation information for a given GlobalValue.  The annotation struct is
428 /// {i8 *, i8 *, i8 *, i32}.  The first field is a constant expression, the
429 /// GlobalValue being annotated.  The second field is the constant string
430 /// created from the AnnotateAttr's annotation.  The third field is a constant
431 /// string containing the name of the translation unit.  The fourth field is
432 /// the line number in the file of the annotated value declaration.
433 ///
434 /// FIXME: this does not unique the annotation string constants, as llvm-gcc
435 ///        appears to.
436 ///
437 llvm::Constant *CodeGenModule::EmitAnnotateAttr(llvm::GlobalValue *GV,
438                                                 const AnnotateAttr *AA,
439                                                 unsigned LineNo) {
440   llvm::Module *M = &getModule();
441 
442   // get [N x i8] constants for the annotation string, and the filename string
443   // which are the 2nd and 3rd elements of the global annotation structure.
444   const llvm::Type *SBP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
445   llvm::Constant *anno = llvm::ConstantArray::get(AA->getAnnotation(), true);
446   llvm::Constant *unit = llvm::ConstantArray::get(M->getModuleIdentifier(),
447                                                   true);
448 
449   // Get the two global values corresponding to the ConstantArrays we just
450   // created to hold the bytes of the strings.
451   llvm::GlobalValue *annoGV =
452   new llvm::GlobalVariable(anno->getType(), false,
453                            llvm::GlobalValue::InternalLinkage, anno,
454                            GV->getName() + ".str", M);
455   // translation unit name string, emitted into the llvm.metadata section.
456   llvm::GlobalValue *unitGV =
457   new llvm::GlobalVariable(unit->getType(), false,
458                            llvm::GlobalValue::InternalLinkage, unit, ".str", M);
459 
460   // Create the ConstantStruct that is the global annotion.
461   llvm::Constant *Fields[4] = {
462     llvm::ConstantExpr::getBitCast(GV, SBP),
463     llvm::ConstantExpr::getBitCast(annoGV, SBP),
464     llvm::ConstantExpr::getBitCast(unitGV, SBP),
465     llvm::ConstantInt::get(llvm::Type::Int32Ty, LineNo)
466   };
467   return llvm::ConstantStruct::get(Fields, 4, false);
468 }
469 
470 void CodeGenModule::EmitGlobal(const ValueDecl *Global) {
471   bool isDef, isStatic;
472 
473   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(Global)) {
474     isDef = (FD->isThisDeclarationADefinition() ||
475              FD->getAttr<AliasAttr>());
476     isStatic = FD->getStorageClass() == FunctionDecl::Static;
477   } else if (const VarDecl *VD = cast<VarDecl>(Global)) {
478     assert(VD->isFileVarDecl() && "Cannot emit local var decl as global.");
479 
480     isDef = !(VD->getStorageClass() == VarDecl::Extern && VD->getInit() == 0);
481     isStatic = VD->getStorageClass() == VarDecl::Static;
482   } else {
483     assert(0 && "Invalid argument to EmitGlobal");
484     return;
485   }
486 
487   // Forward declarations are emitted lazily on first use.
488   if (!isDef)
489     return;
490 
491   // If the global is a static, defer code generation until later so
492   // we can easily omit unused statics.
493   if (isStatic) {
494     StaticDecls.push_back(Global);
495     return;
496   }
497 
498   // Otherwise emit the definition.
499   EmitGlobalDefinition(Global);
500 }
501 
502 void CodeGenModule::EmitGlobalDefinition(const ValueDecl *D) {
503   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
504     EmitGlobalFunctionDefinition(FD);
505   } else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
506     EmitGlobalVarDefinition(VD);
507   } else {
508     assert(0 && "Invalid argument to EmitGlobalDefinition()");
509   }
510 }
511 
512  llvm::Constant *CodeGenModule::GetAddrOfGlobalVar(const VarDecl *D) {
513   assert(D->hasGlobalStorage() && "Not a global variable");
514 
515   QualType ASTTy = D->getType();
516   const llvm::Type *Ty = getTypes().ConvertTypeForMem(ASTTy);
517   const llvm::Type *PTy = llvm::PointerType::get(Ty, ASTTy.getAddressSpace());
518 
519   // Lookup the entry, lazily creating it if necessary.
520   llvm::GlobalValue *&Entry = GlobalDeclMap[D->getName()];
521   if (!Entry)
522     Entry = new llvm::GlobalVariable(Ty, false,
523                                      llvm::GlobalValue::ExternalLinkage,
524                                      0, D->getName(), &getModule(), 0,
525                                      ASTTy.getAddressSpace());
526 
527   // Make sure the result is of the correct type.
528   return llvm::ConstantExpr::getBitCast(Entry, PTy);
529 }
530 
531 void CodeGenModule::EmitGlobalVarDefinition(const VarDecl *D) {
532   llvm::Constant *Init = 0;
533   QualType ASTTy = D->getType();
534   const llvm::Type *VarTy = getTypes().ConvertTypeForMem(ASTTy);
535 
536   if (D->getInit() == 0) {
537     // This is a tentative definition; tentative definitions are
538     // implicitly initialized with { 0 }
539     const llvm::Type* InitTy;
540     if (ASTTy->isIncompleteArrayType()) {
541       // An incomplete array is normally [ TYPE x 0 ], but we need
542       // to fix it to [ TYPE x 1 ].
543       const llvm::ArrayType* ATy = cast<llvm::ArrayType>(VarTy);
544       InitTy = llvm::ArrayType::get(ATy->getElementType(), 1);
545     } else {
546       InitTy = VarTy;
547     }
548     Init = llvm::Constant::getNullValue(InitTy);
549   } else {
550     Init = EmitConstantExpr(D->getInit());
551   }
552   const llvm::Type* InitType = Init->getType();
553 
554   llvm::GlobalValue *&Entry = GlobalDeclMap[D->getName()];
555   llvm::GlobalVariable *GV = cast_or_null<llvm::GlobalVariable>(Entry);
556 
557   if (!GV) {
558     GV = new llvm::GlobalVariable(InitType, false,
559                                   llvm::GlobalValue::ExternalLinkage,
560                                   0, D->getName(), &getModule(), 0,
561                                   ASTTy.getAddressSpace());
562   } else if (GV->getType() !=
563              llvm::PointerType::get(InitType, ASTTy.getAddressSpace())) {
564     // We have a definition after a prototype with the wrong type.
565     // We must make a new GlobalVariable* and update everything that used OldGV
566     // (a declaration or tentative definition) with the new GlobalVariable*
567     // (which will be a definition).
568     //
569     // This happens if there is a prototype for a global (e.g. "extern int x[];")
570     // and then a definition of a different type (e.g. "int x[10];"). This also
571     // happens when an initializer has a different type from the type of the
572     // global (this happens with unions).
573     //
574     // FIXME: This also ends up happening if there's a definition followed by
575     // a tentative definition!  (Although Sema rejects that construct
576     // at the moment.)
577 
578     // Save the old global
579     llvm::GlobalVariable *OldGV = GV;
580 
581     // Make a new global with the correct type
582     GV = new llvm::GlobalVariable(InitType, false,
583                                   llvm::GlobalValue::ExternalLinkage,
584                                   0, D->getName(), &getModule(), 0,
585                                   ASTTy.getAddressSpace());
586     // Steal the name of the old global
587     GV->takeName(OldGV);
588 
589     // Replace all uses of the old global with the new global
590     llvm::Constant *NewPtrForOldDecl =
591         llvm::ConstantExpr::getBitCast(GV, OldGV->getType());
592     OldGV->replaceAllUsesWith(NewPtrForOldDecl);
593 
594     // Erase the old global, since it is no longer used.
595     OldGV->eraseFromParent();
596   }
597 
598   Entry = GV;
599 
600   if (const AnnotateAttr *AA = D->getAttr<AnnotateAttr>()) {
601     SourceManager &SM = Context.getSourceManager();
602     AddAnnotation(EmitAnnotateAttr(GV, AA,
603                                    SM.getLogicalLineNumber(D->getLocation())));
604   }
605 
606   GV->setInitializer(Init);
607 
608   // FIXME: This is silly; getTypeAlign should just work for incomplete arrays
609   unsigned Align;
610   if (const IncompleteArrayType* IAT =
611         Context.getAsIncompleteArrayType(D->getType()))
612     Align = Context.getTypeAlign(IAT->getElementType());
613   else
614     Align = Context.getTypeAlign(D->getType());
615   if (const AlignedAttr* AA = D->getAttr<AlignedAttr>()) {
616     Align = std::max(Align, AA->getAlignment());
617   }
618   GV->setAlignment(Align / 8);
619 
620   if (const VisibilityAttr *attr = D->getAttr<VisibilityAttr>())
621     setVisibility(GV, attr->getVisibility());
622   // FIXME: else handle -fvisibility
623 
624   // Set the llvm linkage type as appropriate.
625   if (D->getStorageClass() == VarDecl::Static)
626     GV->setLinkage(llvm::Function::InternalLinkage);
627   else if (D->getAttr<DLLImportAttr>())
628     GV->setLinkage(llvm::Function::DLLImportLinkage);
629   else if (D->getAttr<DLLExportAttr>())
630     GV->setLinkage(llvm::Function::DLLExportLinkage);
631   else if (D->getAttr<WeakAttr>())
632     GV->setLinkage(llvm::GlobalVariable::WeakLinkage);
633   else {
634     // FIXME: This isn't right.  This should handle common linkage and other
635     // stuff.
636     switch (D->getStorageClass()) {
637     case VarDecl::Static: assert(0 && "This case handled above");
638     case VarDecl::Auto:
639     case VarDecl::Register:
640       assert(0 && "Can't have auto or register globals");
641     case VarDecl::None:
642       if (!D->getInit())
643         GV->setLinkage(llvm::GlobalVariable::CommonLinkage);
644       break;
645     case VarDecl::Extern:
646     case VarDecl::PrivateExtern:
647       // todo: common
648       break;
649     }
650   }
651 
652   // Emit global variable debug information.
653   CGDebugInfo *DI = getDebugInfo();
654   if(DI) {
655     if(D->getLocation().isValid())
656       DI->setLocation(D->getLocation());
657     DI->EmitGlobalVariable(GV, D);
658   }
659 }
660 
661 llvm::GlobalValue *
662 CodeGenModule::EmitForwardFunctionDefinition(const FunctionDecl *D) {
663   // FIXME: param attributes for sext/zext etc.
664   if (const AliasAttr *AA = D->getAttr<AliasAttr>()) {
665     assert(!D->getBody() && "Unexpected alias attr on function with body.");
666 
667     const std::string& aliaseeName = AA->getAliasee();
668     llvm::Function *aliasee = getModule().getFunction(aliaseeName);
669     llvm::GlobalValue *alias = new llvm::GlobalAlias(aliasee->getType(),
670                                               llvm::Function::ExternalLinkage,
671                                                      D->getName(),
672                                                      aliasee,
673                                                      &getModule());
674     SetGlobalValueAttributes(D, alias);
675     return alias;
676   } else {
677     const llvm::Type *Ty = getTypes().ConvertType(D->getType());
678     const llvm::FunctionType *FTy = cast<llvm::FunctionType>(Ty);
679     llvm::Function *F = llvm::Function::Create(FTy,
680                                                llvm::Function::ExternalLinkage,
681                                                D->getName(), &getModule());
682 
683     SetFunctionAttributes(D, F, FTy);
684     return F;
685   }
686 }
687 
688 llvm::Constant *CodeGenModule::GetAddrOfFunction(const FunctionDecl *D) {
689   QualType ASTTy = D->getType();
690   const llvm::Type *Ty = getTypes().ConvertTypeForMem(ASTTy);
691   const llvm::Type *PTy = llvm::PointerType::get(Ty, ASTTy.getAddressSpace());
692 
693   // Lookup the entry, lazily creating it if necessary.
694   llvm::GlobalValue *&Entry = GlobalDeclMap[D->getName()];
695   if (!Entry)
696     Entry = EmitForwardFunctionDefinition(D);
697 
698   return llvm::ConstantExpr::getBitCast(Entry, PTy);
699 }
700 
701 void CodeGenModule::EmitGlobalFunctionDefinition(const FunctionDecl *D) {
702   llvm::GlobalValue *&Entry = GlobalDeclMap[D->getName()];
703   if (!Entry) {
704     Entry = EmitForwardFunctionDefinition(D);
705   } else {
706     // If the types mismatch then we have to rewrite the definition.
707     const llvm::Type *Ty = getTypes().ConvertType(D->getType());
708     if (Entry->getType() != llvm::PointerType::getUnqual(Ty)) {
709       // Otherwise, we have a definition after a prototype with the wrong type.
710       // F is the Function* for the one with the wrong type, we must make a new
711       // Function* and update everything that used F (a declaration) with the new
712       // Function* (which will be a definition).
713       //
714       // This happens if there is a prototype for a function (e.g. "int f()") and
715       // then a definition of a different type (e.g. "int f(int x)").  Start by
716       // making a new function of the correct type, RAUW, then steal the name.
717       llvm::GlobalValue *NewFn = EmitForwardFunctionDefinition(D);
718       NewFn->takeName(Entry);
719 
720       // Replace uses of F with the Function we will endow with a body.
721       llvm::Constant *NewPtrForOldDecl =
722         llvm::ConstantExpr::getBitCast(NewFn, Entry->getType());
723       Entry->replaceAllUsesWith(NewPtrForOldDecl);
724 
725       // Ok, delete the old function now, which is dead.
726       // FIXME: Add GlobalValue->eraseFromParent().
727       assert(Entry->isDeclaration() && "Shouldn't replace non-declaration");
728       if (llvm::Function *F = dyn_cast<llvm::Function>(Entry)) {
729         F->eraseFromParent();
730       } else if (llvm::GlobalAlias *GA = dyn_cast<llvm::GlobalAlias>(Entry)) {
731         GA->eraseFromParent();
732       } else {
733         assert(0 && "Invalid global variable type.");
734       }
735 
736       Entry = NewFn;
737     }
738   }
739 
740   if (D->getAttr<AliasAttr>()) {
741     ;
742   } else {
743     llvm::Function *Fn = cast<llvm::Function>(Entry);
744     CodeGenFunction(*this).GenerateCode(D, Fn);
745 
746     if (const ConstructorAttr *CA = D->getAttr<ConstructorAttr>()) {
747       AddGlobalCtor(Fn, CA->getPriority());
748     } else if (const DestructorAttr *DA = D->getAttr<DestructorAttr>()) {
749       AddGlobalDtor(Fn, DA->getPriority());
750     }
751   }
752 }
753 
754 void CodeGenModule::UpdateCompletedType(const TagDecl *TD) {
755   // Make sure that this type is translated.
756   Types.UpdateCompletedType(TD);
757 }
758 
759 
760 /// getBuiltinLibFunction
761 llvm::Function *CodeGenModule::getBuiltinLibFunction(unsigned BuiltinID) {
762   if (BuiltinID > BuiltinFunctions.size())
763     BuiltinFunctions.resize(BuiltinID);
764 
765   // Cache looked up functions.  Since builtin id #0 is invalid we don't reserve
766   // a slot for it.
767   assert(BuiltinID && "Invalid Builtin ID");
768   llvm::Function *&FunctionSlot = BuiltinFunctions[BuiltinID-1];
769   if (FunctionSlot)
770     return FunctionSlot;
771 
772   assert(Context.BuiltinInfo.isLibFunction(BuiltinID) && "isn't a lib fn");
773 
774   // Get the name, skip over the __builtin_ prefix.
775   const char *Name = Context.BuiltinInfo.GetName(BuiltinID)+10;
776 
777   // Get the type for the builtin.
778   QualType Type = Context.BuiltinInfo.GetBuiltinType(BuiltinID, Context);
779   const llvm::FunctionType *Ty =
780     cast<llvm::FunctionType>(getTypes().ConvertType(Type));
781 
782   // FIXME: This has a serious problem with code like this:
783   //  void abs() {}
784   //    ... __builtin_abs(x);
785   // The two versions of abs will collide.  The fix is for the builtin to win,
786   // and for the existing one to be turned into a constantexpr cast of the
787   // builtin.  In the case where the existing one is a static function, it
788   // should just be renamed.
789   if (llvm::Function *Existing = getModule().getFunction(Name)) {
790     if (Existing->getFunctionType() == Ty && Existing->hasExternalLinkage())
791       return FunctionSlot = Existing;
792     assert(Existing == 0 && "FIXME: Name collision");
793   }
794 
795   // FIXME: param attributes for sext/zext etc.
796   return FunctionSlot =
797     llvm::Function::Create(Ty, llvm::Function::ExternalLinkage, Name,
798                            &getModule());
799 }
800 
801 llvm::Function *CodeGenModule::getIntrinsic(unsigned IID,const llvm::Type **Tys,
802                                             unsigned NumTys) {
803   return llvm::Intrinsic::getDeclaration(&getModule(),
804                                          (llvm::Intrinsic::ID)IID, Tys, NumTys);
805 }
806 
807 llvm::Function *CodeGenModule::getMemCpyFn() {
808   if (MemCpyFn) return MemCpyFn;
809   llvm::Intrinsic::ID IID;
810   switch (Context.Target.getPointerWidth(0)) {
811   default: assert(0 && "Unknown ptr width");
812   case 32: IID = llvm::Intrinsic::memcpy_i32; break;
813   case 64: IID = llvm::Intrinsic::memcpy_i64; break;
814   }
815   return MemCpyFn = getIntrinsic(IID);
816 }
817 
818 llvm::Function *CodeGenModule::getMemMoveFn() {
819   if (MemMoveFn) return MemMoveFn;
820   llvm::Intrinsic::ID IID;
821   switch (Context.Target.getPointerWidth(0)) {
822   default: assert(0 && "Unknown ptr width");
823   case 32: IID = llvm::Intrinsic::memmove_i32; break;
824   case 64: IID = llvm::Intrinsic::memmove_i64; break;
825   }
826   return MemMoveFn = getIntrinsic(IID);
827 }
828 
829 llvm::Function *CodeGenModule::getMemSetFn() {
830   if (MemSetFn) return MemSetFn;
831   llvm::Intrinsic::ID IID;
832   switch (Context.Target.getPointerWidth(0)) {
833   default: assert(0 && "Unknown ptr width");
834   case 32: IID = llvm::Intrinsic::memset_i32; break;
835   case 64: IID = llvm::Intrinsic::memset_i64; break;
836   }
837   return MemSetFn = getIntrinsic(IID);
838 }
839 
840 // FIXME: This needs moving into an Apple Objective-C runtime class
841 llvm::Constant *CodeGenModule::
842 GetAddrOfConstantCFString(const std::string &str) {
843   llvm::StringMapEntry<llvm::Constant *> &Entry =
844     CFConstantStringMap.GetOrCreateValue(&str[0], &str[str.length()]);
845 
846   if (Entry.getValue())
847     return Entry.getValue();
848 
849   std::vector<llvm::Constant*> Fields;
850 
851   if (!CFConstantStringClassRef) {
852     const llvm::Type *Ty = getTypes().ConvertType(getContext().IntTy);
853     Ty = llvm::ArrayType::get(Ty, 0);
854 
855     CFConstantStringClassRef =
856       new llvm::GlobalVariable(Ty, false,
857                                llvm::GlobalVariable::ExternalLinkage, 0,
858                                "__CFConstantStringClassReference",
859                                &getModule());
860   }
861 
862   // Class pointer.
863   llvm::Constant *Zero = llvm::Constant::getNullValue(llvm::Type::Int32Ty);
864   llvm::Constant *Zeros[] = { Zero, Zero };
865   llvm::Constant *C =
866     llvm::ConstantExpr::getGetElementPtr(CFConstantStringClassRef, Zeros, 2);
867   Fields.push_back(C);
868 
869   // Flags.
870   const llvm::Type *Ty = getTypes().ConvertType(getContext().IntTy);
871   Fields.push_back(llvm::ConstantInt::get(Ty, 1992));
872 
873   // String pointer.
874   C = llvm::ConstantArray::get(str);
875   C = new llvm::GlobalVariable(C->getType(), true,
876                                llvm::GlobalValue::InternalLinkage,
877                                C, ".str", &getModule());
878 
879   C = llvm::ConstantExpr::getGetElementPtr(C, Zeros, 2);
880   Fields.push_back(C);
881 
882   // String length.
883   Ty = getTypes().ConvertType(getContext().LongTy);
884   Fields.push_back(llvm::ConstantInt::get(Ty, str.length()));
885 
886   // The struct.
887   Ty = getTypes().ConvertType(getContext().getCFConstantStringType());
888   C = llvm::ConstantStruct::get(cast<llvm::StructType>(Ty), Fields);
889   llvm::GlobalVariable *GV =
890     new llvm::GlobalVariable(C->getType(), true,
891                              llvm::GlobalVariable::InternalLinkage,
892                              C, "", &getModule());
893   GV->setSection("__DATA,__cfstring");
894   Entry.setValue(GV);
895   return GV;
896 }
897 
898 /// GenerateWritableString -- Creates storage for a string literal.
899 static llvm::Constant *GenerateStringLiteral(const std::string &str,
900                                              bool constant,
901                                              CodeGenModule &CGM) {
902   // Create Constant for this string literal
903   llvm::Constant *C=llvm::ConstantArray::get(str);
904 
905   // Create a global variable for this string
906   C = new llvm::GlobalVariable(C->getType(), constant,
907                                llvm::GlobalValue::InternalLinkage,
908                                C, ".str", &CGM.getModule());
909   return C;
910 }
911 
912 /// CodeGenModule::GetAddrOfConstantString -- returns a pointer to the character
913 /// array containing the literal.  The result is pointer to array type.
914 llvm::Constant *CodeGenModule::GetAddrOfConstantString(const std::string &str) {
915   // Don't share any string literals if writable-strings is turned on.
916   if (Features.WritableStrings)
917     return GenerateStringLiteral(str, false, *this);
918 
919   llvm::StringMapEntry<llvm::Constant *> &Entry =
920   ConstantStringMap.GetOrCreateValue(&str[0], &str[str.length()]);
921 
922   if (Entry.getValue())
923       return Entry.getValue();
924 
925   // Create a global variable for this.
926   llvm::Constant *C = GenerateStringLiteral(str, true, *this);
927   Entry.setValue(C);
928   return C;
929 }
930