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 "CodeGenModule.h"
15 #include "CGDebugInfo.h"
16 #include "CodeGenFunction.h"
17 #include "CGCall.h"
18 #include "CGObjCRuntime.h"
19 #include "Mangle.h"
20 #include "clang/Frontend/CompileOptions.h"
21 #include "clang/AST/ASTContext.h"
22 #include "clang/AST/DeclObjC.h"
23 #include "clang/AST/DeclCXX.h"
24 #include "clang/Basic/Builtins.h"
25 #include "clang/Basic/Diagnostic.h"
26 #include "clang/Basic/SourceManager.h"
27 #include "clang/Basic/TargetInfo.h"
28 #include "clang/Basic/ConvertUTF.h"
29 #include "llvm/CallingConv.h"
30 #include "llvm/Module.h"
31 #include "llvm/Intrinsics.h"
32 #include "llvm/Target/TargetData.h"
33 using namespace clang;
34 using namespace CodeGen;
35 
36 
37 CodeGenModule::CodeGenModule(ASTContext &C, const CompileOptions &compileOpts,
38                              llvm::Module &M, const llvm::TargetData &TD,
39                              Diagnostic &diags)
40   : BlockModule(C, M, TD, Types, *this), Context(C),
41     Features(C.getLangOptions()), CompileOpts(compileOpts), TheModule(M),
42     TheTargetData(TD), Diags(diags), Types(C, M, TD), Runtime(0),
43     MemCpyFn(0), MemMoveFn(0), MemSetFn(0), CFConstantStringClassRef(0),
44     VMContext(M.getContext()) {
45 
46   if (!Features.ObjC1)
47     Runtime = 0;
48   else if (!Features.NeXTRuntime)
49     Runtime = CreateGNUObjCRuntime(*this);
50   else if (Features.ObjCNonFragileABI)
51     Runtime = CreateMacNonFragileABIObjCRuntime(*this);
52   else
53     Runtime = CreateMacObjCRuntime(*this);
54 
55   // If debug info generation is enabled, create the CGDebugInfo object.
56   DebugInfo = CompileOpts.DebugInfo ? new CGDebugInfo(this) : 0;
57 }
58 
59 CodeGenModule::~CodeGenModule() {
60   delete Runtime;
61   delete DebugInfo;
62 }
63 
64 void CodeGenModule::Release() {
65   EmitDeferred();
66   if (Runtime)
67     if (llvm::Function *ObjCInitFunction = Runtime->ModuleInitFunction())
68       AddGlobalCtor(ObjCInitFunction);
69   EmitCtorList(GlobalCtors, "llvm.global_ctors");
70   EmitCtorList(GlobalDtors, "llvm.global_dtors");
71   EmitAnnotations();
72   EmitLLVMUsed();
73 }
74 
75 /// ErrorUnsupported - Print out an error that codegen doesn't support the
76 /// specified stmt yet.
77 void CodeGenModule::ErrorUnsupported(const Stmt *S, const char *Type,
78                                      bool OmitOnError) {
79   if (OmitOnError && getDiags().hasErrorOccurred())
80     return;
81   unsigned DiagID = getDiags().getCustomDiagID(Diagnostic::Error,
82                                                "cannot compile this %0 yet");
83   std::string Msg = Type;
84   getDiags().Report(Context.getFullLoc(S->getLocStart()), DiagID)
85     << Msg << S->getSourceRange();
86 }
87 
88 /// ErrorUnsupported - Print out an error that codegen doesn't support the
89 /// specified decl yet.
90 void CodeGenModule::ErrorUnsupported(const Decl *D, const char *Type,
91                                      bool OmitOnError) {
92   if (OmitOnError && getDiags().hasErrorOccurred())
93     return;
94   unsigned DiagID = getDiags().getCustomDiagID(Diagnostic::Error,
95                                                "cannot compile this %0 yet");
96   std::string Msg = Type;
97   getDiags().Report(Context.getFullLoc(D->getLocation()), DiagID) << Msg;
98 }
99 
100 LangOptions::VisibilityMode
101 CodeGenModule::getDeclVisibilityMode(const Decl *D) const {
102   if (const VarDecl *VD = dyn_cast<VarDecl>(D))
103     if (VD->getStorageClass() == VarDecl::PrivateExtern)
104       return LangOptions::Hidden;
105 
106   if (const VisibilityAttr *attr = D->getAttr<VisibilityAttr>()) {
107     switch (attr->getVisibility()) {
108     default: assert(0 && "Unknown visibility!");
109     case VisibilityAttr::DefaultVisibility:
110       return LangOptions::Default;
111     case VisibilityAttr::HiddenVisibility:
112       return LangOptions::Hidden;
113     case VisibilityAttr::ProtectedVisibility:
114       return LangOptions::Protected;
115     }
116   }
117 
118   return getLangOptions().getVisibilityMode();
119 }
120 
121 void CodeGenModule::setGlobalVisibility(llvm::GlobalValue *GV,
122                                         const Decl *D) const {
123   // Internal definitions always have default visibility.
124   if (GV->hasLocalLinkage()) {
125     GV->setVisibility(llvm::GlobalValue::DefaultVisibility);
126     return;
127   }
128 
129   switch (getDeclVisibilityMode(D)) {
130   default: assert(0 && "Unknown visibility!");
131   case LangOptions::Default:
132     return GV->setVisibility(llvm::GlobalValue::DefaultVisibility);
133   case LangOptions::Hidden:
134     return GV->setVisibility(llvm::GlobalValue::HiddenVisibility);
135   case LangOptions::Protected:
136     return GV->setVisibility(llvm::GlobalValue::ProtectedVisibility);
137   }
138 }
139 
140 const char *CodeGenModule::getMangledName(const GlobalDecl &GD) {
141   const NamedDecl *ND = GD.getDecl();
142 
143   if (const CXXConstructorDecl *D = dyn_cast<CXXConstructorDecl>(ND))
144     return getMangledCXXCtorName(D, GD.getCtorType());
145   if (const CXXDestructorDecl *D = dyn_cast<CXXDestructorDecl>(ND))
146     return getMangledCXXDtorName(D, GD.getDtorType());
147 
148   return getMangledName(ND);
149 }
150 
151 /// \brief Retrieves the mangled name for the given declaration.
152 ///
153 /// If the given declaration requires a mangled name, returns an
154 /// const char* containing the mangled name.  Otherwise, returns
155 /// the unmangled name.
156 ///
157 const char *CodeGenModule::getMangledName(const NamedDecl *ND) {
158   // In C, functions with no attributes never need to be mangled. Fastpath them.
159   if (!getLangOptions().CPlusPlus && !ND->hasAttrs()) {
160     assert(ND->getIdentifier() && "Attempt to mangle unnamed decl.");
161     return ND->getNameAsCString();
162   }
163 
164   llvm::SmallString<256> Name;
165   llvm::raw_svector_ostream Out(Name);
166   if (!mangleName(ND, Context, Out)) {
167     assert(ND->getIdentifier() && "Attempt to mangle unnamed decl.");
168     return ND->getNameAsCString();
169   }
170 
171   Name += '\0';
172   return UniqueMangledName(Name.begin(), Name.end());
173 }
174 
175 const char *CodeGenModule::UniqueMangledName(const char *NameStart,
176                                              const char *NameEnd) {
177   assert(*(NameEnd - 1) == '\0' && "Mangled name must be null terminated!");
178 
179   return MangledNames.GetOrCreateValue(NameStart, NameEnd).getKeyData();
180 }
181 
182 /// AddGlobalCtor - Add a function to the list that will be called before
183 /// main() runs.
184 void CodeGenModule::AddGlobalCtor(llvm::Function * Ctor, int Priority) {
185   // FIXME: Type coercion of void()* types.
186   GlobalCtors.push_back(std::make_pair(Ctor, Priority));
187 }
188 
189 /// AddGlobalDtor - Add a function to the list that will be called
190 /// when the module is unloaded.
191 void CodeGenModule::AddGlobalDtor(llvm::Function * Dtor, int Priority) {
192   // FIXME: Type coercion of void()* types.
193   GlobalDtors.push_back(std::make_pair(Dtor, Priority));
194 }
195 
196 void CodeGenModule::EmitCtorList(const CtorList &Fns, const char *GlobalName) {
197   // Ctor function type is void()*.
198   llvm::FunctionType* CtorFTy =
199     llvm::FunctionType::get(llvm::Type::VoidTy,
200                             std::vector<const llvm::Type*>(),
201                             false);
202   llvm::Type *CtorPFTy = llvm::PointerType::getUnqual(CtorFTy);
203 
204   // Get the type of a ctor entry, { i32, void ()* }.
205   llvm::StructType* CtorStructTy =
206     llvm::StructType::get(VMContext, llvm::Type::Int32Ty,
207                           llvm::PointerType::getUnqual(CtorFTy), NULL);
208 
209   // Construct the constructor and destructor arrays.
210   std::vector<llvm::Constant*> Ctors;
211   for (CtorList::const_iterator I = Fns.begin(), E = Fns.end(); I != E; ++I) {
212     std::vector<llvm::Constant*> S;
213     S.push_back(
214       llvm::ConstantInt::get(llvm::Type::Int32Ty, I->second, false));
215     S.push_back(llvm::ConstantExpr::getBitCast(I->first, CtorPFTy));
216     Ctors.push_back(llvm::ConstantStruct::get(CtorStructTy, S));
217   }
218 
219   if (!Ctors.empty()) {
220     llvm::ArrayType *AT = llvm::ArrayType::get(CtorStructTy, Ctors.size());
221     new llvm::GlobalVariable(TheModule, AT, false,
222                              llvm::GlobalValue::AppendingLinkage,
223                              llvm::ConstantArray::get(AT, Ctors),
224                              GlobalName);
225   }
226 }
227 
228 void CodeGenModule::EmitAnnotations() {
229   if (Annotations.empty())
230     return;
231 
232   // Create a new global variable for the ConstantStruct in the Module.
233   llvm::Constant *Array =
234   llvm::ConstantArray::get(llvm::ArrayType::get(Annotations[0]->getType(),
235                                                 Annotations.size()),
236                            Annotations);
237   llvm::GlobalValue *gv =
238   new llvm::GlobalVariable(TheModule, Array->getType(), false,
239                            llvm::GlobalValue::AppendingLinkage, Array,
240                            "llvm.global.annotations");
241   gv->setSection("llvm.metadata");
242 }
243 
244 static CodeGenModule::GVALinkage
245 GetLinkageForFunction(ASTContext &Context, const FunctionDecl *FD,
246                       const LangOptions &Features) {
247   // The kind of external linkage this function will have, if it is not
248   // inline or static.
249   CodeGenModule::GVALinkage External = CodeGenModule::GVA_StrongExternal;
250   if (Context.getLangOptions().CPlusPlus &&
251       (FD->getPrimaryTemplate() || FD->getInstantiatedFromMemberFunction()) &&
252       !FD->isExplicitSpecialization())
253     External = CodeGenModule::GVA_TemplateInstantiation;
254 
255   if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
256     // C++ member functions defined inside the class are always inline.
257     if (MD->isInline() || !MD->isOutOfLine())
258       return CodeGenModule::GVA_CXXInline;
259 
260     return External;
261   }
262 
263   // "static" functions get internal linkage.
264   if (FD->getStorageClass() == FunctionDecl::Static)
265     return CodeGenModule::GVA_Internal;
266 
267   if (!FD->isInline())
268     return External;
269 
270   // If the inline function explicitly has the GNU inline attribute on it, or if
271   // this is C89 mode, we use to GNU semantics.
272   if (!Features.C99 && !Features.CPlusPlus) {
273     // extern inline in GNU mode is like C99 inline.
274     if (FD->getStorageClass() == FunctionDecl::Extern)
275       return CodeGenModule::GVA_C99Inline;
276     // Normal inline is a strong symbol.
277     return CodeGenModule::GVA_StrongExternal;
278   } else if (FD->hasActiveGNUInlineAttribute(Context)) {
279     // GCC in C99 mode seems to use a different decision-making
280     // process for extern inline, which factors in previous
281     // declarations.
282     if (FD->isExternGNUInline(Context))
283       return CodeGenModule::GVA_C99Inline;
284     // Normal inline is a strong symbol.
285     return External;
286   }
287 
288   // The definition of inline changes based on the language.  Note that we
289   // have already handled "static inline" above, with the GVA_Internal case.
290   if (Features.CPlusPlus)  // inline and extern inline.
291     return CodeGenModule::GVA_CXXInline;
292 
293   assert(Features.C99 && "Must be in C99 mode if not in C89 or C++ mode");
294   if (FD->isC99InlineDefinition())
295     return CodeGenModule::GVA_C99Inline;
296 
297   return CodeGenModule::GVA_StrongExternal;
298 }
299 
300 /// SetFunctionDefinitionAttributes - Set attributes for a global.
301 ///
302 /// FIXME: This is currently only done for aliases and functions, but not for
303 /// variables (these details are set in EmitGlobalVarDefinition for variables).
304 void CodeGenModule::SetFunctionDefinitionAttributes(const FunctionDecl *D,
305                                                     llvm::GlobalValue *GV) {
306   GVALinkage Linkage = GetLinkageForFunction(getContext(), D, Features);
307 
308   if (Linkage == GVA_Internal) {
309     GV->setLinkage(llvm::Function::InternalLinkage);
310   } else if (D->hasAttr<DLLExportAttr>()) {
311     GV->setLinkage(llvm::Function::DLLExportLinkage);
312   } else if (D->hasAttr<WeakAttr>()) {
313     GV->setLinkage(llvm::Function::WeakAnyLinkage);
314   } else if (Linkage == GVA_C99Inline) {
315     // In C99 mode, 'inline' functions are guaranteed to have a strong
316     // definition somewhere else, so we can use available_externally linkage.
317     GV->setLinkage(llvm::Function::AvailableExternallyLinkage);
318   } else if (Linkage == GVA_CXXInline || Linkage == GVA_TemplateInstantiation) {
319     // In C++, the compiler has to emit a definition in every translation unit
320     // that references the function.  We should use linkonce_odr because
321     // a) if all references in this translation unit are optimized away, we
322     // don't need to codegen it.  b) if the function persists, it needs to be
323     // merged with other definitions. c) C++ has the ODR, so we know the
324     // definition is dependable.
325     GV->setLinkage(llvm::Function::LinkOnceODRLinkage);
326   } else {
327     assert(Linkage == GVA_StrongExternal);
328     // Otherwise, we have strong external linkage.
329     GV->setLinkage(llvm::Function::ExternalLinkage);
330   }
331 
332   SetCommonAttributes(D, GV);
333 }
334 
335 void CodeGenModule::SetLLVMFunctionAttributes(const Decl *D,
336                                               const CGFunctionInfo &Info,
337                                               llvm::Function *F) {
338   AttributeListType AttributeList;
339   ConstructAttributeList(Info, D, AttributeList);
340 
341   F->setAttributes(llvm::AttrListPtr::get(AttributeList.begin(),
342                                         AttributeList.size()));
343 
344   // Set the appropriate calling convention for the Function.
345   if (D->hasAttr<FastCallAttr>())
346     F->setCallingConv(llvm::CallingConv::X86_FastCall);
347 
348   if (D->hasAttr<StdCallAttr>())
349     F->setCallingConv(llvm::CallingConv::X86_StdCall);
350 }
351 
352 void CodeGenModule::SetLLVMFunctionAttributesForDefinition(const Decl *D,
353                                                            llvm::Function *F) {
354   if (!Features.Exceptions && !Features.ObjCNonFragileABI)
355     F->addFnAttr(llvm::Attribute::NoUnwind);
356 
357   if (D->hasAttr<AlwaysInlineAttr>())
358     F->addFnAttr(llvm::Attribute::AlwaysInline);
359 
360   if (D->hasAttr<NoinlineAttr>())
361     F->addFnAttr(llvm::Attribute::NoInline);
362 }
363 
364 void CodeGenModule::SetCommonAttributes(const Decl *D,
365                                         llvm::GlobalValue *GV) {
366   setGlobalVisibility(GV, D);
367 
368   if (D->hasAttr<UsedAttr>())
369     AddUsedGlobal(GV);
370 
371   if (const SectionAttr *SA = D->getAttr<SectionAttr>())
372     GV->setSection(SA->getName());
373 }
374 
375 void CodeGenModule::SetInternalFunctionAttributes(const Decl *D,
376                                                   llvm::Function *F,
377                                                   const CGFunctionInfo &FI) {
378   SetLLVMFunctionAttributes(D, FI, F);
379   SetLLVMFunctionAttributesForDefinition(D, F);
380 
381   F->setLinkage(llvm::Function::InternalLinkage);
382 
383   SetCommonAttributes(D, F);
384 }
385 
386 void CodeGenModule::SetFunctionAttributes(const FunctionDecl *FD,
387                                           llvm::Function *F,
388                                           bool IsIncompleteFunction) {
389   if (!IsIncompleteFunction)
390     SetLLVMFunctionAttributes(FD, getTypes().getFunctionInfo(FD), F);
391 
392   // Only a few attributes are set on declarations; these may later be
393   // overridden by a definition.
394 
395   if (FD->hasAttr<DLLImportAttr>()) {
396     F->setLinkage(llvm::Function::DLLImportLinkage);
397   } else if (FD->hasAttr<WeakAttr>() ||
398              FD->hasAttr<WeakImportAttr>()) {
399     // "extern_weak" is overloaded in LLVM; we probably should have
400     // separate linkage types for this.
401     F->setLinkage(llvm::Function::ExternalWeakLinkage);
402   } else {
403     F->setLinkage(llvm::Function::ExternalLinkage);
404   }
405 
406   if (const SectionAttr *SA = FD->getAttr<SectionAttr>())
407     F->setSection(SA->getName());
408 }
409 
410 void CodeGenModule::AddUsedGlobal(llvm::GlobalValue *GV) {
411   assert(!GV->isDeclaration() &&
412          "Only globals with definition can force usage.");
413   LLVMUsed.push_back(GV);
414 }
415 
416 void CodeGenModule::EmitLLVMUsed() {
417   // Don't create llvm.used if there is no need.
418   if (LLVMUsed.empty())
419     return;
420 
421   llvm::Type *i8PTy = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
422 
423   // Convert LLVMUsed to what ConstantArray needs.
424   std::vector<llvm::Constant*> UsedArray;
425   UsedArray.resize(LLVMUsed.size());
426   for (unsigned i = 0, e = LLVMUsed.size(); i != e; ++i) {
427     UsedArray[i] =
428      llvm::ConstantExpr::getBitCast(cast<llvm::Constant>(&*LLVMUsed[i]),
429                                       i8PTy);
430   }
431 
432   if (UsedArray.empty())
433     return;
434   llvm::ArrayType *ATy = llvm::ArrayType::get(i8PTy, UsedArray.size());
435 
436   llvm::GlobalVariable *GV =
437     new llvm::GlobalVariable(getModule(), ATy, false,
438                              llvm::GlobalValue::AppendingLinkage,
439                              llvm::ConstantArray::get(ATy, UsedArray),
440                              "llvm.used");
441 
442   GV->setSection("llvm.metadata");
443 }
444 
445 void CodeGenModule::EmitDeferred() {
446   // Emit code for any potentially referenced deferred decls.  Since a
447   // previously unused static decl may become used during the generation of code
448   // for a static function, iterate until no  changes are made.
449   while (!DeferredDeclsToEmit.empty()) {
450     GlobalDecl D = DeferredDeclsToEmit.back();
451     DeferredDeclsToEmit.pop_back();
452 
453     // The mangled name for the decl must have been emitted in GlobalDeclMap.
454     // Look it up to see if it was defined with a stronger definition (e.g. an
455     // extern inline function with a strong function redefinition).  If so,
456     // just ignore the deferred decl.
457     llvm::GlobalValue *CGRef = GlobalDeclMap[getMangledName(D)];
458     assert(CGRef && "Deferred decl wasn't referenced?");
459 
460     if (!CGRef->isDeclaration())
461       continue;
462 
463     // Otherwise, emit the definition and move on to the next one.
464     EmitGlobalDefinition(D);
465   }
466 }
467 
468 /// EmitAnnotateAttr - Generate the llvm::ConstantStruct which contains the
469 /// annotation information for a given GlobalValue.  The annotation struct is
470 /// {i8 *, i8 *, i8 *, i32}.  The first field is a constant expression, the
471 /// GlobalValue being annotated.  The second field is the constant string
472 /// created from the AnnotateAttr's annotation.  The third field is a constant
473 /// string containing the name of the translation unit.  The fourth field is
474 /// the line number in the file of the annotated value declaration.
475 ///
476 /// FIXME: this does not unique the annotation string constants, as llvm-gcc
477 ///        appears to.
478 ///
479 llvm::Constant *CodeGenModule::EmitAnnotateAttr(llvm::GlobalValue *GV,
480                                                 const AnnotateAttr *AA,
481                                                 unsigned LineNo) {
482   llvm::Module *M = &getModule();
483 
484   // get [N x i8] constants for the annotation string, and the filename string
485   // which are the 2nd and 3rd elements of the global annotation structure.
486   const llvm::Type *SBP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
487   llvm::Constant *anno = llvm::ConstantArray::get(AA->getAnnotation(), true);
488   llvm::Constant *unit = llvm::ConstantArray::get(M->getModuleIdentifier(),
489                                                   true);
490 
491   // Get the two global values corresponding to the ConstantArrays we just
492   // created to hold the bytes of the strings.
493   llvm::GlobalValue *annoGV =
494     new llvm::GlobalVariable(*M, anno->getType(), false,
495                              llvm::GlobalValue::PrivateLinkage, anno,
496                              GV->getName());
497   // translation unit name string, emitted into the llvm.metadata section.
498   llvm::GlobalValue *unitGV =
499     new llvm::GlobalVariable(*M, unit->getType(), false,
500                              llvm::GlobalValue::PrivateLinkage, unit,
501                              ".str");
502 
503   // Create the ConstantStruct for the global annotation.
504   llvm::Constant *Fields[4] = {
505     llvm::ConstantExpr::getBitCast(GV, SBP),
506     llvm::ConstantExpr::getBitCast(annoGV, SBP),
507     llvm::ConstantExpr::getBitCast(unitGV, SBP),
508     llvm::ConstantInt::get(llvm::Type::Int32Ty, LineNo)
509   };
510   return llvm::ConstantStruct::get(VMContext, Fields, 4, false);
511 }
512 
513 bool CodeGenModule::MayDeferGeneration(const ValueDecl *Global) {
514   // Never defer when EmitAllDecls is specified or the decl has
515   // attribute used.
516   if (Features.EmitAllDecls || Global->hasAttr<UsedAttr>())
517     return false;
518 
519   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(Global)) {
520     // Constructors and destructors should never be deferred.
521     if (FD->hasAttr<ConstructorAttr>() ||
522         FD->hasAttr<DestructorAttr>())
523       return false;
524 
525     GVALinkage Linkage = GetLinkageForFunction(getContext(), FD, Features);
526 
527     // static, static inline, always_inline, and extern inline functions can
528     // always be deferred.  Normal inline functions can be deferred in C99/C++.
529     if (Linkage == GVA_Internal || Linkage == GVA_C99Inline ||
530         Linkage == GVA_CXXInline)
531       return true;
532     return false;
533   }
534 
535   const VarDecl *VD = cast<VarDecl>(Global);
536   assert(VD->isFileVarDecl() && "Invalid decl");
537 
538   return VD->getStorageClass() == VarDecl::Static;
539 }
540 
541 void CodeGenModule::EmitGlobal(GlobalDecl GD) {
542   const ValueDecl *Global = GD.getDecl();
543 
544   // If this is an alias definition (which otherwise looks like a declaration)
545   // emit it now.
546   if (Global->hasAttr<AliasAttr>())
547     return EmitAliasDefinition(Global);
548 
549   // Ignore declarations, they will be emitted on their first use.
550   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(Global)) {
551     // Forward declarations are emitted lazily on first use.
552     if (!FD->isThisDeclarationADefinition())
553       return;
554   } else {
555     const VarDecl *VD = cast<VarDecl>(Global);
556     assert(VD->isFileVarDecl() && "Cannot emit local var decl as global.");
557 
558     // In C++, if this is marked "extern", defer code generation.
559     if (getLangOptions().CPlusPlus && !VD->getInit() &&
560         (VD->getStorageClass() == VarDecl::Extern ||
561          VD->isExternC(getContext())))
562       return;
563 
564     // In C, if this isn't a definition, defer code generation.
565     if (!getLangOptions().CPlusPlus && !VD->getInit())
566       return;
567   }
568 
569   // Defer code generation when possible if this is a static definition, inline
570   // function etc.  These we only want to emit if they are used.
571   if (MayDeferGeneration(Global)) {
572     // If the value has already been used, add it directly to the
573     // DeferredDeclsToEmit list.
574     const char *MangledName = getMangledName(GD);
575     if (GlobalDeclMap.count(MangledName))
576       DeferredDeclsToEmit.push_back(GD);
577     else {
578       // Otherwise, remember that we saw a deferred decl with this name.  The
579       // first use of the mangled name will cause it to move into
580       // DeferredDeclsToEmit.
581       DeferredDecls[MangledName] = GD;
582     }
583     return;
584   }
585 
586   // Otherwise emit the definition.
587   EmitGlobalDefinition(GD);
588 }
589 
590 void CodeGenModule::EmitGlobalDefinition(GlobalDecl GD) {
591   const ValueDecl *D = GD.getDecl();
592 
593   if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(D))
594     EmitCXXConstructor(CD, GD.getCtorType());
595   else if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(D))
596     EmitCXXDestructor(DD, GD.getDtorType());
597   else if (isa<FunctionDecl>(D))
598     EmitGlobalFunctionDefinition(GD);
599   else if (const VarDecl *VD = dyn_cast<VarDecl>(D))
600     EmitGlobalVarDefinition(VD);
601   else {
602     assert(0 && "Invalid argument to EmitGlobalDefinition()");
603   }
604 }
605 
606 /// GetOrCreateLLVMFunction - If the specified mangled name is not in the
607 /// module, create and return an llvm Function with the specified type. If there
608 /// is something in the module with the specified name, return it potentially
609 /// bitcasted to the right type.
610 ///
611 /// If D is non-null, it specifies a decl that correspond to this.  This is used
612 /// to set the attributes on the function when it is first created.
613 llvm::Constant *CodeGenModule::GetOrCreateLLVMFunction(const char *MangledName,
614                                                        const llvm::Type *Ty,
615                                                        GlobalDecl D) {
616   // Lookup the entry, lazily creating it if necessary.
617   llvm::GlobalValue *&Entry = GlobalDeclMap[MangledName];
618   if (Entry) {
619     if (Entry->getType()->getElementType() == Ty)
620       return Entry;
621 
622     // Make sure the result is of the correct type.
623     const llvm::Type *PTy = llvm::PointerType::getUnqual(Ty);
624     return llvm::ConstantExpr::getBitCast(Entry, PTy);
625   }
626 
627   // This is the first use or definition of a mangled name.  If there is a
628   // deferred decl with this name, remember that we need to emit it at the end
629   // of the file.
630   llvm::DenseMap<const char*, GlobalDecl>::iterator DDI =
631     DeferredDecls.find(MangledName);
632   if (DDI != DeferredDecls.end()) {
633     // Move the potentially referenced deferred decl to the DeferredDeclsToEmit
634     // list, and remove it from DeferredDecls (since we don't need it anymore).
635     DeferredDeclsToEmit.push_back(DDI->second);
636     DeferredDecls.erase(DDI);
637   } else if (const FunctionDecl *FD = cast_or_null<FunctionDecl>(D.getDecl())) {
638     // If this the first reference to a C++ inline function in a class, queue up
639     // the deferred function body for emission.  These are not seen as
640     // top-level declarations.
641     if (FD->isThisDeclarationADefinition() && MayDeferGeneration(FD))
642       DeferredDeclsToEmit.push_back(D);
643     // A called constructor which has no definition or declaration need be
644     // synthesized.
645     else if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD)) {
646       const CXXRecordDecl *ClassDecl =
647         cast<CXXRecordDecl>(CD->getDeclContext());
648       if (CD->isCopyConstructor(getContext()))
649         DeferredCopyConstructorToEmit(D);
650       else if (!ClassDecl->hasUserDeclaredConstructor())
651         DeferredDeclsToEmit.push_back(D);
652     }
653   }
654 
655   // This function doesn't have a complete type (for example, the return
656   // type is an incomplete struct). Use a fake type instead, and make
657   // sure not to try to set attributes.
658   bool IsIncompleteFunction = false;
659   if (!isa<llvm::FunctionType>(Ty)) {
660     Ty = llvm::FunctionType::get(llvm::Type::VoidTy,
661                                  std::vector<const llvm::Type*>(), false);
662     IsIncompleteFunction = true;
663   }
664   llvm::Function *F = llvm::Function::Create(cast<llvm::FunctionType>(Ty),
665                                              llvm::Function::ExternalLinkage,
666                                              "", &getModule());
667   F->setName(MangledName);
668   if (D.getDecl())
669     SetFunctionAttributes(cast<FunctionDecl>(D.getDecl()), F,
670                           IsIncompleteFunction);
671   Entry = F;
672   return F;
673 }
674 
675 /// Defer definition of copy constructor(s) which need be implicitly defined.
676 void CodeGenModule::DeferredCopyConstructorToEmit(GlobalDecl CopyCtorDecl) {
677   const CXXConstructorDecl *CD =
678     cast<CXXConstructorDecl>(CopyCtorDecl.getDecl());
679   const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(CD->getDeclContext());
680   if (ClassDecl->hasTrivialCopyConstructor() ||
681       ClassDecl->hasUserDeclaredCopyConstructor())
682     return;
683 
684   // First make sure all direct base classes and virtual bases and non-static
685   // data mebers which need to have their copy constructors implicitly defined
686   // are defined. 12.8.p7
687   for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin();
688        Base != ClassDecl->bases_end(); ++Base) {
689     CXXRecordDecl *BaseClassDecl
690       = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
691     if (CXXConstructorDecl *BaseCopyCtor =
692         BaseClassDecl->getCopyConstructor(Context, 0))
693       GetAddrOfCXXConstructor(BaseCopyCtor, Ctor_Complete);
694   }
695 
696   for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
697        FieldEnd = ClassDecl->field_end();
698        Field != FieldEnd; ++Field) {
699     QualType FieldType = Context.getCanonicalType((*Field)->getType());
700     if (const ArrayType *Array = Context.getAsArrayType(FieldType))
701       FieldType = Array->getElementType();
702     if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
703       CXXRecordDecl *FieldClassDecl
704       = cast<CXXRecordDecl>(FieldClassType->getDecl());
705       if (CXXConstructorDecl *FieldCopyCtor =
706           FieldClassDecl->getCopyConstructor(Context, 0))
707         GetAddrOfCXXConstructor(FieldCopyCtor, Ctor_Complete);
708     }
709   }
710   DeferredDeclsToEmit.push_back(CopyCtorDecl);
711 
712 }
713 
714 /// GetAddrOfFunction - Return the address of the given function.  If Ty is
715 /// non-null, then this function will use the specified type if it has to
716 /// create it (this occurs when we see a definition of the function).
717 llvm::Constant *CodeGenModule::GetAddrOfFunction(GlobalDecl GD,
718                                                  const llvm::Type *Ty) {
719   // If there was no specific requested type, just convert it now.
720   if (!Ty)
721     Ty = getTypes().ConvertType(GD.getDecl()->getType());
722   return GetOrCreateLLVMFunction(getMangledName(GD.getDecl()), Ty, GD);
723 }
724 
725 /// CreateRuntimeFunction - Create a new runtime function with the specified
726 /// type and name.
727 llvm::Constant *
728 CodeGenModule::CreateRuntimeFunction(const llvm::FunctionType *FTy,
729                                      const char *Name) {
730   // Convert Name to be a uniqued string from the IdentifierInfo table.
731   Name = getContext().Idents.get(Name).getName();
732   return GetOrCreateLLVMFunction(Name, FTy, GlobalDecl());
733 }
734 
735 /// GetOrCreateLLVMGlobal - If the specified mangled name is not in the module,
736 /// create and return an llvm GlobalVariable with the specified type.  If there
737 /// is something in the module with the specified name, return it potentially
738 /// bitcasted to the right type.
739 ///
740 /// If D is non-null, it specifies a decl that correspond to this.  This is used
741 /// to set the attributes on the global when it is first created.
742 llvm::Constant *CodeGenModule::GetOrCreateLLVMGlobal(const char *MangledName,
743                                                      const llvm::PointerType*Ty,
744                                                      const VarDecl *D) {
745   // Lookup the entry, lazily creating it if necessary.
746   llvm::GlobalValue *&Entry = GlobalDeclMap[MangledName];
747   if (Entry) {
748     if (Entry->getType() == Ty)
749       return Entry;
750 
751     // Make sure the result is of the correct type.
752     return llvm::ConstantExpr::getBitCast(Entry, Ty);
753   }
754 
755   // This is the first use or definition of a mangled name.  If there is a
756   // deferred decl with this name, remember that we need to emit it at the end
757   // of the file.
758   llvm::DenseMap<const char*, GlobalDecl>::iterator DDI =
759     DeferredDecls.find(MangledName);
760   if (DDI != DeferredDecls.end()) {
761     // Move the potentially referenced deferred decl to the DeferredDeclsToEmit
762     // list, and remove it from DeferredDecls (since we don't need it anymore).
763     DeferredDeclsToEmit.push_back(DDI->second);
764     DeferredDecls.erase(DDI);
765   }
766 
767   llvm::GlobalVariable *GV =
768     new llvm::GlobalVariable(getModule(), Ty->getElementType(), false,
769                              llvm::GlobalValue::ExternalLinkage,
770                              0, "", 0,
771                              false, Ty->getAddressSpace());
772   GV->setName(MangledName);
773 
774   // Handle things which are present even on external declarations.
775   if (D) {
776     // FIXME: This code is overly simple and should be merged with other global
777     // handling.
778     GV->setConstant(D->getType().isConstant(Context));
779 
780     // FIXME: Merge with other attribute handling code.
781     if (D->getStorageClass() == VarDecl::PrivateExtern)
782       GV->setVisibility(llvm::GlobalValue::HiddenVisibility);
783 
784     if (D->hasAttr<WeakAttr>() ||
785         D->hasAttr<WeakImportAttr>())
786       GV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
787 
788     GV->setThreadLocal(D->isThreadSpecified());
789   }
790 
791   return Entry = GV;
792 }
793 
794 
795 /// GetAddrOfGlobalVar - Return the llvm::Constant for the address of the
796 /// given global variable.  If Ty is non-null and if the global doesn't exist,
797 /// then it will be greated with the specified type instead of whatever the
798 /// normal requested type would be.
799 llvm::Constant *CodeGenModule::GetAddrOfGlobalVar(const VarDecl *D,
800                                                   const llvm::Type *Ty) {
801   assert(D->hasGlobalStorage() && "Not a global variable");
802   QualType ASTTy = D->getType();
803   if (Ty == 0)
804     Ty = getTypes().ConvertTypeForMem(ASTTy);
805 
806   const llvm::PointerType *PTy =
807     llvm::PointerType::get(Ty, ASTTy.getAddressSpace());
808   return GetOrCreateLLVMGlobal(getMangledName(D), PTy, D);
809 }
810 
811 /// CreateRuntimeVariable - Create a new runtime global variable with the
812 /// specified type and name.
813 llvm::Constant *
814 CodeGenModule::CreateRuntimeVariable(const llvm::Type *Ty,
815                                      const char *Name) {
816   // Convert Name to be a uniqued string from the IdentifierInfo table.
817   Name = getContext().Idents.get(Name).getName();
818   return GetOrCreateLLVMGlobal(Name, llvm::PointerType::getUnqual(Ty), 0);
819 }
820 
821 void CodeGenModule::EmitTentativeDefinition(const VarDecl *D) {
822   assert(!D->getInit() && "Cannot emit definite definitions here!");
823 
824   if (MayDeferGeneration(D)) {
825     // If we have not seen a reference to this variable yet, place it
826     // into the deferred declarations table to be emitted if needed
827     // later.
828     const char *MangledName = getMangledName(D);
829     if (GlobalDeclMap.count(MangledName) == 0) {
830       DeferredDecls[MangledName] = GlobalDecl(D);
831       return;
832     }
833   }
834 
835   // The tentative definition is the only definition.
836   EmitGlobalVarDefinition(D);
837 }
838 
839 void CodeGenModule::EmitGlobalVarDefinition(const VarDecl *D) {
840   llvm::Constant *Init = 0;
841   QualType ASTTy = D->getType();
842 
843   if (D->getInit() == 0) {
844     // This is a tentative definition; tentative definitions are
845     // implicitly initialized with { 0 }.
846     //
847     // Note that tentative definitions are only emitted at the end of
848     // a translation unit, so they should never have incomplete
849     // type. In addition, EmitTentativeDefinition makes sure that we
850     // never attempt to emit a tentative definition if a real one
851     // exists. A use may still exists, however, so we still may need
852     // to do a RAUW.
853     assert(!ASTTy->isIncompleteType() && "Unexpected incomplete type");
854     Init = EmitNullConstant(D->getType());
855   } else {
856     Init = EmitConstantExpr(D->getInit(), D->getType());
857     if (!Init) {
858       ErrorUnsupported(D, "static initializer");
859       QualType T = D->getInit()->getType();
860       Init = llvm::UndefValue::get(getTypes().ConvertType(T));
861     }
862   }
863 
864   const llvm::Type* InitType = Init->getType();
865   llvm::Constant *Entry = GetAddrOfGlobalVar(D, InitType);
866 
867   // Strip off a bitcast if we got one back.
868   if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Entry)) {
869     assert(CE->getOpcode() == llvm::Instruction::BitCast ||
870            // all zero index gep.
871            CE->getOpcode() == llvm::Instruction::GetElementPtr);
872     Entry = CE->getOperand(0);
873   }
874 
875   // Entry is now either a Function or GlobalVariable.
876   llvm::GlobalVariable *GV = dyn_cast<llvm::GlobalVariable>(Entry);
877 
878   // We have a definition after a declaration with the wrong type.
879   // We must make a new GlobalVariable* and update everything that used OldGV
880   // (a declaration or tentative definition) with the new GlobalVariable*
881   // (which will be a definition).
882   //
883   // This happens if there is a prototype for a global (e.g.
884   // "extern int x[];") and then a definition of a different type (e.g.
885   // "int x[10];"). This also happens when an initializer has a different type
886   // from the type of the global (this happens with unions).
887   if (GV == 0 ||
888       GV->getType()->getElementType() != InitType ||
889       GV->getType()->getAddressSpace() != ASTTy.getAddressSpace()) {
890 
891     // Remove the old entry from GlobalDeclMap so that we'll create a new one.
892     GlobalDeclMap.erase(getMangledName(D));
893 
894     // Make a new global with the correct type, this is now guaranteed to work.
895     GV = cast<llvm::GlobalVariable>(GetAddrOfGlobalVar(D, InitType));
896     GV->takeName(cast<llvm::GlobalValue>(Entry));
897 
898     // Replace all uses of the old global with the new global
899     llvm::Constant *NewPtrForOldDecl =
900         llvm::ConstantExpr::getBitCast(GV, Entry->getType());
901     Entry->replaceAllUsesWith(NewPtrForOldDecl);
902 
903     // Erase the old global, since it is no longer used.
904     cast<llvm::GlobalValue>(Entry)->eraseFromParent();
905   }
906 
907   if (const AnnotateAttr *AA = D->getAttr<AnnotateAttr>()) {
908     SourceManager &SM = Context.getSourceManager();
909     AddAnnotation(EmitAnnotateAttr(GV, AA,
910                               SM.getInstantiationLineNumber(D->getLocation())));
911   }
912 
913   GV->setInitializer(Init);
914 
915   // If it is safe to mark the global 'constant', do so now.
916   GV->setConstant(false);
917   if (D->getType().isConstant(Context)) {
918     // FIXME: In C++, if the variable has a non-trivial ctor/dtor or any mutable
919     // members, it cannot be declared "LLVM const".
920     GV->setConstant(true);
921   }
922 
923   GV->setAlignment(getContext().getDeclAlignInBytes(D));
924 
925   // Set the llvm linkage type as appropriate.
926   if (D->getStorageClass() == VarDecl::Static)
927     GV->setLinkage(llvm::Function::InternalLinkage);
928   else if (D->hasAttr<DLLImportAttr>())
929     GV->setLinkage(llvm::Function::DLLImportLinkage);
930   else if (D->hasAttr<DLLExportAttr>())
931     GV->setLinkage(llvm::Function::DLLExportLinkage);
932   else if (D->hasAttr<WeakAttr>()) {
933     if (GV->isConstant())
934       GV->setLinkage(llvm::GlobalVariable::WeakODRLinkage);
935     else
936       GV->setLinkage(llvm::GlobalVariable::WeakAnyLinkage);
937   } else if (!CompileOpts.NoCommon &&
938            !D->hasExternalStorage() && !D->getInit() &&
939            !D->getAttr<SectionAttr>()) {
940     GV->setLinkage(llvm::GlobalVariable::CommonLinkage);
941     // common vars aren't constant even if declared const.
942     GV->setConstant(false);
943   } else
944     GV->setLinkage(llvm::GlobalVariable::ExternalLinkage);
945 
946   SetCommonAttributes(D, GV);
947 
948   // Emit global variable debug information.
949   if (CGDebugInfo *DI = getDebugInfo()) {
950     DI->setLocation(D->getLocation());
951     DI->EmitGlobalVariable(GV, D);
952   }
953 }
954 
955 /// ReplaceUsesOfNonProtoTypeWithRealFunction - This function is called when we
956 /// implement a function with no prototype, e.g. "int foo() {}".  If there are
957 /// existing call uses of the old function in the module, this adjusts them to
958 /// call the new function directly.
959 ///
960 /// This is not just a cleanup: the always_inline pass requires direct calls to
961 /// functions to be able to inline them.  If there is a bitcast in the way, it
962 /// won't inline them.  Instcombine normally deletes these calls, but it isn't
963 /// run at -O0.
964 static void ReplaceUsesOfNonProtoTypeWithRealFunction(llvm::GlobalValue *Old,
965                                                       llvm::Function *NewFn) {
966   // If we're redefining a global as a function, don't transform it.
967   llvm::Function *OldFn = dyn_cast<llvm::Function>(Old);
968   if (OldFn == 0) return;
969 
970   const llvm::Type *NewRetTy = NewFn->getReturnType();
971   llvm::SmallVector<llvm::Value*, 4> ArgList;
972 
973   for (llvm::Value::use_iterator UI = OldFn->use_begin(), E = OldFn->use_end();
974        UI != E; ) {
975     // TODO: Do invokes ever occur in C code?  If so, we should handle them too.
976     unsigned OpNo = UI.getOperandNo();
977     llvm::CallInst *CI = dyn_cast<llvm::CallInst>(*UI++);
978     if (!CI || OpNo != 0) continue;
979 
980     // If the return types don't match exactly, and if the call isn't dead, then
981     // we can't transform this call.
982     if (CI->getType() != NewRetTy && !CI->use_empty())
983       continue;
984 
985     // If the function was passed too few arguments, don't transform.  If extra
986     // arguments were passed, we silently drop them.  If any of the types
987     // mismatch, we don't transform.
988     unsigned ArgNo = 0;
989     bool DontTransform = false;
990     for (llvm::Function::arg_iterator AI = NewFn->arg_begin(),
991          E = NewFn->arg_end(); AI != E; ++AI, ++ArgNo) {
992       if (CI->getNumOperands()-1 == ArgNo ||
993           CI->getOperand(ArgNo+1)->getType() != AI->getType()) {
994         DontTransform = true;
995         break;
996       }
997     }
998     if (DontTransform)
999       continue;
1000 
1001     // Okay, we can transform this.  Create the new call instruction and copy
1002     // over the required information.
1003     ArgList.append(CI->op_begin()+1, CI->op_begin()+1+ArgNo);
1004     llvm::CallInst *NewCall = llvm::CallInst::Create(NewFn, ArgList.begin(),
1005                                                      ArgList.end(), "", CI);
1006     ArgList.clear();
1007     if (NewCall->getType() != llvm::Type::VoidTy)
1008       NewCall->takeName(CI);
1009     NewCall->setCallingConv(CI->getCallingConv());
1010     NewCall->setAttributes(CI->getAttributes());
1011 
1012     // Finally, remove the old call, replacing any uses with the new one.
1013     if (!CI->use_empty())
1014       CI->replaceAllUsesWith(NewCall);
1015     CI->eraseFromParent();
1016   }
1017 }
1018 
1019 
1020 void CodeGenModule::EmitGlobalFunctionDefinition(GlobalDecl GD) {
1021   const llvm::FunctionType *Ty;
1022   const FunctionDecl *D = cast<FunctionDecl>(GD.getDecl());
1023 
1024   if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
1025     bool isVariadic = D->getType()->getAsFunctionProtoType()->isVariadic();
1026 
1027     Ty = getTypes().GetFunctionType(getTypes().getFunctionInfo(MD), isVariadic);
1028   } else {
1029     Ty = cast<llvm::FunctionType>(getTypes().ConvertType(D->getType()));
1030 
1031     // As a special case, make sure that definitions of K&R function
1032     // "type foo()" aren't declared as varargs (which forces the backend
1033     // to do unnecessary work).
1034     if (D->getType()->isFunctionNoProtoType()) {
1035       assert(Ty->isVarArg() && "Didn't lower type as expected");
1036       // Due to stret, the lowered function could have arguments.
1037       // Just create the same type as was lowered by ConvertType
1038       // but strip off the varargs bit.
1039       std::vector<const llvm::Type*> Args(Ty->param_begin(), Ty->param_end());
1040       Ty = llvm::FunctionType::get(Ty->getReturnType(), Args, false);
1041     }
1042   }
1043 
1044   // Get or create the prototype for the function.
1045   llvm::Constant *Entry = GetAddrOfFunction(GD, Ty);
1046 
1047   // Strip off a bitcast if we got one back.
1048   if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Entry)) {
1049     assert(CE->getOpcode() == llvm::Instruction::BitCast);
1050     Entry = CE->getOperand(0);
1051   }
1052 
1053 
1054   if (cast<llvm::GlobalValue>(Entry)->getType()->getElementType() != Ty) {
1055     llvm::GlobalValue *OldFn = cast<llvm::GlobalValue>(Entry);
1056 
1057     // If the types mismatch then we have to rewrite the definition.
1058     assert(OldFn->isDeclaration() &&
1059            "Shouldn't replace non-declaration");
1060 
1061     // F is the Function* for the one with the wrong type, we must make a new
1062     // Function* and update everything that used F (a declaration) with the new
1063     // Function* (which will be a definition).
1064     //
1065     // This happens if there is a prototype for a function
1066     // (e.g. "int f()") and then a definition of a different type
1067     // (e.g. "int f(int x)").  Start by making a new function of the
1068     // correct type, RAUW, then steal the name.
1069     GlobalDeclMap.erase(getMangledName(D));
1070     llvm::Function *NewFn = cast<llvm::Function>(GetAddrOfFunction(GD, Ty));
1071     NewFn->takeName(OldFn);
1072 
1073     // If this is an implementation of a function without a prototype, try to
1074     // replace any existing uses of the function (which may be calls) with uses
1075     // of the new function
1076     if (D->getType()->isFunctionNoProtoType()) {
1077       ReplaceUsesOfNonProtoTypeWithRealFunction(OldFn, NewFn);
1078       OldFn->removeDeadConstantUsers();
1079     }
1080 
1081     // Replace uses of F with the Function we will endow with a body.
1082     if (!Entry->use_empty()) {
1083       llvm::Constant *NewPtrForOldDecl =
1084         llvm::ConstantExpr::getBitCast(NewFn, Entry->getType());
1085       Entry->replaceAllUsesWith(NewPtrForOldDecl);
1086     }
1087 
1088     // Ok, delete the old function now, which is dead.
1089     OldFn->eraseFromParent();
1090 
1091     Entry = NewFn;
1092   }
1093 
1094   llvm::Function *Fn = cast<llvm::Function>(Entry);
1095 
1096   CodeGenFunction(*this).GenerateCode(D, Fn);
1097 
1098   SetFunctionDefinitionAttributes(D, Fn);
1099   SetLLVMFunctionAttributesForDefinition(D, Fn);
1100 
1101   if (const ConstructorAttr *CA = D->getAttr<ConstructorAttr>())
1102     AddGlobalCtor(Fn, CA->getPriority());
1103   if (const DestructorAttr *DA = D->getAttr<DestructorAttr>())
1104     AddGlobalDtor(Fn, DA->getPriority());
1105 }
1106 
1107 void CodeGenModule::EmitAliasDefinition(const ValueDecl *D) {
1108   const AliasAttr *AA = D->getAttr<AliasAttr>();
1109   assert(AA && "Not an alias?");
1110 
1111   const llvm::Type *DeclTy = getTypes().ConvertTypeForMem(D->getType());
1112 
1113   // Unique the name through the identifier table.
1114   const char *AliaseeName = AA->getAliasee().c_str();
1115   AliaseeName = getContext().Idents.get(AliaseeName).getName();
1116 
1117   // Create a reference to the named value.  This ensures that it is emitted
1118   // if a deferred decl.
1119   llvm::Constant *Aliasee;
1120   if (isa<llvm::FunctionType>(DeclTy))
1121     Aliasee = GetOrCreateLLVMFunction(AliaseeName, DeclTy, GlobalDecl());
1122   else
1123     Aliasee = GetOrCreateLLVMGlobal(AliaseeName,
1124                                     llvm::PointerType::getUnqual(DeclTy), 0);
1125 
1126   // Create the new alias itself, but don't set a name yet.
1127   llvm::GlobalValue *GA =
1128     new llvm::GlobalAlias(Aliasee->getType(),
1129                           llvm::Function::ExternalLinkage,
1130                           "", Aliasee, &getModule());
1131 
1132   // See if there is already something with the alias' name in the module.
1133   const char *MangledName = getMangledName(D);
1134   llvm::GlobalValue *&Entry = GlobalDeclMap[MangledName];
1135 
1136   if (Entry && !Entry->isDeclaration()) {
1137     // If there is a definition in the module, then it wins over the alias.
1138     // This is dubious, but allow it to be safe.  Just ignore the alias.
1139     GA->eraseFromParent();
1140     return;
1141   }
1142 
1143   if (Entry) {
1144     // If there is a declaration in the module, then we had an extern followed
1145     // by the alias, as in:
1146     //   extern int test6();
1147     //   ...
1148     //   int test6() __attribute__((alias("test7")));
1149     //
1150     // Remove it and replace uses of it with the alias.
1151 
1152     Entry->replaceAllUsesWith(llvm::ConstantExpr::getBitCast(GA,
1153                                                           Entry->getType()));
1154     Entry->eraseFromParent();
1155   }
1156 
1157   // Now we know that there is no conflict, set the name.
1158   Entry = GA;
1159   GA->setName(MangledName);
1160 
1161   // Set attributes which are particular to an alias; this is a
1162   // specialization of the attributes which may be set on a global
1163   // variable/function.
1164   if (D->hasAttr<DLLExportAttr>()) {
1165     if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
1166       // The dllexport attribute is ignored for undefined symbols.
1167       if (FD->getBody())
1168         GA->setLinkage(llvm::Function::DLLExportLinkage);
1169     } else {
1170       GA->setLinkage(llvm::Function::DLLExportLinkage);
1171     }
1172   } else if (D->hasAttr<WeakAttr>() ||
1173              D->hasAttr<WeakImportAttr>()) {
1174     GA->setLinkage(llvm::Function::WeakAnyLinkage);
1175   }
1176 
1177   SetCommonAttributes(D, GA);
1178 }
1179 
1180 /// getBuiltinLibFunction - Given a builtin id for a function like
1181 /// "__builtin_fabsf", return a Function* for "fabsf".
1182 llvm::Value *CodeGenModule::getBuiltinLibFunction(unsigned BuiltinID) {
1183   assert((Context.BuiltinInfo.isLibFunction(BuiltinID) ||
1184           Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) &&
1185          "isn't a lib fn");
1186 
1187   // Get the name, skip over the __builtin_ prefix (if necessary).
1188   const char *Name = Context.BuiltinInfo.GetName(BuiltinID);
1189   if (Context.BuiltinInfo.isLibFunction(BuiltinID))
1190     Name += 10;
1191 
1192   // Get the type for the builtin.
1193   ASTContext::GetBuiltinTypeError Error;
1194   QualType Type = Context.GetBuiltinType(BuiltinID, Error);
1195   assert(Error == ASTContext::GE_None && "Can't get builtin type");
1196 
1197   const llvm::FunctionType *Ty =
1198     cast<llvm::FunctionType>(getTypes().ConvertType(Type));
1199 
1200   // Unique the name through the identifier table.
1201   Name = getContext().Idents.get(Name).getName();
1202   // FIXME: param attributes for sext/zext etc.
1203   return GetOrCreateLLVMFunction(Name, Ty, GlobalDecl());
1204 }
1205 
1206 llvm::Function *CodeGenModule::getIntrinsic(unsigned IID,const llvm::Type **Tys,
1207                                             unsigned NumTys) {
1208   return llvm::Intrinsic::getDeclaration(&getModule(),
1209                                          (llvm::Intrinsic::ID)IID, Tys, NumTys);
1210 }
1211 
1212 llvm::Function *CodeGenModule::getMemCpyFn() {
1213   if (MemCpyFn) return MemCpyFn;
1214   const llvm::Type *IntPtr = TheTargetData.getIntPtrType();
1215   return MemCpyFn = getIntrinsic(llvm::Intrinsic::memcpy, &IntPtr, 1);
1216 }
1217 
1218 llvm::Function *CodeGenModule::getMemMoveFn() {
1219   if (MemMoveFn) return MemMoveFn;
1220   const llvm::Type *IntPtr = TheTargetData.getIntPtrType();
1221   return MemMoveFn = getIntrinsic(llvm::Intrinsic::memmove, &IntPtr, 1);
1222 }
1223 
1224 llvm::Function *CodeGenModule::getMemSetFn() {
1225   if (MemSetFn) return MemSetFn;
1226   const llvm::Type *IntPtr = TheTargetData.getIntPtrType();
1227   return MemSetFn = getIntrinsic(llvm::Intrinsic::memset, &IntPtr, 1);
1228 }
1229 
1230 static void appendFieldAndPadding(CodeGenModule &CGM,
1231                                   std::vector<llvm::Constant*>& Fields,
1232                                   FieldDecl *FieldD, FieldDecl *NextFieldD,
1233                                   llvm::Constant* Field,
1234                                   RecordDecl* RD, const llvm::StructType *STy) {
1235   // Append the field.
1236   Fields.push_back(Field);
1237 
1238   int StructFieldNo = CGM.getTypes().getLLVMFieldNo(FieldD);
1239 
1240   int NextStructFieldNo;
1241   if (!NextFieldD) {
1242     NextStructFieldNo = STy->getNumElements();
1243   } else {
1244     NextStructFieldNo = CGM.getTypes().getLLVMFieldNo(NextFieldD);
1245   }
1246 
1247   // Append padding
1248   for (int i = StructFieldNo + 1; i < NextStructFieldNo; i++) {
1249     llvm::Constant *C =
1250       llvm::Constant::getNullValue(STy->getElementType(StructFieldNo + 1));
1251 
1252     Fields.push_back(C);
1253   }
1254 }
1255 
1256 static llvm::StringMapEntry<llvm::Constant*> &
1257 GetConstantCFStringEntry(llvm::StringMap<llvm::Constant*> &Map,
1258                          const StringLiteral *Literal,
1259                          bool TargetIsLSB,
1260                          bool &IsUTF16,
1261                          unsigned &StringLength) {
1262   unsigned NumBytes = Literal->getByteLength();
1263 
1264   // Check for simple case.
1265   if (!Literal->containsNonAsciiOrNull()) {
1266     StringLength = NumBytes;
1267     return Map.GetOrCreateValue(llvm::StringRef(Literal->getStrData(),
1268                                                 StringLength));
1269   }
1270 
1271   // Otherwise, convert the UTF8 literals into a byte string.
1272   llvm::SmallVector<UTF16, 128> ToBuf(NumBytes);
1273   const UTF8 *FromPtr = (UTF8 *)Literal->getStrData();
1274   UTF16 *ToPtr = &ToBuf[0];
1275 
1276   ConversionResult Result = ConvertUTF8toUTF16(&FromPtr, FromPtr + NumBytes,
1277                                                &ToPtr, ToPtr + NumBytes,
1278                                                strictConversion);
1279 
1280   // Check for conversion failure.
1281   if (Result != conversionOK) {
1282     // FIXME: Have Sema::CheckObjCString() validate the UTF-8 string and remove
1283     // this duplicate code.
1284     assert(Result == sourceIllegal && "UTF-8 to UTF-16 conversion failed");
1285     StringLength = NumBytes;
1286     return Map.GetOrCreateValue(llvm::StringRef(Literal->getStrData(),
1287                                                 StringLength));
1288   }
1289 
1290   // ConvertUTF8toUTF16 returns the length in ToPtr.
1291   StringLength = ToPtr - &ToBuf[0];
1292 
1293   // Render the UTF-16 string into a byte array and convert to the target byte
1294   // order.
1295   //
1296   // FIXME: This isn't something we should need to do here.
1297   llvm::SmallString<128> AsBytes;
1298   AsBytes.reserve(StringLength * 2);
1299   for (unsigned i = 0; i != StringLength; ++i) {
1300     unsigned short Val = ToBuf[i];
1301     if (TargetIsLSB) {
1302       AsBytes.push_back(Val & 0xFF);
1303       AsBytes.push_back(Val >> 8);
1304     } else {
1305       AsBytes.push_back(Val >> 8);
1306       AsBytes.push_back(Val & 0xFF);
1307     }
1308   }
1309   // Append one extra null character, the second is automatically added by our
1310   // caller.
1311   AsBytes.push_back(0);
1312 
1313   IsUTF16 = true;
1314   return Map.GetOrCreateValue(llvm::StringRef(AsBytes.data(), AsBytes.size()));
1315 }
1316 
1317 llvm::Constant *
1318 CodeGenModule::GetAddrOfConstantCFString(const StringLiteral *Literal) {
1319   unsigned StringLength = 0;
1320   bool isUTF16 = false;
1321   llvm::StringMapEntry<llvm::Constant*> &Entry =
1322     GetConstantCFStringEntry(CFConstantStringMap, Literal,
1323                              getTargetData().isLittleEndian(),
1324                              isUTF16, StringLength);
1325 
1326   if (llvm::Constant *C = Entry.getValue())
1327     return C;
1328 
1329   llvm::Constant *Zero = llvm::Constant::getNullValue(llvm::Type::Int32Ty);
1330   llvm::Constant *Zeros[] = { Zero, Zero };
1331 
1332   // If we don't already have it, get __CFConstantStringClassReference.
1333   if (!CFConstantStringClassRef) {
1334     const llvm::Type *Ty = getTypes().ConvertType(getContext().IntTy);
1335     Ty = llvm::ArrayType::get(Ty, 0);
1336     llvm::Constant *GV = CreateRuntimeVariable(Ty,
1337                                            "__CFConstantStringClassReference");
1338     // Decay array -> ptr
1339     CFConstantStringClassRef =
1340       llvm::ConstantExpr::getGetElementPtr(GV, Zeros, 2);
1341   }
1342 
1343   QualType CFTy = getContext().getCFConstantStringType();
1344   RecordDecl *CFRD = CFTy->getAs<RecordType>()->getDecl();
1345 
1346   const llvm::StructType *STy =
1347     cast<llvm::StructType>(getTypes().ConvertType(CFTy));
1348 
1349   std::vector<llvm::Constant*> Fields;
1350   RecordDecl::field_iterator Field = CFRD->field_begin();
1351 
1352   // Class pointer.
1353   FieldDecl *CurField = *Field++;
1354   FieldDecl *NextField = *Field++;
1355   appendFieldAndPadding(*this, Fields, CurField, NextField,
1356                         CFConstantStringClassRef, CFRD, STy);
1357 
1358   // Flags.
1359   CurField = NextField;
1360   NextField = *Field++;
1361   const llvm::Type *Ty = getTypes().ConvertType(getContext().UnsignedIntTy);
1362   appendFieldAndPadding(*this, Fields, CurField, NextField,
1363                         isUTF16 ? llvm::ConstantInt::get(Ty, 0x07d0)
1364                                 : llvm::ConstantInt::get(Ty, 0x07C8),
1365                         CFRD, STy);
1366 
1367   // String pointer.
1368   CurField = NextField;
1369   NextField = *Field++;
1370   llvm::Constant *C = llvm::ConstantArray::get(Entry.getKey().str());
1371 
1372   const char *Sect, *Prefix;
1373   bool isConstant;
1374   llvm::GlobalValue::LinkageTypes Linkage;
1375   if (isUTF16) {
1376     Prefix = getContext().Target.getUnicodeStringSymbolPrefix();
1377     Sect = getContext().Target.getUnicodeStringSection();
1378     // FIXME: why do utf strings get "l" labels instead of "L" labels?
1379     Linkage = llvm::GlobalValue::InternalLinkage;
1380     // FIXME: Why does GCC not set constant here?
1381     isConstant = false;
1382   } else {
1383     Prefix = ".str";
1384     Sect = getContext().Target.getCFStringDataSection();
1385     Linkage = llvm::GlobalValue::PrivateLinkage;
1386     // FIXME: -fwritable-strings should probably affect this, but we
1387     // are following gcc here.
1388     isConstant = true;
1389   }
1390   llvm::GlobalVariable *GV =
1391     new llvm::GlobalVariable(getModule(), C->getType(), isConstant,
1392                              Linkage, C, Prefix);
1393   if (Sect)
1394     GV->setSection(Sect);
1395   if (isUTF16) {
1396     unsigned Align = getContext().getTypeAlign(getContext().ShortTy)/8;
1397     GV->setAlignment(Align);
1398   }
1399   appendFieldAndPadding(*this, Fields, CurField, NextField,
1400                         llvm::ConstantExpr::getGetElementPtr(GV, Zeros, 2),
1401                         CFRD, STy);
1402 
1403   // String length.
1404   CurField = NextField;
1405   NextField = 0;
1406   Ty = getTypes().ConvertType(getContext().LongTy);
1407   appendFieldAndPadding(*this, Fields, CurField, NextField,
1408                         llvm::ConstantInt::get(Ty, StringLength), CFRD, STy);
1409 
1410   // The struct.
1411   C = llvm::ConstantStruct::get(STy, Fields);
1412   GV = new llvm::GlobalVariable(getModule(), C->getType(), true,
1413                                 llvm::GlobalVariable::PrivateLinkage, C,
1414                                 "_unnamed_cfstring_");
1415   if (const char *Sect = getContext().Target.getCFStringSection())
1416     GV->setSection(Sect);
1417   Entry.setValue(GV);
1418 
1419   return GV;
1420 }
1421 
1422 /// GetStringForStringLiteral - Return the appropriate bytes for a
1423 /// string literal, properly padded to match the literal type.
1424 std::string CodeGenModule::GetStringForStringLiteral(const StringLiteral *E) {
1425   const char *StrData = E->getStrData();
1426   unsigned Len = E->getByteLength();
1427 
1428   const ConstantArrayType *CAT =
1429     getContext().getAsConstantArrayType(E->getType());
1430   assert(CAT && "String isn't pointer or array!");
1431 
1432   // Resize the string to the right size.
1433   std::string Str(StrData, StrData+Len);
1434   uint64_t RealLen = CAT->getSize().getZExtValue();
1435 
1436   if (E->isWide())
1437     RealLen *= getContext().Target.getWCharWidth()/8;
1438 
1439   Str.resize(RealLen, '\0');
1440 
1441   return Str;
1442 }
1443 
1444 /// GetAddrOfConstantStringFromLiteral - Return a pointer to a
1445 /// constant array for the given string literal.
1446 llvm::Constant *
1447 CodeGenModule::GetAddrOfConstantStringFromLiteral(const StringLiteral *S) {
1448   // FIXME: This can be more efficient.
1449   return GetAddrOfConstantString(GetStringForStringLiteral(S));
1450 }
1451 
1452 /// GetAddrOfConstantStringFromObjCEncode - Return a pointer to a constant
1453 /// array for the given ObjCEncodeExpr node.
1454 llvm::Constant *
1455 CodeGenModule::GetAddrOfConstantStringFromObjCEncode(const ObjCEncodeExpr *E) {
1456   std::string Str;
1457   getContext().getObjCEncodingForType(E->getEncodedType(), Str);
1458 
1459   return GetAddrOfConstantCString(Str);
1460 }
1461 
1462 
1463 /// GenerateWritableString -- Creates storage for a string literal.
1464 static llvm::Constant *GenerateStringLiteral(const std::string &str,
1465                                              bool constant,
1466                                              CodeGenModule &CGM,
1467                                              const char *GlobalName) {
1468   // Create Constant for this string literal. Don't add a '\0'.
1469   llvm::Constant *C = llvm::ConstantArray::get(str, false);
1470 
1471   // Create a global variable for this string
1472   return new llvm::GlobalVariable(CGM.getModule(), C->getType(), constant,
1473                                   llvm::GlobalValue::PrivateLinkage,
1474                                   C, GlobalName);
1475 }
1476 
1477 /// GetAddrOfConstantString - Returns a pointer to a character array
1478 /// containing the literal. This contents are exactly that of the
1479 /// given string, i.e. it will not be null terminated automatically;
1480 /// see GetAddrOfConstantCString. Note that whether the result is
1481 /// actually a pointer to an LLVM constant depends on
1482 /// Feature.WriteableStrings.
1483 ///
1484 /// The result has pointer to array type.
1485 llvm::Constant *CodeGenModule::GetAddrOfConstantString(const std::string &str,
1486                                                        const char *GlobalName) {
1487   bool IsConstant = !Features.WritableStrings;
1488 
1489   // Get the default prefix if a name wasn't specified.
1490   if (!GlobalName)
1491     GlobalName = ".str";
1492 
1493   // Don't share any string literals if strings aren't constant.
1494   if (!IsConstant)
1495     return GenerateStringLiteral(str, false, *this, GlobalName);
1496 
1497   llvm::StringMapEntry<llvm::Constant *> &Entry =
1498     ConstantStringMap.GetOrCreateValue(&str[0], &str[str.length()]);
1499 
1500   if (Entry.getValue())
1501     return Entry.getValue();
1502 
1503   // Create a global variable for this.
1504   llvm::Constant *C = GenerateStringLiteral(str, true, *this, GlobalName);
1505   Entry.setValue(C);
1506   return C;
1507 }
1508 
1509 /// GetAddrOfConstantCString - Returns a pointer to a character
1510 /// array containing the literal and a terminating '\-'
1511 /// character. The result has pointer to array type.
1512 llvm::Constant *CodeGenModule::GetAddrOfConstantCString(const std::string &str,
1513                                                         const char *GlobalName){
1514   return GetAddrOfConstantString(str + '\0', GlobalName);
1515 }
1516 
1517 /// EmitObjCPropertyImplementations - Emit information for synthesized
1518 /// properties for an implementation.
1519 void CodeGenModule::EmitObjCPropertyImplementations(const
1520                                                     ObjCImplementationDecl *D) {
1521   for (ObjCImplementationDecl::propimpl_iterator
1522          i = D->propimpl_begin(), e = D->propimpl_end(); i != e; ++i) {
1523     ObjCPropertyImplDecl *PID = *i;
1524 
1525     // Dynamic is just for type-checking.
1526     if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) {
1527       ObjCPropertyDecl *PD = PID->getPropertyDecl();
1528 
1529       // Determine which methods need to be implemented, some may have
1530       // been overridden. Note that ::isSynthesized is not the method
1531       // we want, that just indicates if the decl came from a
1532       // property. What we want to know is if the method is defined in
1533       // this implementation.
1534       if (!D->getInstanceMethod(PD->getGetterName()))
1535         CodeGenFunction(*this).GenerateObjCGetter(
1536                                  const_cast<ObjCImplementationDecl *>(D), PID);
1537       if (!PD->isReadOnly() &&
1538           !D->getInstanceMethod(PD->getSetterName()))
1539         CodeGenFunction(*this).GenerateObjCSetter(
1540                                  const_cast<ObjCImplementationDecl *>(D), PID);
1541     }
1542   }
1543 }
1544 
1545 /// EmitNamespace - Emit all declarations in a namespace.
1546 void CodeGenModule::EmitNamespace(const NamespaceDecl *ND) {
1547   for (RecordDecl::decl_iterator I = ND->decls_begin(), E = ND->decls_end();
1548        I != E; ++I)
1549     EmitTopLevelDecl(*I);
1550 }
1551 
1552 // EmitLinkageSpec - Emit all declarations in a linkage spec.
1553 void CodeGenModule::EmitLinkageSpec(const LinkageSpecDecl *LSD) {
1554   if (LSD->getLanguage() != LinkageSpecDecl::lang_c &&
1555       LSD->getLanguage() != LinkageSpecDecl::lang_cxx) {
1556     ErrorUnsupported(LSD, "linkage spec");
1557     return;
1558   }
1559 
1560   for (RecordDecl::decl_iterator I = LSD->decls_begin(), E = LSD->decls_end();
1561        I != E; ++I)
1562     EmitTopLevelDecl(*I);
1563 }
1564 
1565 /// EmitTopLevelDecl - Emit code for a single top level declaration.
1566 void CodeGenModule::EmitTopLevelDecl(Decl *D) {
1567   // If an error has occurred, stop code generation, but continue
1568   // parsing and semantic analysis (to ensure all warnings and errors
1569   // are emitted).
1570   if (Diags.hasErrorOccurred())
1571     return;
1572 
1573   // Ignore dependent declarations.
1574   if (D->getDeclContext() && D->getDeclContext()->isDependentContext())
1575     return;
1576 
1577   switch (D->getKind()) {
1578   case Decl::CXXMethod:
1579   case Decl::Function:
1580     // Skip function templates
1581     if (cast<FunctionDecl>(D)->getDescribedFunctionTemplate())
1582       return;
1583 
1584     // Fall through
1585 
1586   case Decl::Var:
1587     EmitGlobal(GlobalDecl(cast<ValueDecl>(D)));
1588     break;
1589 
1590   // C++ Decls
1591   case Decl::Namespace:
1592     EmitNamespace(cast<NamespaceDecl>(D));
1593     break;
1594     // No code generation needed.
1595   case Decl::Using:
1596   case Decl::ClassTemplate:
1597   case Decl::FunctionTemplate:
1598     break;
1599   case Decl::CXXConstructor:
1600     EmitCXXConstructors(cast<CXXConstructorDecl>(D));
1601     break;
1602   case Decl::CXXDestructor:
1603     EmitCXXDestructors(cast<CXXDestructorDecl>(D));
1604     break;
1605 
1606   case Decl::StaticAssert:
1607     // Nothing to do.
1608     break;
1609 
1610   // Objective-C Decls
1611 
1612   // Forward declarations, no (immediate) code generation.
1613   case Decl::ObjCClass:
1614   case Decl::ObjCForwardProtocol:
1615   case Decl::ObjCCategory:
1616   case Decl::ObjCInterface:
1617     break;
1618 
1619   case Decl::ObjCProtocol:
1620     Runtime->GenerateProtocol(cast<ObjCProtocolDecl>(D));
1621     break;
1622 
1623   case Decl::ObjCCategoryImpl:
1624     // Categories have properties but don't support synthesize so we
1625     // can ignore them here.
1626     Runtime->GenerateCategory(cast<ObjCCategoryImplDecl>(D));
1627     break;
1628 
1629   case Decl::ObjCImplementation: {
1630     ObjCImplementationDecl *OMD = cast<ObjCImplementationDecl>(D);
1631     EmitObjCPropertyImplementations(OMD);
1632     Runtime->GenerateClass(OMD);
1633     break;
1634   }
1635   case Decl::ObjCMethod: {
1636     ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(D);
1637     // If this is not a prototype, emit the body.
1638     if (OMD->getBody())
1639       CodeGenFunction(*this).GenerateObjCMethod(OMD);
1640     break;
1641   }
1642   case Decl::ObjCCompatibleAlias:
1643     // compatibility-alias is a directive and has no code gen.
1644     break;
1645 
1646   case Decl::LinkageSpec:
1647     EmitLinkageSpec(cast<LinkageSpecDecl>(D));
1648     break;
1649 
1650   case Decl::FileScopeAsm: {
1651     FileScopeAsmDecl *AD = cast<FileScopeAsmDecl>(D);
1652     std::string AsmString(AD->getAsmString()->getStrData(),
1653                           AD->getAsmString()->getByteLength());
1654 
1655     const std::string &S = getModule().getModuleInlineAsm();
1656     if (S.empty())
1657       getModule().setModuleInlineAsm(AsmString);
1658     else
1659       getModule().setModuleInlineAsm(S + '\n' + AsmString);
1660     break;
1661   }
1662 
1663   default:
1664     // Make sure we handled everything we should, every other kind is a
1665     // non-top-level decl.  FIXME: Would be nice to have an isTopLevelDeclKind
1666     // function. Need to recode Decl::Kind to do that easily.
1667     assert(isa<TypeDecl>(D) && "Unsupported decl kind");
1668   }
1669 }
1670