1 //===--- CGDeclCXX.cpp - Emit LLVM Code for C++ declarations --------------===//
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 contains code dealing with code generation of C++ declarations
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "CodeGenFunction.h"
15 #include "CGCXXABI.h"
16 #include "CGObjCRuntime.h"
17 #include "clang/Frontend/CodeGenOptions.h"
18 #include "llvm/ADT/StringExtras.h"
19 #include "llvm/IR/Intrinsics.h"
20 
21 using namespace clang;
22 using namespace CodeGen;
23 
24 static void EmitDeclInit(CodeGenFunction &CGF, const VarDecl &D,
25                          llvm::Constant *DeclPtr) {
26   assert(D.hasGlobalStorage() && "VarDecl must have global storage!");
27   assert(!D.getType()->isReferenceType() &&
28          "Should not call EmitDeclInit on a reference!");
29 
30   ASTContext &Context = CGF.getContext();
31 
32   CharUnits alignment = Context.getDeclAlign(&D);
33   QualType type = D.getType();
34   LValue lv = CGF.MakeAddrLValue(DeclPtr, type, alignment);
35 
36   const Expr *Init = D.getInit();
37   switch (CGF.getEvaluationKind(type)) {
38   case TEK_Scalar: {
39     CodeGenModule &CGM = CGF.CGM;
40     if (lv.isObjCStrong())
41       CGM.getObjCRuntime().EmitObjCGlobalAssign(CGF, CGF.EmitScalarExpr(Init),
42                                                 DeclPtr, D.getTLSKind());
43     else if (lv.isObjCWeak())
44       CGM.getObjCRuntime().EmitObjCWeakAssign(CGF, CGF.EmitScalarExpr(Init),
45                                               DeclPtr);
46     else
47       CGF.EmitScalarInit(Init, &D, lv, false);
48     return;
49   }
50   case TEK_Complex:
51     CGF.EmitComplexExprIntoLValue(Init, lv, /*isInit*/ true);
52     return;
53   case TEK_Aggregate:
54     CGF.EmitAggExpr(Init, AggValueSlot::forLValue(lv,AggValueSlot::IsDestructed,
55                                           AggValueSlot::DoesNotNeedGCBarriers,
56                                                   AggValueSlot::IsNotAliased));
57     return;
58   }
59   llvm_unreachable("bad evaluation kind");
60 }
61 
62 /// Emit code to cause the destruction of the given variable with
63 /// static storage duration.
64 static void EmitDeclDestroy(CodeGenFunction &CGF, const VarDecl &D,
65                             llvm::Constant *addr) {
66   CodeGenModule &CGM = CGF.CGM;
67 
68   // FIXME:  __attribute__((cleanup)) ?
69 
70   QualType type = D.getType();
71   QualType::DestructionKind dtorKind = type.isDestructedType();
72 
73   switch (dtorKind) {
74   case QualType::DK_none:
75     return;
76 
77   case QualType::DK_cxx_destructor:
78     break;
79 
80   case QualType::DK_objc_strong_lifetime:
81   case QualType::DK_objc_weak_lifetime:
82     // We don't care about releasing objects during process teardown.
83     assert(!D.getTLSKind() && "should have rejected this");
84     return;
85   }
86 
87   llvm::Constant *function;
88   llvm::Constant *argument;
89 
90   // Special-case non-array C++ destructors, where there's a function
91   // with the right signature that we can just call.
92   const CXXRecordDecl *record = 0;
93   if (dtorKind == QualType::DK_cxx_destructor &&
94       (record = type->getAsCXXRecordDecl())) {
95     assert(!record->hasTrivialDestructor());
96     CXXDestructorDecl *dtor = record->getDestructor();
97 
98     function = CGM.GetAddrOfCXXDestructor(dtor, Dtor_Complete);
99     argument = addr;
100 
101   // Otherwise, the standard logic requires a helper function.
102   } else {
103     function = CodeGenFunction(CGM).generateDestroyHelper(addr, type,
104                                                   CGF.getDestroyer(dtorKind),
105                                                   CGF.needsEHCleanup(dtorKind));
106     argument = llvm::Constant::getNullValue(CGF.Int8PtrTy);
107   }
108 
109   CGM.getCXXABI().registerGlobalDtor(CGF, D, function, argument);
110 }
111 
112 /// Emit code to cause the variable at the given address to be considered as
113 /// constant from this point onwards.
114 static void EmitDeclInvariant(CodeGenFunction &CGF, const VarDecl &D,
115                               llvm::Constant *Addr) {
116   // Don't emit the intrinsic if we're not optimizing.
117   if (!CGF.CGM.getCodeGenOpts().OptimizationLevel)
118     return;
119 
120   // Grab the llvm.invariant.start intrinsic.
121   llvm::Intrinsic::ID InvStartID = llvm::Intrinsic::invariant_start;
122   llvm::Constant *InvariantStart = CGF.CGM.getIntrinsic(InvStartID);
123 
124   // Emit a call with the size in bytes of the object.
125   CharUnits WidthChars = CGF.getContext().getTypeSizeInChars(D.getType());
126   uint64_t Width = WidthChars.getQuantity();
127   llvm::Value *Args[2] = { llvm::ConstantInt::getSigned(CGF.Int64Ty, Width),
128                            llvm::ConstantExpr::getBitCast(Addr, CGF.Int8PtrTy)};
129   CGF.Builder.CreateCall(InvariantStart, Args);
130 }
131 
132 void CodeGenFunction::EmitCXXGlobalVarDeclInit(const VarDecl &D,
133                                                llvm::Constant *DeclPtr,
134                                                bool PerformInit) {
135 
136   const Expr *Init = D.getInit();
137   QualType T = D.getType();
138 
139   if (!T->isReferenceType()) {
140     if (PerformInit)
141       EmitDeclInit(*this, D, DeclPtr);
142     if (CGM.isTypeConstant(D.getType(), true))
143       EmitDeclInvariant(*this, D, DeclPtr);
144     else
145       EmitDeclDestroy(*this, D, DeclPtr);
146     return;
147   }
148 
149   assert(PerformInit && "cannot have constant initializer which needs "
150          "destruction for reference");
151   unsigned Alignment = getContext().getDeclAlign(&D).getQuantity();
152   RValue RV = EmitReferenceBindingToExpr(Init, &D);
153   EmitStoreOfScalar(RV.getScalarVal(), DeclPtr, false, Alignment, T);
154 }
155 
156 static llvm::Function *
157 CreateGlobalInitOrDestructFunction(CodeGenModule &CGM,
158                                    llvm::FunctionType *ty,
159                                    const Twine &name,
160                                    bool TLS = false);
161 
162 /// Create a stub function, suitable for being passed to atexit,
163 /// which passes the given address to the given destructor function.
164 static llvm::Constant *createAtExitStub(CodeGenModule &CGM,
165                                         llvm::Constant *dtor,
166                                         llvm::Constant *addr) {
167   // Get the destructor function type, void(*)(void).
168   llvm::FunctionType *ty = llvm::FunctionType::get(CGM.VoidTy, false);
169   llvm::Function *fn =
170     CreateGlobalInitOrDestructFunction(CGM, ty,
171                                        Twine("__dtor_", addr->getName()));
172 
173   CodeGenFunction CGF(CGM);
174 
175   // Initialize debug info if needed.
176   CGF.maybeInitializeDebugInfo();
177 
178   CGF.StartFunction(GlobalDecl(), CGM.getContext().VoidTy, fn,
179                     CGM.getTypes().arrangeNullaryFunction(),
180                     FunctionArgList(), SourceLocation());
181 
182   llvm::CallInst *call = CGF.Builder.CreateCall(dtor, addr);
183 
184  // Make sure the call and the callee agree on calling convention.
185   if (llvm::Function *dtorFn =
186         dyn_cast<llvm::Function>(dtor->stripPointerCasts()))
187     call->setCallingConv(dtorFn->getCallingConv());
188 
189   CGF.FinishFunction();
190 
191   return fn;
192 }
193 
194 /// Register a global destructor using the C atexit runtime function.
195 void CodeGenFunction::registerGlobalDtorWithAtExit(llvm::Constant *dtor,
196                                                    llvm::Constant *addr) {
197   // Create a function which calls the destructor.
198   llvm::Constant *dtorStub = createAtExitStub(CGM, dtor, addr);
199 
200   // extern "C" int atexit(void (*f)(void));
201   llvm::FunctionType *atexitTy =
202     llvm::FunctionType::get(IntTy, dtorStub->getType(), false);
203 
204   llvm::Constant *atexit =
205     CGM.CreateRuntimeFunction(atexitTy, "atexit");
206   if (llvm::Function *atexitFn = dyn_cast<llvm::Function>(atexit))
207     atexitFn->setDoesNotThrow();
208 
209   EmitNounwindRuntimeCall(atexit, dtorStub);
210 }
211 
212 void CodeGenFunction::EmitCXXGuardedInit(const VarDecl &D,
213                                          llvm::GlobalVariable *DeclPtr,
214                                          bool PerformInit) {
215   // If we've been asked to forbid guard variables, emit an error now.
216   // This diagnostic is hard-coded for Darwin's use case;  we can find
217   // better phrasing if someone else needs it.
218   if (CGM.getCodeGenOpts().ForbidGuardVariables)
219     CGM.Error(D.getLocation(),
220               "this initialization requires a guard variable, which "
221               "the kernel does not support");
222 
223   CGM.getCXXABI().EmitGuardedInit(*this, D, DeclPtr, PerformInit);
224 }
225 
226 static llvm::Function *
227 CreateGlobalInitOrDestructFunction(CodeGenModule &CGM,
228                                    llvm::FunctionType *FTy,
229                                    const Twine &Name, bool TLS) {
230   llvm::Function *Fn =
231     llvm::Function::Create(FTy, llvm::GlobalValue::InternalLinkage,
232                            Name, &CGM.getModule());
233   if (!CGM.getLangOpts().AppleKext && !TLS) {
234     // Set the section if needed.
235     if (const char *Section =
236           CGM.getTarget().getStaticInitSectionSpecifier())
237       Fn->setSection(Section);
238   }
239 
240   Fn->setCallingConv(CGM.getRuntimeCC());
241 
242   if (!CGM.getLangOpts().Exceptions)
243     Fn->setDoesNotThrow();
244 
245   if (CGM.getSanOpts().Address)
246     Fn->addFnAttr(llvm::Attribute::SanitizeAddress);
247   if (CGM.getSanOpts().Thread)
248     Fn->addFnAttr(llvm::Attribute::SanitizeThread);
249   if (CGM.getSanOpts().Memory)
250     Fn->addFnAttr(llvm::Attribute::SanitizeMemory);
251 
252   return Fn;
253 }
254 
255 void
256 CodeGenModule::EmitCXXGlobalVarDeclInitFunc(const VarDecl *D,
257                                             llvm::GlobalVariable *Addr,
258                                             bool PerformInit) {
259   llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
260 
261   // Create a variable initialization function.
262   llvm::Function *Fn =
263     CreateGlobalInitOrDestructFunction(*this, FTy, "__cxx_global_var_init");
264 
265   CodeGenFunction(*this).GenerateCXXGlobalVarDeclInitFunc(Fn, D, Addr,
266                                                           PerformInit);
267 
268   if (D->getTLSKind()) {
269     // FIXME: Should we support init_priority for thread_local?
270     // FIXME: Ideally, initialization of instantiated thread_local static data
271     // members of class templates should not trigger initialization of other
272     // entities in the TU.
273     // FIXME: We only need to register one __cxa_thread_atexit function for the
274     // entire TU.
275     CXXThreadLocalInits.push_back(Fn);
276   } else if (D->hasAttr<InitPriorityAttr>()) {
277     unsigned int order = D->getAttr<InitPriorityAttr>()->getPriority();
278     OrderGlobalInits Key(order, PrioritizedCXXGlobalInits.size());
279     PrioritizedCXXGlobalInits.push_back(std::make_pair(Key, Fn));
280     DelayedCXXInitPosition.erase(D);
281   } else {
282     llvm::DenseMap<const Decl *, unsigned>::iterator I =
283       DelayedCXXInitPosition.find(D);
284     if (I == DelayedCXXInitPosition.end()) {
285       CXXGlobalInits.push_back(Fn);
286     } else {
287       assert(CXXGlobalInits[I->second] == 0);
288       CXXGlobalInits[I->second] = Fn;
289       DelayedCXXInitPosition.erase(I);
290     }
291   }
292 }
293 
294 void CodeGenModule::EmitCXXThreadLocalInitFunc() {
295   llvm::Function *InitFn = 0;
296   if (!CXXThreadLocalInits.empty()) {
297     // Generate a guarded initialization function.
298     llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
299     InitFn = CreateGlobalInitOrDestructFunction(
300         *this, FTy, "__tls_init", /*TLS*/ true);
301     llvm::GlobalVariable *Guard = new llvm::GlobalVariable(
302         getModule(), Int8Ty, false, llvm::GlobalVariable::InternalLinkage,
303         llvm::ConstantInt::get(Int8Ty, 0), "__tls_guard");
304     Guard->setThreadLocal(true);
305     CodeGenFunction(*this).GenerateCXXGlobalInitFunc(
306         InitFn, CXXThreadLocalInits.data(), CXXThreadLocalInits.size(), Guard);
307   }
308 
309   getCXXABI().EmitThreadLocalInitFuncs(CXXThreadLocals, InitFn);
310 
311   CXXThreadLocalInits.clear();
312   CXXThreadLocals.clear();
313 }
314 
315 void
316 CodeGenModule::EmitCXXGlobalInitFunc() {
317   while (!CXXGlobalInits.empty() && !CXXGlobalInits.back())
318     CXXGlobalInits.pop_back();
319 
320   if (CXXGlobalInits.empty() && PrioritizedCXXGlobalInits.empty())
321     return;
322 
323   llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
324 
325 
326   // Create our global initialization function.
327   if (!PrioritizedCXXGlobalInits.empty()) {
328     SmallVector<llvm::Constant*, 8> LocalCXXGlobalInits;
329     llvm::array_pod_sort(PrioritizedCXXGlobalInits.begin(),
330                          PrioritizedCXXGlobalInits.end());
331     // Iterate over "chunks" of ctors with same priority and emit each chunk
332     // into separate function. Note - everything is sorted first by priority,
333     // second - by lex order, so we emit ctor functions in proper order.
334     for (SmallVectorImpl<GlobalInitData >::iterator
335            I = PrioritizedCXXGlobalInits.begin(),
336            E = PrioritizedCXXGlobalInits.end(); I != E; ) {
337       SmallVectorImpl<GlobalInitData >::iterator
338         PrioE = std::upper_bound(I + 1, E, *I, GlobalInitPriorityCmp());
339 
340       LocalCXXGlobalInits.clear();
341       unsigned Priority = I->first.priority;
342       // Compute the function suffix from priority. Prepend with zeroes to make
343       // sure the function names are also ordered as priorities.
344       std::string PrioritySuffix = llvm::utostr(Priority);
345       // Priority is always <= 65535 (enforced by sema)..
346       PrioritySuffix = std::string(6-PrioritySuffix.size(), '0')+PrioritySuffix;
347       llvm::Function *Fn =
348         CreateGlobalInitOrDestructFunction(*this, FTy,
349                                            "_GLOBAL__I_" + PrioritySuffix);
350 
351       for (; I < PrioE; ++I)
352         LocalCXXGlobalInits.push_back(I->second);
353 
354       CodeGenFunction(*this).GenerateCXXGlobalInitFunc(Fn,
355                                                     &LocalCXXGlobalInits[0],
356                                                     LocalCXXGlobalInits.size());
357       AddGlobalCtor(Fn, Priority);
358     }
359   }
360 
361   llvm::Function *Fn =
362     CreateGlobalInitOrDestructFunction(*this, FTy, "_GLOBAL__I_a");
363 
364   CodeGenFunction(*this).GenerateCXXGlobalInitFunc(Fn,
365                                                    &CXXGlobalInits[0],
366                                                    CXXGlobalInits.size());
367   AddGlobalCtor(Fn);
368 
369   CXXGlobalInits.clear();
370   PrioritizedCXXGlobalInits.clear();
371 }
372 
373 void CodeGenModule::EmitCXXGlobalDtorFunc() {
374   if (CXXGlobalDtors.empty())
375     return;
376 
377   llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
378 
379   // Create our global destructor function.
380   llvm::Function *Fn =
381     CreateGlobalInitOrDestructFunction(*this, FTy, "_GLOBAL__D_a");
382 
383   CodeGenFunction(*this).GenerateCXXGlobalDtorsFunc(Fn, CXXGlobalDtors);
384   AddGlobalDtor(Fn);
385 }
386 
387 /// Emit the code necessary to initialize the given global variable.
388 void CodeGenFunction::GenerateCXXGlobalVarDeclInitFunc(llvm::Function *Fn,
389                                                        const VarDecl *D,
390                                                  llvm::GlobalVariable *Addr,
391                                                        bool PerformInit) {
392   // Check if we need to emit debug info for variable initializer.
393   if (!D->hasAttr<NoDebugAttr>())
394     maybeInitializeDebugInfo();
395 
396   StartFunction(GlobalDecl(D), getContext().VoidTy, Fn,
397                 getTypes().arrangeNullaryFunction(),
398                 FunctionArgList(), D->getInit()->getExprLoc());
399 
400   // Use guarded initialization if the global variable is weak. This
401   // occurs for, e.g., instantiated static data members and
402   // definitions explicitly marked weak.
403   if (Addr->getLinkage() == llvm::GlobalValue::WeakODRLinkage ||
404       Addr->getLinkage() == llvm::GlobalValue::WeakAnyLinkage) {
405     EmitCXXGuardedInit(*D, Addr, PerformInit);
406   } else {
407     EmitCXXGlobalVarDeclInit(*D, Addr, PerformInit);
408   }
409 
410   FinishFunction();
411 }
412 
413 void CodeGenFunction::GenerateCXXGlobalInitFunc(llvm::Function *Fn,
414                                                 llvm::Constant **Decls,
415                                                 unsigned NumDecls,
416                                                 llvm::GlobalVariable *Guard) {
417   // Initialize debug info if needed.
418   maybeInitializeDebugInfo();
419 
420   StartFunction(GlobalDecl(), getContext().VoidTy, Fn,
421                 getTypes().arrangeNullaryFunction(),
422                 FunctionArgList(), SourceLocation());
423 
424   llvm::BasicBlock *ExitBlock = 0;
425   if (Guard) {
426     // If we have a guard variable, check whether we've already performed these
427     // initializations. This happens for TLS initialization functions.
428     llvm::Value *GuardVal = Builder.CreateLoad(Guard);
429     llvm::Value *Uninit = Builder.CreateIsNull(GuardVal, "guard.uninitialized");
430     // Mark as initialized before initializing anything else. If the
431     // initializers use previously-initialized thread_local vars, that's
432     // probably supposed to be OK, but the standard doesn't say.
433     Builder.CreateStore(llvm::ConstantInt::get(GuardVal->getType(), 1), Guard);
434     llvm::BasicBlock *InitBlock = createBasicBlock("init");
435     ExitBlock = createBasicBlock("exit");
436     Builder.CreateCondBr(Uninit, InitBlock, ExitBlock);
437     EmitBlock(InitBlock);
438   }
439 
440   RunCleanupsScope Scope(*this);
441 
442   // When building in Objective-C++ ARC mode, create an autorelease pool
443   // around the global initializers.
444   if (getLangOpts().ObjCAutoRefCount && getLangOpts().CPlusPlus) {
445     llvm::Value *token = EmitObjCAutoreleasePoolPush();
446     EmitObjCAutoreleasePoolCleanup(token);
447   }
448 
449   for (unsigned i = 0; i != NumDecls; ++i)
450     if (Decls[i])
451       EmitRuntimeCall(Decls[i]);
452 
453   Scope.ForceCleanup();
454 
455   if (ExitBlock) {
456     Builder.CreateBr(ExitBlock);
457     EmitBlock(ExitBlock);
458   }
459 
460   FinishFunction();
461 }
462 
463 void CodeGenFunction::GenerateCXXGlobalDtorsFunc(llvm::Function *Fn,
464                   const std::vector<std::pair<llvm::WeakVH, llvm::Constant*> >
465                                                 &DtorsAndObjects) {
466   // Initialize debug info if needed.
467   maybeInitializeDebugInfo();
468 
469   StartFunction(GlobalDecl(), getContext().VoidTy, Fn,
470                 getTypes().arrangeNullaryFunction(),
471                 FunctionArgList(), SourceLocation());
472 
473   // Emit the dtors, in reverse order from construction.
474   for (unsigned i = 0, e = DtorsAndObjects.size(); i != e; ++i) {
475     llvm::Value *Callee = DtorsAndObjects[e - i - 1].first;
476     llvm::CallInst *CI = Builder.CreateCall(Callee,
477                                             DtorsAndObjects[e - i - 1].second);
478     // Make sure the call and the callee agree on calling convention.
479     if (llvm::Function *F = dyn_cast<llvm::Function>(Callee))
480       CI->setCallingConv(F->getCallingConv());
481   }
482 
483   FinishFunction();
484 }
485 
486 /// generateDestroyHelper - Generates a helper function which, when
487 /// invoked, destroys the given object.
488 llvm::Function *
489 CodeGenFunction::generateDestroyHelper(llvm::Constant *addr,
490                                        QualType type,
491                                        Destroyer *destroyer,
492                                        bool useEHCleanupForArray) {
493   FunctionArgList args;
494   ImplicitParamDecl dst(0, SourceLocation(), 0, getContext().VoidPtrTy);
495   args.push_back(&dst);
496 
497   const CGFunctionInfo &FI =
498     CGM.getTypes().arrangeFunctionDeclaration(getContext().VoidTy, args,
499                                               FunctionType::ExtInfo(),
500                                               /*variadic*/ false);
501   llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType(FI);
502   llvm::Function *fn =
503     CreateGlobalInitOrDestructFunction(CGM, FTy, "__cxx_global_array_dtor");
504 
505   // Initialize debug info if needed.
506   maybeInitializeDebugInfo();
507 
508   StartFunction(GlobalDecl(), getContext().VoidTy, fn, FI, args,
509                 SourceLocation());
510 
511   emitDestroy(addr, type, destroyer, useEHCleanupForArray);
512 
513   FinishFunction();
514 
515   return fn;
516 }
517