clang 20.0.0git
CGDeclCXX.cpp
Go to the documentation of this file.
1//===--- CGDeclCXX.cpp - Emit LLVM Code for C++ declarations --------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This contains code dealing with code generation of C++ declarations
10//
11//===----------------------------------------------------------------------===//
12
13#include "CGCXXABI.h"
14#include "CGHLSLRuntime.h"
15#include "CGObjCRuntime.h"
16#include "CGOpenMPRuntime.h"
17#include "CodeGenFunction.h"
18#include "TargetInfo.h"
19#include "clang/AST/Attr.h"
21#include "llvm/ADT/StringExtras.h"
22#include "llvm/IR/Intrinsics.h"
23#include "llvm/IR/MDBuilder.h"
24#include "llvm/Support/Path.h"
25
26using namespace clang;
27using namespace CodeGen;
28
29static void EmitDeclInit(CodeGenFunction &CGF, const VarDecl &D,
30 ConstantAddress DeclPtr) {
31 assert(
32 (D.hasGlobalStorage() ||
33 (D.hasLocalStorage() && CGF.getContext().getLangOpts().OpenCLCPlusPlus)) &&
34 "VarDecl must have global or local (in the case of OpenCL) storage!");
35 assert(!D.getType()->isReferenceType() &&
36 "Should not call EmitDeclInit on a reference!");
37
38 QualType type = D.getType();
39 LValue lv = CGF.MakeAddrLValue(DeclPtr, type);
40
41 const Expr *Init = D.getInit();
42 switch (CGF.getEvaluationKind(type)) {
43 case TEK_Scalar: {
44 CodeGenModule &CGM = CGF.CGM;
45 if (lv.isObjCStrong())
47 DeclPtr, D.getTLSKind());
48 else if (lv.isObjCWeak())
50 DeclPtr);
51 else
52 CGF.EmitScalarInit(Init, &D, lv, false);
53 return;
54 }
55 case TEK_Complex:
56 CGF.EmitComplexExprIntoLValue(Init, lv, /*isInit*/ true);
57 return;
58 case TEK_Aggregate:
59 CGF.EmitAggExpr(Init,
64 return;
65 }
66 llvm_unreachable("bad evaluation kind");
67}
68
69/// Emit code to cause the destruction of the given variable with
70/// static storage duration.
71static void EmitDeclDestroy(CodeGenFunction &CGF, const VarDecl &D,
72 ConstantAddress Addr) {
73 // Honor __attribute__((no_destroy)) and bail instead of attempting
74 // to emit a reference to a possibly nonexistent destructor, which
75 // in turn can cause a crash. This will result in a global constructor
76 // that isn't balanced out by a destructor call as intended by the
77 // attribute. This also checks for -fno-c++-static-destructors and
78 // bails even if the attribute is not present.
79 QualType::DestructionKind DtorKind = D.needsDestruction(CGF.getContext());
80
81 // FIXME: __attribute__((cleanup)) ?
82
83 switch (DtorKind) {
85 return;
86
88 break;
89
93 // We don't care about releasing objects during process teardown.
94 assert(!D.getTLSKind() && "should have rejected this");
95 return;
96 }
97
98 llvm::FunctionCallee Func;
99 llvm::Constant *Argument;
100
101 CodeGenModule &CGM = CGF.CGM;
102 QualType Type = D.getType();
103
104 // Special-case non-array C++ destructors, if they have the right signature.
105 // Under some ABIs, destructors return this instead of void, and cannot be
106 // passed directly to __cxa_atexit if the target does not allow this
107 // mismatch.
109 bool CanRegisterDestructor =
110 Record && (!CGM.getCXXABI().HasThisReturn(
111 GlobalDecl(Record->getDestructor(), Dtor_Complete)) ||
113 // If __cxa_atexit is disabled via a flag, a different helper function is
114 // generated elsewhere which uses atexit instead, and it takes the destructor
115 // directly.
116 bool UsingExternalHelper = !CGM.getCodeGenOpts().CXAAtExit;
117 if (Record && (CanRegisterDestructor || UsingExternalHelper)) {
118 assert(!Record->hasTrivialDestructor());
119 CXXDestructorDecl *Dtor = Record->getDestructor();
120
122 if (CGF.getContext().getLangOpts().OpenCL) {
123 auto DestAS =
125 auto DestTy = llvm::PointerType::get(
126 CGM.getLLVMContext(), CGM.getContext().getTargetAddressSpace(DestAS));
127 auto SrcAS = D.getType().getQualifiers().getAddressSpace();
128 if (DestAS == SrcAS)
129 Argument = Addr.getPointer();
130 else
131 // FIXME: On addr space mismatch we are passing NULL. The generation
132 // of the global destructor function should be adjusted accordingly.
133 Argument = llvm::ConstantPointerNull::get(DestTy);
134 } else {
135 Argument = Addr.getPointer();
136 }
137 // Otherwise, the standard logic requires a helper function.
138 } else {
139 Addr = Addr.withElementType(CGF.ConvertTypeForMem(Type));
140 Func = CodeGenFunction(CGM)
141 .generateDestroyHelper(Addr, Type, CGF.getDestroyer(DtorKind),
142 CGF.needsEHCleanup(DtorKind), &D);
143 Argument = llvm::Constant::getNullValue(CGF.Int8PtrTy);
144 }
145
146 CGM.getCXXABI().registerGlobalDtor(CGF, D, Func, Argument);
147}
148
149/// Emit code to cause the variable at the given address to be considered as
150/// constant from this point onwards.
152 llvm::Constant *Addr) {
153 return CGF.EmitInvariantStart(
154 Addr, CGF.getContext().getTypeSizeInChars(D.getType()));
155}
156
157void CodeGenFunction::EmitInvariantStart(llvm::Constant *Addr, CharUnits Size) {
158 // Do not emit the intrinsic if we're not optimizing.
159 if (!CGM.getCodeGenOpts().OptimizationLevel)
160 return;
161
162 // Grab the llvm.invariant.start intrinsic.
163 llvm::Intrinsic::ID InvStartID = llvm::Intrinsic::invariant_start;
164 // Overloaded address space type.
165 assert(Addr->getType()->isPointerTy() && "Address must be a pointer");
166 llvm::Type *ObjectPtr[1] = {Addr->getType()};
167 llvm::Function *InvariantStart = CGM.getIntrinsic(InvStartID, ObjectPtr);
168
169 // Emit a call with the size in bytes of the object.
170 uint64_t Width = Size.getQuantity();
171 llvm::Value *Args[2] = {llvm::ConstantInt::getSigned(Int64Ty, Width), Addr};
172 Builder.CreateCall(InvariantStart, Args);
173}
174
176 llvm::GlobalVariable *GV,
177 bool PerformInit) {
178
179 const Expr *Init = D.getInit();
180 QualType T = D.getType();
181
182 // The address space of a static local variable (DeclPtr) may be different
183 // from the address space of the "this" argument of the constructor. In that
184 // case, we need an addrspacecast before calling the constructor.
185 //
186 // struct StructWithCtor {
187 // __device__ StructWithCtor() {...}
188 // };
189 // __device__ void foo() {
190 // __shared__ StructWithCtor s;
191 // ...
192 // }
193 //
194 // For example, in the above CUDA code, the static local variable s has a
195 // "shared" address space qualifier, but the constructor of StructWithCtor
196 // expects "this" in the "generic" address space.
197 unsigned ExpectedAddrSpace = getTypes().getTargetAddressSpace(T);
198 unsigned ActualAddrSpace = GV->getAddressSpace();
199 llvm::Constant *DeclPtr = GV;
200 if (ActualAddrSpace != ExpectedAddrSpace) {
201 llvm::PointerType *PTy =
202 llvm::PointerType::get(getLLVMContext(), ExpectedAddrSpace);
203 DeclPtr = llvm::ConstantExpr::getAddrSpaceCast(DeclPtr, PTy);
204 }
205
206 ConstantAddress DeclAddr(
207 DeclPtr, GV->getValueType(), getContext().getDeclAlign(&D));
208
209 if (!T->isReferenceType()) {
210 if (getLangOpts().OpenMP && !getLangOpts().OpenMPSimd &&
211 D.hasAttr<OMPThreadPrivateDeclAttr>()) {
213 &D, DeclAddr, D.getAttr<OMPThreadPrivateDeclAttr>()->getLocation(),
214 PerformInit, this);
215 }
216 bool NeedsDtor =
217 D.needsDestruction(getContext()) == QualType::DK_cxx_destructor;
218 if (PerformInit)
219 EmitDeclInit(*this, D, DeclAddr);
220 if (D.getType().isConstantStorage(getContext(), true, !NeedsDtor))
221 EmitDeclInvariant(*this, D, DeclPtr);
222 else
223 EmitDeclDestroy(*this, D, DeclAddr);
224 return;
225 }
226
227 assert(PerformInit && "cannot have constant initializer which needs "
228 "destruction for reference");
230 EmitStoreOfScalar(RV.getScalarVal(), DeclAddr, false, T);
231}
232
233/// Create a stub function, suitable for being passed to atexit,
234/// which passes the given address to the given destructor function.
235llvm::Constant *CodeGenFunction::createAtExitStub(const VarDecl &VD,
236 llvm::FunctionCallee dtor,
237 llvm::Constant *addr) {
238 // Get the destructor function type, void(*)(void).
239 llvm::FunctionType *ty = llvm::FunctionType::get(CGM.VoidTy, false);
240 SmallString<256> FnName;
241 {
242 llvm::raw_svector_ostream Out(FnName);
244 }
245
247 llvm::Function *fn = CGM.CreateGlobalInitOrCleanUpFunction(
248 ty, FnName.str(), FI, VD.getLocation());
249
250 CodeGenFunction CGF(CGM);
251
252 CGF.StartFunction(GlobalDecl(&VD, DynamicInitKind::AtExit),
254 VD.getLocation(), VD.getInit()->getExprLoc());
255 // Emit an artificial location for this function.
257
258 llvm::CallInst *call = CGF.Builder.CreateCall(dtor, addr);
259
260 // Make sure the call and the callee agree on calling convention.
261 if (auto *dtorFn = dyn_cast<llvm::Function>(
262 dtor.getCallee()->stripPointerCastsAndAliases()))
263 call->setCallingConv(dtorFn->getCallingConv());
264
265 CGF.FinishFunction();
266
267 // Get a proper function pointer.
268 FunctionProtoType::ExtProtoInfo EPI(getContext().getDefaultCallingConvention(
269 /*IsVariadic=*/false, /*IsCXXMethod=*/false));
271 {getContext().VoidPtrTy}, EPI);
272 return CGM.getFunctionPointer(fn, fnType);
273}
274
275/// Create a stub function, suitable for being passed to __pt_atexit_np,
276/// which passes the given address to the given destructor function.
278 const VarDecl &D, llvm::FunctionCallee Dtor, llvm::Constant *Addr,
279 llvm::FunctionCallee &AtExit) {
280 SmallString<256> FnName;
281 {
282 llvm::raw_svector_ostream Out(FnName);
284 }
285
289
290 // Get the stub function type, int(*)(int,...).
291 llvm::FunctionType *StubTy =
292 llvm::FunctionType::get(CGM.IntTy, {CGM.IntTy}, true);
293
294 llvm::Function *DtorStub = CGM.CreateGlobalInitOrCleanUpFunction(
295 StubTy, FnName.str(), FI, D.getLocation());
296
297 CodeGenFunction CGF(CGM);
298
299 FunctionArgList Args;
302 Args.push_back(&IPD);
303 QualType ResTy = CGM.getContext().IntTy;
304
305 CGF.StartFunction(GlobalDecl(&D, DynamicInitKind::AtExit), ResTy, DtorStub,
306 FI, Args, D.getLocation(), D.getInit()->getExprLoc());
307
308 // Emit an artificial location for this function.
310
311 llvm::CallInst *call = CGF.Builder.CreateCall(Dtor, Addr);
312
313 // Make sure the call and the callee agree on calling convention.
314 if (auto *DtorFn = dyn_cast<llvm::Function>(
315 Dtor.getCallee()->stripPointerCastsAndAliases()))
316 call->setCallingConv(DtorFn->getCallingConv());
317
318 // Return 0 from function
319 CGF.Builder.CreateStore(llvm::Constant::getNullValue(CGM.IntTy),
320 CGF.ReturnValue);
321
322 CGF.FinishFunction();
323
324 return DtorStub;
325}
326
327/// Register a global destructor using the C atexit runtime function.
329 llvm::FunctionCallee dtor,
330 llvm::Constant *addr) {
331 // Create a function which calls the destructor.
332 llvm::Constant *dtorStub = createAtExitStub(VD, dtor, addr);
334}
335
336/// Register a global destructor using the LLVM 'llvm.global_dtors' global.
338 llvm::FunctionCallee Dtor,
339 llvm::Constant *Addr) {
340 // Create a function which calls the destructor.
341 llvm::Function *dtorStub =
342 cast<llvm::Function>(createAtExitStub(VD, Dtor, Addr));
343 CGM.AddGlobalDtor(dtorStub);
344}
345
346void CodeGenFunction::registerGlobalDtorWithAtExit(llvm::Constant *dtorStub) {
347 // extern "C" int atexit(void (*f)(void));
348 assert(dtorStub->getType() ==
349 llvm::PointerType::get(
350 llvm::FunctionType::get(CGM.VoidTy, false),
351 dtorStub->getType()->getPointerAddressSpace()) &&
352 "Argument to atexit has a wrong type.");
353
354 llvm::FunctionType *atexitTy =
355 llvm::FunctionType::get(IntTy, dtorStub->getType(), false);
356
357 llvm::FunctionCallee atexit =
358 CGM.CreateRuntimeFunction(atexitTy, "atexit", llvm::AttributeList(),
359 /*Local=*/true);
360 if (llvm::Function *atexitFn = dyn_cast<llvm::Function>(atexit.getCallee()))
361 atexitFn->setDoesNotThrow();
362
363 EmitNounwindRuntimeCall(atexit, dtorStub);
364}
365
366llvm::Value *
368 // The unatexit subroutine unregisters __dtor functions that were previously
369 // registered by the atexit subroutine. If the referenced function is found,
370 // it is removed from the list of functions that are called at normal program
371 // termination and the unatexit returns a value of 0, otherwise a non-zero
372 // value is returned.
373 //
374 // extern "C" int unatexit(void (*f)(void));
375 assert(dtorStub->getType() ==
376 llvm::PointerType::get(
377 llvm::FunctionType::get(CGM.VoidTy, false),
378 dtorStub->getType()->getPointerAddressSpace()) &&
379 "Argument to unatexit has a wrong type.");
380
381 llvm::FunctionType *unatexitTy =
382 llvm::FunctionType::get(IntTy, {dtorStub->getType()}, /*isVarArg=*/false);
383
384 llvm::FunctionCallee unatexit =
385 CGM.CreateRuntimeFunction(unatexitTy, "unatexit", llvm::AttributeList());
386
387 cast<llvm::Function>(unatexit.getCallee())->setDoesNotThrow();
388
389 return EmitNounwindRuntimeCall(unatexit, dtorStub);
390}
391
393 llvm::GlobalVariable *DeclPtr,
394 bool PerformInit) {
395 // If we've been asked to forbid guard variables, emit an error now.
396 // This diagnostic is hard-coded for Darwin's use case; we can find
397 // better phrasing if someone else needs it.
398 if (CGM.getCodeGenOpts().ForbidGuardVariables)
400 "this initialization requires a guard variable, which "
401 "the kernel does not support");
402
403 CGM.getCXXABI().EmitGuardedInit(*this, D, DeclPtr, PerformInit);
404}
405
406void CodeGenFunction::EmitCXXGuardedInitBranch(llvm::Value *NeedsInit,
407 llvm::BasicBlock *InitBlock,
408 llvm::BasicBlock *NoInitBlock,
409 GuardKind Kind,
410 const VarDecl *D) {
411 assert((Kind == GuardKind::TlsGuard || D) && "no guarded variable");
412
413 // A guess at how many times we will enter the initialization of a
414 // variable, depending on the kind of variable.
415 static const uint64_t InitsPerTLSVar = 1024;
416 static const uint64_t InitsPerLocalVar = 1024 * 1024;
417
418 llvm::MDNode *Weights;
419 if (Kind == GuardKind::VariableGuard && !D->isLocalVarDecl()) {
420 // For non-local variables, don't apply any weighting for now. Due to our
421 // use of COMDATs, we expect there to be at most one initialization of the
422 // variable per DSO, but we have no way to know how many DSOs will try to
423 // initialize the variable.
424 Weights = nullptr;
425 } else {
426 uint64_t NumInits;
427 // FIXME: For the TLS case, collect and use profiling information to
428 // determine a more accurate brach weight.
429 if (Kind == GuardKind::TlsGuard || D->getTLSKind())
430 NumInits = InitsPerTLSVar;
431 else
432 NumInits = InitsPerLocalVar;
433
434 // The probability of us entering the initializer is
435 // 1 / (total number of times we attempt to initialize the variable).
436 llvm::MDBuilder MDHelper(CGM.getLLVMContext());
437 Weights = MDHelper.createBranchWeights(1, NumInits - 1);
438 }
439
440 Builder.CreateCondBr(NeedsInit, InitBlock, NoInitBlock, Weights);
441}
442
444 llvm::FunctionType *FTy, const Twine &Name, const CGFunctionInfo &FI,
445 SourceLocation Loc, bool TLS, llvm::GlobalVariable::LinkageTypes Linkage) {
446 llvm::Function *Fn = llvm::Function::Create(FTy, Linkage, Name, &getModule());
447
448 if (!getLangOpts().AppleKext && !TLS) {
449 // Set the section if needed.
450 if (const char *Section = getTarget().getStaticInitSectionSpecifier())
451 Fn->setSection(Section);
452 }
453
454 if (Linkage == llvm::GlobalVariable::InternalLinkage)
456
457 Fn->setCallingConv(getRuntimeCC());
458
459 if (!getLangOpts().Exceptions)
460 Fn->setDoesNotThrow();
461
462 if (getLangOpts().Sanitize.has(SanitizerKind::Address) &&
463 !isInNoSanitizeList(SanitizerKind::Address, Fn, Loc))
464 Fn->addFnAttr(llvm::Attribute::SanitizeAddress);
465
466 if (getLangOpts().Sanitize.has(SanitizerKind::KernelAddress) &&
467 !isInNoSanitizeList(SanitizerKind::KernelAddress, Fn, Loc))
468 Fn->addFnAttr(llvm::Attribute::SanitizeAddress);
469
470 if (getLangOpts().Sanitize.has(SanitizerKind::HWAddress) &&
471 !isInNoSanitizeList(SanitizerKind::HWAddress, Fn, Loc))
472 Fn->addFnAttr(llvm::Attribute::SanitizeHWAddress);
473
474 if (getLangOpts().Sanitize.has(SanitizerKind::KernelHWAddress) &&
475 !isInNoSanitizeList(SanitizerKind::KernelHWAddress, Fn, Loc))
476 Fn->addFnAttr(llvm::Attribute::SanitizeHWAddress);
477
478 if (getLangOpts().Sanitize.has(SanitizerKind::MemtagStack) &&
479 !isInNoSanitizeList(SanitizerKind::MemtagStack, Fn, Loc))
480 Fn->addFnAttr(llvm::Attribute::SanitizeMemTag);
481
482 if (getLangOpts().Sanitize.has(SanitizerKind::Thread) &&
483 !isInNoSanitizeList(SanitizerKind::Thread, Fn, Loc))
484 Fn->addFnAttr(llvm::Attribute::SanitizeThread);
485
486 if (getLangOpts().Sanitize.has(SanitizerKind::NumericalStability) &&
487 !isInNoSanitizeList(SanitizerKind::NumericalStability, Fn, Loc))
488 Fn->addFnAttr(llvm::Attribute::SanitizeNumericalStability);
489
490 if (getLangOpts().Sanitize.has(SanitizerKind::Memory) &&
491 !isInNoSanitizeList(SanitizerKind::Memory, Fn, Loc))
492 Fn->addFnAttr(llvm::Attribute::SanitizeMemory);
493
494 if (getLangOpts().Sanitize.has(SanitizerKind::KernelMemory) &&
495 !isInNoSanitizeList(SanitizerKind::KernelMemory, Fn, Loc))
496 Fn->addFnAttr(llvm::Attribute::SanitizeMemory);
497
498 if (getLangOpts().Sanitize.has(SanitizerKind::SafeStack) &&
499 !isInNoSanitizeList(SanitizerKind::SafeStack, Fn, Loc))
500 Fn->addFnAttr(llvm::Attribute::SafeStack);
501
502 if (getLangOpts().Sanitize.has(SanitizerKind::ShadowCallStack) &&
503 !isInNoSanitizeList(SanitizerKind::ShadowCallStack, Fn, Loc))
504 Fn->addFnAttr(llvm::Attribute::ShadowCallStack);
505
506 return Fn;
507}
508
509/// Create a global pointer to a function that will initialize a global
510/// variable. The user has requested that this pointer be emitted in a specific
511/// section.
512void CodeGenModule::EmitPointerToInitFunc(const VarDecl *D,
513 llvm::GlobalVariable *GV,
514 llvm::Function *InitFunc,
515 InitSegAttr *ISA) {
516 llvm::GlobalVariable *PtrArray = new llvm::GlobalVariable(
517 TheModule, InitFunc->getType(), /*isConstant=*/true,
518 llvm::GlobalValue::PrivateLinkage, InitFunc, "__cxx_init_fn_ptr");
519 PtrArray->setSection(ISA->getSection());
520 addUsedGlobal(PtrArray);
521
522 // If the GV is already in a comdat group, then we have to join it.
523 if (llvm::Comdat *C = GV->getComdat())
524 PtrArray->setComdat(C);
525}
526
527void
528CodeGenModule::EmitCXXGlobalVarDeclInitFunc(const VarDecl *D,
529 llvm::GlobalVariable *Addr,
530 bool PerformInit) {
531
532 // According to E.2.3.1 in CUDA-7.5 Programming guide: __device__,
533 // __constant__ and __shared__ variables defined in namespace scope,
534 // that are of class type, cannot have a non-empty constructor. All
535 // the checks have been done in Sema by now. Whatever initializers
536 // are allowed are empty and we just need to ignore them here.
537 if (getLangOpts().CUDAIsDevice && !getLangOpts().GPUAllowDeviceInit &&
538 (D->hasAttr<CUDADeviceAttr>() || D->hasAttr<CUDAConstantAttr>() ||
539 D->hasAttr<CUDASharedAttr>()))
540 return;
541
542 // Check if we've already initialized this decl.
543 auto I = DelayedCXXInitPosition.find(D);
544 if (I != DelayedCXXInitPosition.end() && I->second == ~0U)
545 return;
546
547 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
548 SmallString<256> FnName;
549 {
550 llvm::raw_svector_ostream Out(FnName);
552 }
553
554 // Create a variable initialization function.
555 llvm::Function *Fn = CreateGlobalInitOrCleanUpFunction(
556 FTy, FnName.str(), getTypes().arrangeNullaryFunction(), D->getLocation());
557
558 auto *ISA = D->getAttr<InitSegAttr>();
560 PerformInit);
561
562 llvm::GlobalVariable *COMDATKey =
563 supportsCOMDAT() && D->isExternallyVisible() ? Addr : nullptr;
564
565 if (D->getTLSKind()) {
566 // FIXME: Should we support init_priority for thread_local?
567 // FIXME: We only need to register one __cxa_thread_atexit function for the
568 // entire TU.
569 CXXThreadLocalInits.push_back(Fn);
570 CXXThreadLocalInitVars.push_back(D);
571 } else if (PerformInit && ISA) {
572 // Contract with backend that "init_seg(compiler)" corresponds to priority
573 // 200 and "init_seg(lib)" corresponds to priority 400.
574 int Priority = -1;
575 if (ISA->getSection() == ".CRT$XCC")
576 Priority = 200;
577 else if (ISA->getSection() == ".CRT$XCL")
578 Priority = 400;
579
580 if (Priority != -1)
581 AddGlobalCtor(Fn, Priority, ~0U, COMDATKey);
582 else
583 EmitPointerToInitFunc(D, Addr, Fn, ISA);
584 } else if (auto *IPA = D->getAttr<InitPriorityAttr>()) {
585 OrderGlobalInitsOrStermFinalizers Key(IPA->getPriority(),
586 PrioritizedCXXGlobalInits.size());
587 PrioritizedCXXGlobalInits.push_back(std::make_pair(Key, Fn));
588 } else if (isTemplateInstantiation(D->getTemplateSpecializationKind()) ||
589 getContext().GetGVALinkageForVariable(D) == GVA_DiscardableODR ||
590 D->hasAttr<SelectAnyAttr>()) {
591 // C++ [basic.start.init]p2:
592 // Definitions of explicitly specialized class template static data
593 // members have ordered initialization. Other class template static data
594 // members (i.e., implicitly or explicitly instantiated specializations)
595 // have unordered initialization.
596 //
597 // As a consequence, we can put them into their own llvm.global_ctors entry.
598 //
599 // If the global is externally visible, put the initializer into a COMDAT
600 // group with the global being initialized. On most platforms, this is a
601 // minor startup time optimization. In the MS C++ ABI, there are no guard
602 // variables, so this COMDAT key is required for correctness.
603 //
604 // SelectAny globals will be comdat-folded. Put the initializer into a
605 // COMDAT group associated with the global, so the initializers get folded
606 // too.
607 I = DelayedCXXInitPosition.find(D);
608 // CXXGlobalInits.size() is the lex order number for the next deferred
609 // VarDecl. Use it when the current VarDecl is non-deferred. Although this
610 // lex order number is shared between current VarDecl and some following
611 // VarDecls, their order of insertion into `llvm.global_ctors` is the same
612 // as the lexing order and the following stable sort would preserve such
613 // order.
614 unsigned LexOrder =
615 I == DelayedCXXInitPosition.end() ? CXXGlobalInits.size() : I->second;
616 AddGlobalCtor(Fn, 65535, LexOrder, COMDATKey);
617 if (COMDATKey && (getTriple().isOSBinFormatELF() ||
618 getTarget().getCXXABI().isMicrosoft())) {
619 // When COMDAT is used on ELF or in the MS C++ ABI, the key must be in
620 // llvm.used to prevent linker GC.
621 addUsedGlobal(COMDATKey);
622 }
623
624 // If we used a COMDAT key for the global ctor, the init function can be
625 // discarded if the global ctor entry is discarded.
626 // FIXME: Do we need to restrict this to ELF and Wasm?
627 llvm::Comdat *C = Addr->getComdat();
628 if (COMDATKey && C &&
629 (getTarget().getTriple().isOSBinFormatELF() ||
630 getTarget().getTriple().isOSBinFormatWasm())) {
631 Fn->setComdat(C);
632 }
633 } else {
634 I = DelayedCXXInitPosition.find(D); // Re-do lookup in case of re-hash.
635 if (I == DelayedCXXInitPosition.end()) {
636 CXXGlobalInits.push_back(Fn);
637 } else if (I->second != ~0U) {
638 assert(I->second < CXXGlobalInits.size() &&
639 CXXGlobalInits[I->second] == nullptr);
640 CXXGlobalInits[I->second] = Fn;
641 }
642 }
643
644 // Remember that we already emitted the initializer for this global.
645 DelayedCXXInitPosition[D] = ~0U;
646}
647
648void CodeGenModule::EmitCXXThreadLocalInitFunc() {
650 *this, CXXThreadLocals, CXXThreadLocalInits, CXXThreadLocalInitVars);
651
652 CXXThreadLocalInits.clear();
653 CXXThreadLocalInitVars.clear();
654 CXXThreadLocals.clear();
655}
656
657/* Build the initializer for a C++20 module:
658 This is arranged to be run only once regardless of how many times the module
659 might be included transitively. This arranged by using a guard variable.
660
661 If there are no initializers at all (and also no imported modules) we reduce
662 this to an empty function (since the Itanium ABI requires that this function
663 be available to a caller, which might be produced by a different
664 implementation).
665
666 First we call any initializers for imported modules.
667 We then call initializers for the Global Module Fragment (if present)
668 We then call initializers for the current module.
669 We then call initializers for the Private Module Fragment (if present)
670*/
671
672void CodeGenModule::EmitCXXModuleInitFunc(Module *Primary) {
673 assert(Primary->isInterfaceOrPartition() &&
674 "The function should only be called for C++20 named module interface"
675 " or partition.");
676
677 while (!CXXGlobalInits.empty() && !CXXGlobalInits.back())
678 CXXGlobalInits.pop_back();
679
680 // As noted above, we create the function, even if it is empty.
681 // Module initializers for imported modules are emitted first.
682
683 // Collect all the modules that we import
685 // Ones that we export
686 for (auto I : Primary->Exports)
687 AllImports.insert(I.getPointer());
688 // Ones that we only import.
689 for (Module *M : Primary->Imports)
690 AllImports.insert(M);
691 // Ones that we import in the global module fragment or the private module
692 // fragment.
693 for (Module *SubM : Primary->submodules()) {
694 assert((SubM->isGlobalModule() || SubM->isPrivateModule()) &&
695 "The sub modules of C++20 module unit should only be global module "
696 "fragments or private module framents.");
697 assert(SubM->Exports.empty() &&
698 "The global mdoule fragments and the private module fragments are "
699 "not allowed to export import modules.");
700 for (Module *M : SubM->Imports)
701 AllImports.insert(M);
702 }
703
705 for (Module *M : AllImports) {
706 // No Itanium initializer in header like modules.
707 if (M->isHeaderLikeModule())
708 continue; // TODO: warn of mixed use of module map modules and C++20?
709 // We're allowed to skip the initialization if we are sure it doesn't
710 // do any thing.
712 continue;
713 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
714 SmallString<256> FnName;
715 {
716 llvm::raw_svector_ostream Out(FnName);
717 cast<ItaniumMangleContext>(getCXXABI().getMangleContext())
718 .mangleModuleInitializer(M, Out);
719 }
720 assert(!GetGlobalValue(FnName.str()) &&
721 "We should only have one use of the initializer call");
722 llvm::Function *Fn = llvm::Function::Create(
723 FTy, llvm::Function::ExternalLinkage, FnName.str(), &getModule());
724 ModuleInits.push_back(Fn);
725 }
726
727 // Add any initializers with specified priority; this uses the same approach
728 // as EmitCXXGlobalInitFunc().
729 if (!PrioritizedCXXGlobalInits.empty()) {
730 SmallVector<llvm::Function *, 8> LocalCXXGlobalInits;
731 llvm::array_pod_sort(PrioritizedCXXGlobalInits.begin(),
732 PrioritizedCXXGlobalInits.end());
734 I = PrioritizedCXXGlobalInits.begin(),
735 E = PrioritizedCXXGlobalInits.end();
736 I != E;) {
738 std::upper_bound(I + 1, E, *I, GlobalInitPriorityCmp());
739
740 for (; I < PrioE; ++I)
741 ModuleInits.push_back(I->second);
742 }
743 }
744
745 // Now append the ones without specified priority.
746 for (auto *F : CXXGlobalInits)
747 ModuleInits.push_back(F);
748
749 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
751
752 // We now build the initializer for this module, which has a mangled name
753 // as per the Itanium ABI . The action of the initializer is guarded so that
754 // each init is run just once (even though a module might be imported
755 // multiple times via nested use).
756 llvm::Function *Fn;
757 {
758 SmallString<256> InitFnName;
759 llvm::raw_svector_ostream Out(InitFnName);
760 cast<ItaniumMangleContext>(getCXXABI().getMangleContext())
761 .mangleModuleInitializer(Primary, Out);
763 FTy, llvm::Twine(InitFnName), FI, SourceLocation(), false,
764 llvm::GlobalVariable::ExternalLinkage);
765
766 // If we have a completely empty initializer then we do not want to create
767 // the guard variable.
769 if (!ModuleInits.empty()) {
770 // Create the guard var.
771 llvm::GlobalVariable *Guard = new llvm::GlobalVariable(
772 getModule(), Int8Ty, /*isConstant=*/false,
773 llvm::GlobalVariable::InternalLinkage,
774 llvm::ConstantInt::get(Int8Ty, 0), InitFnName.str() + "__in_chrg");
775 CharUnits GuardAlign = CharUnits::One();
776 Guard->setAlignment(GuardAlign.getAsAlign());
777 GuardAddr = ConstantAddress(Guard, Int8Ty, GuardAlign);
778 }
779 CodeGenFunction(*this).GenerateCXXGlobalInitFunc(Fn, ModuleInits,
780 GuardAddr);
781 }
782
783 // We allow for the case that a module object is added to a linked binary
784 // without a specific call to the the initializer. This also ensures that
785 // implementation partition initializers are called when the partition
786 // is not imported as an interface.
787 AddGlobalCtor(Fn);
788
789 // See the comment in EmitCXXGlobalInitFunc about OpenCL global init
790 // functions.
791 if (getLangOpts().OpenCL) {
793 Fn->setCallingConv(llvm::CallingConv::SPIR_KERNEL);
794 }
795
796 assert(!getLangOpts().CUDA || !getLangOpts().CUDAIsDevice ||
797 getLangOpts().GPUAllowDeviceInit);
798 if (getLangOpts().HIP && getLangOpts().CUDAIsDevice) {
799 Fn->setCallingConv(llvm::CallingConv::AMDGPU_KERNEL);
800 Fn->addFnAttr("device-init");
801 }
802
803 // We are done with the inits.
804 AllImports.clear();
805 PrioritizedCXXGlobalInits.clear();
806 CXXGlobalInits.clear();
807 ModuleInits.clear();
808}
809
811 SmallString<128> FileName = llvm::sys::path::filename(M.getName());
812
813 if (FileName.empty())
814 FileName = "<null>";
815
816 for (size_t i = 0; i < FileName.size(); ++i) {
817 // Replace everything that's not [a-zA-Z0-9._] with a _. This set happens
818 // to be the set of C preprocessing numbers.
820 FileName[i] = '_';
821 }
822
823 return FileName;
824}
825
826static std::string getPrioritySuffix(unsigned int Priority) {
827 assert(Priority <= 65535 && "Priority should always be <= 65535.");
828
829 // Compute the function suffix from priority. Prepend with zeroes to make
830 // sure the function names are also ordered as priorities.
831 std::string PrioritySuffix = llvm::utostr(Priority);
832 PrioritySuffix = std::string(6 - PrioritySuffix.size(), '0') + PrioritySuffix;
833
834 return PrioritySuffix;
835}
836
837void
838CodeGenModule::EmitCXXGlobalInitFunc() {
839 while (!CXXGlobalInits.empty() && !CXXGlobalInits.back())
840 CXXGlobalInits.pop_back();
841
842 // When we import C++20 modules, we must run their initializers first.
844 if (CXX20ModuleInits)
845 for (Module *M : ImportedModules) {
846 // No Itanium initializer in header like modules.
847 if (M->isHeaderLikeModule())
848 continue;
849 // We're allowed to skip the initialization if we are sure it doesn't
850 // do any thing.
852 continue;
853 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
854 SmallString<256> FnName;
855 {
856 llvm::raw_svector_ostream Out(FnName);
857 cast<ItaniumMangleContext>(getCXXABI().getMangleContext())
858 .mangleModuleInitializer(M, Out);
859 }
860 assert(!GetGlobalValue(FnName.str()) &&
861 "We should only have one use of the initializer call");
862 llvm::Function *Fn = llvm::Function::Create(
863 FTy, llvm::Function::ExternalLinkage, FnName.str(), &getModule());
864 ModuleInits.push_back(Fn);
865 }
866
867 if (ModuleInits.empty() && CXXGlobalInits.empty() &&
868 PrioritizedCXXGlobalInits.empty())
869 return;
870
871 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
873
874 // Create our global prioritized initialization function.
875 if (!PrioritizedCXXGlobalInits.empty()) {
876 SmallVector<llvm::Function *, 8> LocalCXXGlobalInits;
877 llvm::array_pod_sort(PrioritizedCXXGlobalInits.begin(),
878 PrioritizedCXXGlobalInits.end());
879 // Iterate over "chunks" of ctors with same priority and emit each chunk
880 // into separate function. Note - everything is sorted first by priority,
881 // second - by lex order, so we emit ctor functions in proper order.
883 I = PrioritizedCXXGlobalInits.begin(),
884 E = PrioritizedCXXGlobalInits.end(); I != E; ) {
886 PrioE = std::upper_bound(I + 1, E, *I, GlobalInitPriorityCmp());
887
888 LocalCXXGlobalInits.clear();
889
890 unsigned int Priority = I->first.priority;
891 llvm::Function *Fn = CreateGlobalInitOrCleanUpFunction(
892 FTy, "_GLOBAL__I_" + getPrioritySuffix(Priority), FI);
893
894 // Prepend the module inits to the highest priority set.
895 if (!ModuleInits.empty()) {
896 for (auto *F : ModuleInits)
897 LocalCXXGlobalInits.push_back(F);
898 ModuleInits.clear();
899 }
900
901 for (; I < PrioE; ++I)
902 LocalCXXGlobalInits.push_back(I->second);
903
904 CodeGenFunction(*this).GenerateCXXGlobalInitFunc(Fn, LocalCXXGlobalInits);
905 AddGlobalCtor(Fn, Priority);
906 }
907 PrioritizedCXXGlobalInits.clear();
908 }
909
910 if (getCXXABI().useSinitAndSterm() && ModuleInits.empty() &&
911 CXXGlobalInits.empty())
912 return;
913
914 for (auto *F : CXXGlobalInits)
915 ModuleInits.push_back(F);
916 CXXGlobalInits.clear();
917
918 // Include the filename in the symbol name. Including "sub_" matches gcc
919 // and makes sure these symbols appear lexicographically behind the symbols
920 // with priority emitted above. Module implementation units behave the same
921 // way as a non-modular TU with imports.
922 llvm::Function *Fn;
923 if (CXX20ModuleInits && getContext().getCurrentNamedModule() &&
924 !getContext().getCurrentNamedModule()->isModuleImplementation()) {
925 SmallString<256> InitFnName;
926 llvm::raw_svector_ostream Out(InitFnName);
927 cast<ItaniumMangleContext>(getCXXABI().getMangleContext())
928 .mangleModuleInitializer(getContext().getCurrentNamedModule(), Out);
930 FTy, llvm::Twine(InitFnName), FI, SourceLocation(), false,
931 llvm::GlobalVariable::ExternalLinkage);
932 } else
934 FTy,
935 llvm::Twine("_GLOBAL__sub_I_", getTransformedFileName(getModule())),
936 FI);
937
938 CodeGenFunction(*this).GenerateCXXGlobalInitFunc(Fn, ModuleInits);
939 AddGlobalCtor(Fn);
940
941 // In OpenCL global init functions must be converted to kernels in order to
942 // be able to launch them from the host.
943 // FIXME: Some more work might be needed to handle destructors correctly.
944 // Current initialization function makes use of function pointers callbacks.
945 // We can't support function pointers especially between host and device.
946 // However it seems global destruction has little meaning without any
947 // dynamic resource allocation on the device and program scope variables are
948 // destroyed by the runtime when program is released.
949 if (getLangOpts().OpenCL) {
951 Fn->setCallingConv(llvm::CallingConv::SPIR_KERNEL);
952 }
953
954 assert(!getLangOpts().CUDA || !getLangOpts().CUDAIsDevice ||
955 getLangOpts().GPUAllowDeviceInit);
956 if (getLangOpts().HIP && getLangOpts().CUDAIsDevice) {
957 Fn->setCallingConv(llvm::CallingConv::AMDGPU_KERNEL);
958 Fn->addFnAttr("device-init");
959 }
960
961 ModuleInits.clear();
962}
963
964void CodeGenModule::EmitCXXGlobalCleanUpFunc() {
965 if (CXXGlobalDtorsOrStermFinalizers.empty() &&
966 PrioritizedCXXStermFinalizers.empty())
967 return;
968
969 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
971
972 // Create our global prioritized cleanup function.
973 if (!PrioritizedCXXStermFinalizers.empty()) {
975 llvm::array_pod_sort(PrioritizedCXXStermFinalizers.begin(),
976 PrioritizedCXXStermFinalizers.end());
977 // Iterate over "chunks" of dtors with same priority and emit each chunk
978 // into separate function. Note - everything is sorted first by priority,
979 // second - by lex order, so we emit dtor functions in proper order.
981 I = PrioritizedCXXStermFinalizers.begin(),
982 E = PrioritizedCXXStermFinalizers.end();
983 I != E;) {
985 std::upper_bound(I + 1, E, *I, StermFinalizerPriorityCmp());
986
987 LocalCXXStermFinalizers.clear();
988
989 unsigned int Priority = I->first.priority;
990 llvm::Function *Fn = CreateGlobalInitOrCleanUpFunction(
991 FTy, "_GLOBAL__a_" + getPrioritySuffix(Priority), FI);
992
993 for (; I < PrioE; ++I) {
994 llvm::FunctionCallee DtorFn = I->second;
995 LocalCXXStermFinalizers.emplace_back(DtorFn.getFunctionType(),
996 DtorFn.getCallee(), nullptr);
997 }
998
1000 Fn, LocalCXXStermFinalizers);
1001 AddGlobalDtor(Fn, Priority);
1002 }
1003 PrioritizedCXXStermFinalizers.clear();
1004 }
1005
1006 if (CXXGlobalDtorsOrStermFinalizers.empty())
1007 return;
1008
1009 // Create our global cleanup function.
1010 llvm::Function *Fn =
1011 CreateGlobalInitOrCleanUpFunction(FTy, "_GLOBAL__D_a", FI);
1012
1014 Fn, CXXGlobalDtorsOrStermFinalizers);
1015 AddGlobalDtor(Fn);
1016 CXXGlobalDtorsOrStermFinalizers.clear();
1017}
1018
1019/// Emit the code necessary to initialize the given global variable.
1021 const VarDecl *D,
1022 llvm::GlobalVariable *Addr,
1023 bool PerformInit) {
1024 // Check if we need to emit debug info for variable initializer.
1025 if (D->hasAttr<NoDebugAttr>())
1026 DebugInfo = nullptr; // disable debug info indefinitely for this function
1027
1028 CurEHLocation = D->getBeginLoc();
1029
1031 getContext().VoidTy, Fn, getTypes().arrangeNullaryFunction(),
1032 FunctionArgList());
1033 // Emit an artificial location for this function.
1034 auto AL = ApplyDebugLocation::CreateArtificial(*this);
1035
1036 // Use guarded initialization if the global variable is weak. This
1037 // occurs for, e.g., instantiated static data members and
1038 // definitions explicitly marked weak.
1039 //
1040 // Also use guarded initialization for a variable with dynamic TLS and
1041 // unordered initialization. (If the initialization is ordered, the ABI
1042 // layer will guard the whole-TU initialization for us.)
1043 if (Addr->hasWeakLinkage() || Addr->hasLinkOnceLinkage() ||
1044 (D->getTLSKind() == VarDecl::TLS_Dynamic &&
1045 isTemplateInstantiation(D->getTemplateSpecializationKind()))) {
1046 EmitCXXGuardedInit(*D, Addr, PerformInit);
1047 } else {
1048 EmitCXXGlobalVarDeclInit(*D, Addr, PerformInit);
1049 }
1050
1051 if (getLangOpts().HLSL)
1053
1055}
1056
1057void
1060 ConstantAddress Guard) {
1061 {
1062 auto NL = ApplyDebugLocation::CreateEmpty(*this);
1064 getTypes().arrangeNullaryFunction(), FunctionArgList());
1065 // Emit an artificial location for this function.
1066 auto AL = ApplyDebugLocation::CreateArtificial(*this);
1067
1068 llvm::BasicBlock *ExitBlock = nullptr;
1069 if (Guard.isValid()) {
1070 // If we have a guard variable, check whether we've already performed
1071 // these initializations. This happens for TLS initialization functions.
1072 llvm::Value *GuardVal = Builder.CreateLoad(Guard);
1073 llvm::Value *Uninit = Builder.CreateIsNull(GuardVal,
1074 "guard.uninitialized");
1075 llvm::BasicBlock *InitBlock = createBasicBlock("init");
1076 ExitBlock = createBasicBlock("exit");
1077 EmitCXXGuardedInitBranch(Uninit, InitBlock, ExitBlock,
1078 GuardKind::TlsGuard, nullptr);
1079 EmitBlock(InitBlock);
1080 // Mark as initialized before initializing anything else. If the
1081 // initializers use previously-initialized thread_local vars, that's
1082 // probably supposed to be OK, but the standard doesn't say.
1083 Builder.CreateStore(llvm::ConstantInt::get(GuardVal->getType(),1), Guard);
1084
1085 // The guard variable can't ever change again.
1087 Guard.getPointer(),
1089 CGM.getDataLayout().getTypeAllocSize(GuardVal->getType())));
1090 }
1091
1092 RunCleanupsScope Scope(*this);
1093
1094 // When building in Objective-C++ ARC mode, create an autorelease pool
1095 // around the global initializers.
1096 if (getLangOpts().ObjCAutoRefCount && getLangOpts().CPlusPlus) {
1097 llvm::Value *token = EmitObjCAutoreleasePoolPush();
1099 }
1100
1101 for (unsigned i = 0, e = Decls.size(); i != e; ++i)
1102 if (Decls[i])
1103 EmitRuntimeCall(Decls[i]);
1104
1105 Scope.ForceCleanup();
1106
1107 if (ExitBlock) {
1108 Builder.CreateBr(ExitBlock);
1109 EmitBlock(ExitBlock);
1110 }
1111 }
1112
1114}
1115
1117 llvm::Function *Fn,
1118 ArrayRef<std::tuple<llvm::FunctionType *, llvm::WeakTrackingVH,
1119 llvm::Constant *>>
1120 DtorsOrStermFinalizers) {
1121 {
1122 auto NL = ApplyDebugLocation::CreateEmpty(*this);
1124 getTypes().arrangeNullaryFunction(), FunctionArgList());
1125 // Emit an artificial location for this function.
1126 auto AL = ApplyDebugLocation::CreateArtificial(*this);
1127
1128 // Emit the cleanups, in reverse order from construction.
1129 for (unsigned i = 0, e = DtorsOrStermFinalizers.size(); i != e; ++i) {
1130 llvm::FunctionType *CalleeTy;
1131 llvm::Value *Callee;
1132 llvm::Constant *Arg;
1133 std::tie(CalleeTy, Callee, Arg) = DtorsOrStermFinalizers[e - i - 1];
1134
1135 llvm::CallInst *CI = nullptr;
1136 if (Arg == nullptr) {
1137 assert(
1139 "Arg could not be nullptr unless using sinit and sterm functions.");
1140 CI = Builder.CreateCall(CalleeTy, Callee);
1141 } else
1142 CI = Builder.CreateCall(CalleeTy, Callee, Arg);
1143
1144 // Make sure the call and the callee agree on calling convention.
1145 if (llvm::Function *F = dyn_cast<llvm::Function>(Callee))
1146 CI->setCallingConv(F->getCallingConv());
1147 }
1148 }
1149
1151}
1152
1153/// generateDestroyHelper - Generates a helper function which, when
1154/// invoked, destroys the given object. The address of the object
1155/// should be in global memory.
1157 Address addr, QualType type, Destroyer *destroyer,
1158 bool useEHCleanupForArray, const VarDecl *VD) {
1159 FunctionArgList args;
1162 args.push_back(&Dst);
1163
1164 const CGFunctionInfo &FI =
1166 llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType(FI);
1167 llvm::Function *fn = CGM.CreateGlobalInitOrCleanUpFunction(
1168 FTy, "__cxx_global_array_dtor", FI, VD->getLocation());
1169
1170 CurEHLocation = VD->getBeginLoc();
1171
1173 getContext().VoidTy, fn, FI, args);
1174 // Emit an artificial location for this function.
1175 auto AL = ApplyDebugLocation::CreateArtificial(*this);
1176
1177 emitDestroy(addr, type, destroyer, useEHCleanupForArray);
1178
1180
1181 return fn;
1182}
static std::string getPrioritySuffix(unsigned int Priority)
Definition: CGDeclCXX.cpp:826
static void EmitDeclInit(CodeGenFunction &CGF, const VarDecl &D, ConstantAddress DeclPtr)
Definition: CGDeclCXX.cpp:29
static SmallString< 128 > getTransformedFileName(llvm::Module &M)
Definition: CGDeclCXX.cpp:810
static void EmitDeclDestroy(CodeGenFunction &CGF, const VarDecl &D, ConstantAddress Addr)
Emit code to cause the destruction of the given variable with static storage duration.
Definition: CGDeclCXX.cpp:71
static void EmitDeclInvariant(CodeGenFunction &CGF, const VarDecl &D, llvm::Constant *Addr)
Emit code to cause the variable at the given address to be considered as constant from this point onw...
Definition: CGDeclCXX.cpp:151
const Decl * D
Expr * E
int Priority
Definition: Format.cpp:2993
Defines the clang::LangOptions interface.
llvm::MachO::Record Record
Definition: MachO.h:31
SourceLocation Loc
Definition: SemaObjC.cpp:758
CanQualType VoidPtrTy
Definition: ASTContext.h:1145
const LangOptions & getLangOpts() const
Definition: ASTContext.h:796
CanQualType IntTy
Definition: ASTContext.h:1127
CharUnits getTypeSizeInChars(QualType T) const
Return the size of the specified (complete) type T, in characters.
CanQualType VoidTy
Definition: ASTContext.h:1118
QualType getFunctionType(QualType ResultTy, ArrayRef< QualType > Args, const FunctionProtoType::ExtProtoInfo &EPI) const
Return a normal function type with a typed argument list.
Definition: ASTContext.h:1612
unsigned getTargetAddressSpace(LangAS AS) const
Represents a C++ destructor within a class.
Definition: DeclCXX.h:2799
Represents a C++ struct/union/class.
Definition: DeclCXX.h:258
CharUnits - This is an opaque type for sizes expressed in character units.
Definition: CharUnits.h:38
llvm::Align getAsAlign() const
getAsAlign - Returns Quantity as a valid llvm::Align, Beware llvm::Align assumes power of two 8-bit b...
Definition: CharUnits.h:189
static CharUnits One()
One - Construct a CharUnits quantity of one.
Definition: CharUnits.h:58
static CharUnits fromQuantity(QuantityType Quantity)
fromQuantity - Construct a CharUnits quantity from a raw integer type.
Definition: CharUnits.h:63
Like RawAddress, an abstract representation of an aligned address, but the pointer contained in this ...
Definition: Address.h:128
static AggValueSlot forLValue(const LValue &LV, IsDestructed_t isDestructed, NeedsGCBarriers_t needsGC, IsAliased_t isAliased, Overlap_t mayOverlap, IsZeroed_t isZeroed=IsNotZeroed, IsSanitizerChecked_t isChecked=IsNotSanitizerChecked)
Definition: CGValue.h:602
static ApplyDebugLocation CreateArtificial(CodeGenFunction &CGF)
Apply TemporaryLocation if it is valid.
Definition: CGDebugInfo.h:892
static ApplyDebugLocation CreateEmpty(CodeGenFunction &CGF)
Set the IRBuilder to not attach debug locations.
Definition: CGDebugInfo.h:909
llvm::StoreInst * CreateStore(llvm::Value *Val, Address Addr, bool IsVolatile=false)
Definition: CGBuilder.h:135
llvm::Value * CreateIsNull(Address Addr, const Twine &Name="")
Definition: CGBuilder.h:354
llvm::LoadInst * CreateLoad(Address Addr, const llvm::Twine &Name="")
Definition: CGBuilder.h:107
virtual bool HasThisReturn(GlobalDecl GD) const
Returns true if the given constructor or destructor is one of the kinds that the ABI says returns 'th...
Definition: CGCXXABI.h:123
virtual bool useSinitAndSterm() const
Definition: CGCXXABI.h:133
virtual void EmitGuardedInit(CodeGenFunction &CGF, const VarDecl &D, llvm::GlobalVariable *DeclPtr, bool PerformInit)=0
Emits the guarded initializer and destructor setup for the given variable, given that it couldn't be ...
virtual void registerGlobalDtor(CodeGenFunction &CGF, const VarDecl &D, llvm::FunctionCallee Dtor, llvm::Constant *Addr)=0
Emit code to force the execution of a destructor during global teardown.
virtual bool canCallMismatchedFunctionType() const
Returns true if the target allows calling a function through a pointer with a different signature tha...
Definition: CGCXXABI.h:143
virtual void EmitThreadLocalInitFuncs(CodeGenModule &CGM, ArrayRef< const VarDecl * > CXXThreadLocals, ArrayRef< llvm::Function * > CXXThreadLocalInits, ArrayRef< const VarDecl * > CXXThreadLocalInitVars)=0
Emits ABI-required functions necessary to initialize thread_local variables in this translation unit.
MangleContext & getMangleContext()
Gets the mangle context.
Definition: CGCXXABI.h:113
CGFunctionInfo - Class to encapsulate the information about a function definition.
void annotateHLSLResource(const VarDecl *D, llvm::GlobalVariable *GV)
virtual void EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF, llvm::Value *src, Address dest)=0
virtual void EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF, llvm::Value *src, Address dest, bool threadlocal=false)=0
virtual llvm::Function * emitThreadPrivateVarDefinition(const VarDecl *VD, Address VDAddr, SourceLocation Loc, bool PerformInit, CodeGenFunction *CGF=nullptr)
Emit a code for initialization of threadprivate variable.
CodeGenFunction - This class organizes the per-function state that is used while generating LLVM code...
void GenerateCXXGlobalInitFunc(llvm::Function *Fn, ArrayRef< llvm::Function * > CXXThreadLocals, ConstantAddress Guard=ConstantAddress::invalid())
GenerateCXXGlobalInitFunc - Generates code for initializing global variables.
void FinishFunction(SourceLocation EndLoc=SourceLocation())
FinishFunction - Complete IR generation of the current function.
static TypeEvaluationKind getEvaluationKind(QualType T)
getEvaluationKind - Return the TypeEvaluationKind of QualType T.
llvm::Constant * createAtExitStub(const VarDecl &VD, llvm::FunctionCallee Dtor, llvm::Constant *Addr)
llvm::Value * EmitObjCAutoreleasePoolPush()
llvm::BasicBlock * createBasicBlock(const Twine &name="", llvm::Function *parent=nullptr, llvm::BasicBlock *before=nullptr)
createBasicBlock - Create an LLVM basic block.
const LangOptions & getLangOpts() const
void EmitBlock(llvm::BasicBlock *BB, bool IsFinished=false)
EmitBlock - Emit the given block.
llvm::Type * ConvertTypeForMem(QualType T)
llvm::Function * createTLSAtExitStub(const VarDecl &VD, llvm::FunctionCallee Dtor, llvm::Constant *Addr, llvm::FunctionCallee &AtExit)
void EmitScalarInit(const Expr *init, const ValueDecl *D, LValue lvalue, bool capturedByInit)
void registerGlobalDtorWithLLVM(const VarDecl &D, llvm::FunctionCallee fn, llvm::Constant *addr)
Registers the dtor using 'llvm.global_dtors' for platforms that do not support an 'atexit()' function...
Destroyer * getDestroyer(QualType::DestructionKind destructionKind)
void emitDestroy(Address addr, QualType type, Destroyer *destroyer, bool useEHCleanupForArray)
llvm::Function * generateDestroyHelper(Address addr, QualType type, Destroyer *destroyer, bool useEHCleanupForArray, const VarDecl *VD)
void GenerateCXXGlobalCleanUpFunc(llvm::Function *Fn, ArrayRef< std::tuple< llvm::FunctionType *, llvm::WeakTrackingVH, llvm::Constant * > > DtorsOrStermFinalizers)
GenerateCXXGlobalCleanUpFunc - Generates code for cleaning up global variables.
void EmitCXXGuardedInit(const VarDecl &D, llvm::GlobalVariable *DeclPtr, bool PerformInit)
Emit code in this function to perform a guarded variable initialization.
void EmitCXXGlobalVarDeclInit(const VarDecl &D, llvm::GlobalVariable *GV, bool PerformInit)
EmitCXXGlobalVarDeclInit - Create the initializer for a C++ variable with global storage.
void EmitComplexExprIntoLValue(const Expr *E, LValue dest, bool isInit)
EmitComplexExprIntoLValue - Emit the given expression of complex type and place its result into the s...
void StartFunction(GlobalDecl GD, QualType RetTy, llvm::Function *Fn, const CGFunctionInfo &FnInfo, const FunctionArgList &Args, SourceLocation Loc=SourceLocation(), SourceLocation StartLoc=SourceLocation())
Emit code for the start of a function.
void registerGlobalDtorWithAtExit(const VarDecl &D, llvm::FunctionCallee fn, llvm::Constant *addr)
Call atexit() with a function that passes the given argument to the given function.
llvm::Value * unregisterGlobalDtorWithUnAtExit(llvm::Constant *dtorStub)
Call unatexit() with function dtorStub.
RValue EmitReferenceBindingToExpr(const Expr *E)
Emits a reference binding to the passed in expression.
void EmitAggExpr(const Expr *E, AggValueSlot AS)
EmitAggExpr - Emit the computation of the specified expression of aggregate type.
llvm::CallInst * EmitNounwindRuntimeCall(llvm::FunctionCallee callee, const Twine &name="")
bool needsEHCleanup(QualType::DestructionKind kind)
Determines whether an EH cleanup is required to destroy a type with the given destruction kind.
llvm::CallInst * EmitRuntimeCall(llvm::FunctionCallee callee, const Twine &name="")
void EmitInvariantStart(llvm::Constant *Addr, CharUnits Size)
CodeGenTypes & getTypes() const
void GenerateCXXGlobalVarDeclInitFunc(llvm::Function *Fn, const VarDecl *D, llvm::GlobalVariable *Addr, bool PerformInit)
LValue MakeAddrLValue(Address Addr, QualType T, AlignmentSource Source=AlignmentSource::Type)
void EmitObjCAutoreleasePoolCleanup(llvm::Value *Ptr)
llvm::LLVMContext & getLLVMContext()
llvm::Value * EmitScalarExpr(const Expr *E, bool IgnoreResultAssign=false)
EmitScalarExpr - Emit the computation of the specified expression of LLVM scalar type,...
void EmitStoreOfScalar(llvm::Value *Value, Address Addr, bool Volatile, QualType Ty, AlignmentSource Source=AlignmentSource::Type, bool isInit=false, bool isNontemporal=false)
EmitStoreOfScalar - Store a scalar value to an address, taking care to appropriately convert from the...
void EmitCXXGuardedInitBranch(llvm::Value *NeedsInit, llvm::BasicBlock *InitBlock, llvm::BasicBlock *NoInitBlock, GuardKind Kind, const VarDecl *D)
Emit a branch to select whether or not to perform guarded initialization.
This class organizes the cross-function state that is used while generating LLVM code.
void SetInternalFunctionAttributes(GlobalDecl GD, llvm::Function *F, const CGFunctionInfo &FI)
Set the attributes on the LLVM function for the given decl and function info.
CGHLSLRuntime & getHLSLRuntime()
Return a reference to the configured HLSL runtime.
llvm::Module & getModule() const
llvm::FunctionCallee CreateRuntimeFunction(llvm::FunctionType *Ty, StringRef Name, llvm::AttributeList ExtraAttrs=llvm::AttributeList(), bool Local=false, bool AssumeConvergent=false)
Create or return a runtime function declaration with the specified type and name.
llvm::FunctionCallee getAddrAndTypeOfCXXStructor(GlobalDecl GD, const CGFunctionInfo *FnInfo=nullptr, llvm::FunctionType *FnType=nullptr, bool DontDefer=false, ForDefinition_t IsForDefinition=NotForDefinition)
Definition: CGCXX.cpp:220
llvm::Constant * getFunctionPointer(GlobalDecl GD, llvm::Type *Ty=nullptr)
Return the ABI-correct function pointer value for a reference to the given function.
bool isInNoSanitizeList(SanitizerMask Kind, llvm::Function *Fn, SourceLocation Loc) const
const LangOptions & getLangOpts() const
const TargetInfo & getTarget() const
void addUsedGlobal(llvm::GlobalValue *GV)
Add a global to a list to be added to the llvm.used metadata.
const llvm::DataLayout & getDataLayout() const
void Error(SourceLocation loc, StringRef error)
Emit a general error that something can't be done.
CGCXXABI & getCXXABI() const
CGOpenMPRuntime & getOpenMPRuntime()
Return a reference to the configured OpenMP runtime.
const llvm::Triple & getTriple() const
void AddGlobalDtor(llvm::Function *Dtor, int Priority=65535, bool IsDtorAttrFunc=false)
AddGlobalDtor - Add a function to the list that will be called when the module is unloaded.
ASTContext & getContext() const
const TargetCodeGenInfo & getTargetCodeGenInfo()
const CodeGenOptions & getCodeGenOpts() const
llvm::LLVMContext & getLLVMContext()
llvm::GlobalValue * GetGlobalValue(StringRef Ref)
void GenKernelArgMetadata(llvm::Function *FN, const FunctionDecl *FD=nullptr, CodeGenFunction *CGF=nullptr)
OpenCL v1.2 s5.6.4.6 allows the compiler to store kernel argument information in the program executab...
CGObjCRuntime & getObjCRuntime()
Return a reference to the configured Objective-C runtime.
void AddGlobalCtor(llvm::Function *Ctor, int Priority=65535, unsigned LexOrder=~0U, llvm::Constant *AssociatedData=nullptr)
AddGlobalCtor - Add a function to the list that will be called before main() runs.
llvm::Function * getIntrinsic(unsigned IID, ArrayRef< llvm::Type * > Tys=std::nullopt)
llvm::Function * CreateGlobalInitOrCleanUpFunction(llvm::FunctionType *ty, const Twine &name, const CGFunctionInfo &FI, SourceLocation Loc=SourceLocation(), bool TLS=false, llvm::GlobalVariable::LinkageTypes Linkage=llvm::GlobalVariable::InternalLinkage)
Definition: CGDeclCXX.cpp:443
const CGFunctionInfo & arrangeLLVMFunctionInfo(CanQualType returnType, FnInfoOpts opts, ArrayRef< CanQualType > argTypes, FunctionType::ExtInfo info, ArrayRef< FunctionProtoType::ExtParameterInfo > paramInfos, RequiredArgs args)
"Arrange" the LLVM information for a call or type with the given signature.
Definition: CGCall.cpp:766
llvm::FunctionType * GetFunctionType(const CGFunctionInfo &Info)
GetFunctionType - Get the LLVM function type for.
Definition: CGCall.cpp:1632
const CGFunctionInfo & arrangeBuiltinFunctionDeclaration(QualType resultType, const FunctionArgList &args)
A builtin function is a freestanding function using the default C conventions.
Definition: CGCall.cpp:680
unsigned getTargetAddressSpace(QualType T) const
const CGFunctionInfo & arrangeNullaryFunction()
A nullary function is a freestanding function of type 'void ()'.
Definition: CGCall.cpp:722
A specialization of Address that requires the address to be an LLVM Constant.
Definition: Address.h:294
ConstantAddress withElementType(llvm::Type *ElemTy) const
Definition: Address.h:310
static ConstantAddress invalid()
Definition: Address.h:302
llvm::Constant * getPointer() const
Definition: Address.h:306
FunctionArgList - Type for representing both the decl and type of parameters to a function.
Definition: CGCall.h:368
LValue - This represents an lvalue references.
Definition: CGValue.h:182
bool isObjCStrong() const
Definition: CGValue.h:324
bool isObjCWeak() const
Definition: CGValue.h:321
RValue - This trivial value class is used to represent the result of an expression that is evaluated.
Definition: CGValue.h:42
llvm::Value * getScalarVal() const
getScalarVal() - Return the Value* of this scalar value.
Definition: CGValue.h:71
bool isValid() const
Definition: Address.h:62
virtual LangAS getAddrSpaceOfCxaAtexitPtrParam() const
Get address space of pointer parameter for __cxa_atexit.
Definition: TargetInfo.h:327
T * getAttr() const
Definition: DeclBase.h:579
SourceLocation getLocation() const
Definition: DeclBase.h:445
SourceLocation getBeginLoc() const LLVM_READONLY
Definition: DeclBase.h:437
bool hasAttr() const
Definition: DeclBase.h:583
SourceLocation getBeginLoc() const LLVM_READONLY
Definition: Decl.h:783
This represents one expression.
Definition: Expr.h:110
SourceLocation getExprLoc() const LLVM_READONLY
getExprLoc - Return the preferred location for the arrow when diagnosing a problem with a generic exp...
Definition: Expr.cpp:277
A class which abstracts out some details necessary for making a call.
Definition: Type.h:4389
GlobalDecl - represents a global declaration.
Definition: GlobalDecl.h:56
virtual void mangleDynamicAtExitDestructor(const VarDecl *D, raw_ostream &)=0
virtual void mangleDynamicInitializer(const VarDecl *D, raw_ostream &)=0
Describes a module or submodule.
Definition: Module.h:105
SmallVector< ExportDecl, 2 > Exports
The set of export declarations.
Definition: Module.h:415
bool isNamedModuleInterfaceHasInit() const
Definition: Module.h:628
bool isInterfaceOrPartition() const
Definition: Module.h:615
llvm::SmallSetVector< Module *, 2 > Imports
The set of modules imported by this module, and on which this module depends.
Definition: Module.h:402
llvm::iterator_range< submodule_iterator > submodules()
Definition: Module.h:783
bool isHeaderLikeModule() const
Is this module have similar semantics as headers.
Definition: Module.h:592
A (possibly-)qualified type.
Definition: Type.h:941
@ DK_cxx_destructor
Definition: Type.h:1532
@ DK_nontrivial_c_struct
Definition: Type.h:1535
@ DK_objc_weak_lifetime
Definition: Type.h:1534
@ DK_objc_strong_lifetime
Definition: Type.h:1533
Scope - A scope is a transient data structure that is used while parsing the program.
Definition: Scope.h:41
Encodes a location in the source.
The base class of the type hierarchy.
Definition: Type.h:1829
CXXRecordDecl * getAsCXXRecordDecl() const
Retrieves the CXXRecordDecl that this type refers to, either because the type is a RecordType or beca...
Definition: Type.cpp:1882
bool isReferenceType() const
Definition: Type.h:8010
Represents a variable declaration or definition.
Definition: Decl.h:879
const Expr * getInit() const
Definition: Decl.h:1316
@ TLS_Dynamic
TLS with a dynamic initializer.
Definition: Decl.h:905
const internal::VariadicAllOfMatcher< Type > type
Matches Types in the clang AST.
The JSON file list parser is used to communicate input to InstallAPI.
bool isTemplateInstantiation(TemplateSpecializationKind Kind)
Determine whether this template specialization kind refers to an instantiation of an entity (as oppos...
Definition: Specifiers.h:209
@ OpenCL
Definition: LangStandard.h:66
@ CPlusPlus
Definition: LangStandard.h:56
@ GVA_DiscardableODR
Definition: Linkage.h:75
Linkage
Describes the different kinds of linkage (C++ [basic.link], C99 6.2.2) that an entity may have.
Definition: Linkage.h:24
@ Dtor_Complete
Complete object dtor.
Definition: ABI.h:35
LLVM_READONLY bool isPreprocessingNumberBody(unsigned char c)
Return true if this is the body character of a C preprocessing number, which is [a-zA-Z0-9_.
Definition: CharInfo.h:168
const FunctionProtoType * T
@ Other
Other implicit parameter.
unsigned long uint64_t
llvm::IntegerType * Int8Ty
i8, i16, i32, and i64
llvm::CallingConv::ID getRuntimeCC() const
llvm::IntegerType * IntTy
int
Extra information about a function prototype.
Definition: Type.h:5058