clang 17.0.0git
CGNonTrivialStruct.cpp
Go to the documentation of this file.
1//===--- CGNonTrivialStruct.cpp - Emit Special Functions for C Structs ----===//
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 file defines functions to generate various special functions for C
10// structs.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
15#include "CodeGenModule.h"
18#include "llvm/Support/ScopedPrinter.h"
19#include <array>
20
21using namespace clang;
22using namespace CodeGen;
23
24// Return the size of a field in number of bits.
25static uint64_t getFieldSize(const FieldDecl *FD, QualType FT,
26 ASTContext &Ctx) {
27 if (FD && FD->isBitField())
28 return FD->getBitWidthValue(Ctx);
29 return Ctx.getTypeSize(FT);
30}
31
32namespace {
33enum { DstIdx = 0, SrcIdx = 1 };
34const char *ValNameStr[2] = {"dst", "src"};
35
36template <class Derived> struct StructVisitor {
37 StructVisitor(ASTContext &Ctx) : Ctx(Ctx) {}
38
39 template <class... Ts>
40 void visitStructFields(QualType QT, CharUnits CurStructOffset, Ts... Args) {
41 const RecordDecl *RD = QT->castAs<RecordType>()->getDecl();
42
43 // Iterate over the fields of the struct.
44 for (const FieldDecl *FD : RD->fields()) {
45 QualType FT = FD->getType();
46 FT = QT.isVolatileQualified() ? FT.withVolatile() : FT;
47 asDerived().visit(FT, FD, CurStructOffset, Args...);
48 }
49
50 asDerived().flushTrivialFields(Args...);
51 }
52
53 template <class... Ts> void visitTrivial(Ts... Args) {}
54
55 template <class... Ts> void visitCXXDestructor(Ts... Args) {
56 llvm_unreachable("field of a C++ struct type is not expected");
57 }
58
59 template <class... Ts> void flushTrivialFields(Ts... Args) {}
60
61 uint64_t getFieldOffsetInBits(const FieldDecl *FD) {
62 return FD ? Ctx.getASTRecordLayout(FD->getParent())
63 .getFieldOffset(FD->getFieldIndex())
64 : 0;
65 }
66
68 return Ctx.toCharUnitsFromBits(getFieldOffsetInBits(FD));
69 }
70
71 Derived &asDerived() { return static_cast<Derived &>(*this); }
72
73 ASTContext &getContext() { return Ctx; }
74 ASTContext &Ctx;
75};
76
77template <class Derived, bool IsMove>
78struct CopyStructVisitor : StructVisitor<Derived>,
79 CopiedTypeVisitor<Derived, IsMove> {
80 using StructVisitor<Derived>::asDerived;
82
83 CopyStructVisitor(ASTContext &Ctx) : StructVisitor<Derived>(Ctx) {}
84
85 template <class... Ts>
86 void preVisit(QualType::PrimitiveCopyKind PCK, QualType FT,
87 const FieldDecl *FD, CharUnits CurStructOffset, Ts &&... Args) {
88 if (PCK)
89 asDerived().flushTrivialFields(std::forward<Ts>(Args)...);
90 }
91
92 template <class... Ts>
94 const FieldDecl *FD, CharUnits CurStructOffset,
95 Ts &&... Args) {
96 if (const auto *AT = asDerived().getContext().getAsArrayType(FT)) {
97 asDerived().visitArray(PCK, AT, FT.isVolatileQualified(), FD,
98 CurStructOffset, std::forward<Ts>(Args)...);
99 return;
100 }
101
102 Super::visitWithKind(PCK, FT, FD, CurStructOffset,
103 std::forward<Ts>(Args)...);
104 }
105
106 template <class... Ts>
107 void visitTrivial(QualType FT, const FieldDecl *FD, CharUnits CurStructOffset,
108 Ts... Args) {
109 assert(!FT.isVolatileQualified() && "volatile field not expected");
110 ASTContext &Ctx = asDerived().getContext();
111 uint64_t FieldSize = getFieldSize(FD, FT, Ctx);
112
113 // Ignore zero-sized fields.
114 if (FieldSize == 0)
115 return;
116
117 uint64_t FStartInBits = asDerived().getFieldOffsetInBits(FD);
118 uint64_t FEndInBits = FStartInBits + FieldSize;
119 uint64_t RoundedFEnd = llvm::alignTo(FEndInBits, Ctx.getCharWidth());
120
121 // Set Start if this is the first field of a sequence of trivial fields.
122 if (Start == End)
123 Start = CurStructOffset + Ctx.toCharUnitsFromBits(FStartInBits);
124 End = CurStructOffset + Ctx.toCharUnitsFromBits(RoundedFEnd);
125 }
126
127 CharUnits Start = CharUnits::Zero(), End = CharUnits::Zero();
128};
129
130// This function creates the mangled name of a special function of a non-trivial
131// C struct. Since there is no ODR in C, the function is mangled based on the
132// struct contents and not the name. The mangled name has the following
133// structure:
134//
135// <function-name> ::= <prefix> <alignment-info> "_" <struct-field-info>
136// <prefix> ::= "__destructor_" | "__default_constructor_" |
137// "__copy_constructor_" | "__move_constructor_" |
138// "__copy_assignment_" | "__move_assignment_"
139// <alignment-info> ::= <dst-alignment> ["_" <src-alignment>]
140// <struct-field-info> ::= <field-info>+
141// <field-info> ::= <struct-or-scalar-field-info> | <array-field-info>
142// <struct-or-scalar-field-info> ::= "_S" <struct-field-info> |
143// <strong-field-info> | <trivial-field-info>
144// <array-field-info> ::= "_AB" <array-offset> "s" <element-size> "n"
145// <num-elements> <innermost-element-info> "_AE"
146// <innermost-element-info> ::= <struct-or-scalar-field-info>
147// <strong-field-info> ::= "_s" ["b"] ["v"] <field-offset>
148// <trivial-field-info> ::= "_t" ["v"] <field-offset> "_" <field-size>
149
150template <class Derived> struct GenFuncNameBase {
151 std::string getVolatileOffsetStr(bool IsVolatile, CharUnits Offset) {
152 std::string S;
153 if (IsVolatile)
154 S = "v";
155 S += llvm::to_string(Offset.getQuantity());
156 return S;
157 }
158
159 void visitARCStrong(QualType FT, const FieldDecl *FD,
160 CharUnits CurStructOffset) {
161 appendStr("_s");
162 if (FT->isBlockPointerType())
163 appendStr("b");
164 CharUnits FieldOffset = CurStructOffset + asDerived().getFieldOffset(FD);
165 appendStr(getVolatileOffsetStr(FT.isVolatileQualified(), FieldOffset));
166 }
167
168 void visitARCWeak(QualType FT, const FieldDecl *FD,
169 CharUnits CurStructOffset) {
170 appendStr("_w");
171 CharUnits FieldOffset = CurStructOffset + asDerived().getFieldOffset(FD);
172 appendStr(getVolatileOffsetStr(FT.isVolatileQualified(), FieldOffset));
173 }
174
175 void visitStruct(QualType QT, const FieldDecl *FD,
176 CharUnits CurStructOffset) {
177 CharUnits FieldOffset = CurStructOffset + asDerived().getFieldOffset(FD);
178 appendStr("_S");
179 asDerived().visitStructFields(QT, FieldOffset);
180 }
181
182 template <class FieldKind>
183 void visitArray(FieldKind FK, const ArrayType *AT, bool IsVolatile,
184 const FieldDecl *FD, CharUnits CurStructOffset) {
185 // String for non-volatile trivial fields is emitted when
186 // flushTrivialFields is called.
187 if (!FK)
188 return asDerived().visitTrivial(QualType(AT, 0), FD, CurStructOffset);
189
190 asDerived().flushTrivialFields();
191 CharUnits FieldOffset = CurStructOffset + asDerived().getFieldOffset(FD);
192 ASTContext &Ctx = asDerived().getContext();
193 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
194 unsigned NumElts = Ctx.getConstantArrayElementCount(CAT);
195 QualType EltTy = Ctx.getBaseElementType(CAT);
196 CharUnits EltSize = Ctx.getTypeSizeInChars(EltTy);
197 appendStr("_AB" + llvm::to_string(FieldOffset.getQuantity()) + "s" +
198 llvm::to_string(EltSize.getQuantity()) + "n" +
199 llvm::to_string(NumElts));
200 EltTy = IsVolatile ? EltTy.withVolatile() : EltTy;
201 asDerived().visitWithKind(FK, EltTy, nullptr, FieldOffset);
202 appendStr("_AE");
203 }
204
205 void appendStr(StringRef Str) { Name += Str; }
206
207 std::string getName(QualType QT, bool IsVolatile) {
208 QT = IsVolatile ? QT.withVolatile() : QT;
209 asDerived().visitStructFields(QT, CharUnits::Zero());
210 return Name;
211 }
212
213 Derived &asDerived() { return static_cast<Derived &>(*this); }
214
215 std::string Name;
216};
217
218template <class Derived>
219struct GenUnaryFuncName : StructVisitor<Derived>, GenFuncNameBase<Derived> {
220 GenUnaryFuncName(StringRef Prefix, CharUnits DstAlignment, ASTContext &Ctx)
221 : StructVisitor<Derived>(Ctx) {
222 this->appendStr(Prefix);
223 this->appendStr(llvm::to_string(DstAlignment.getQuantity()));
224 }
225};
226
227// Helper function to create a null constant.
228static llvm::Constant *getNullForVariable(Address Addr) {
229 llvm::Type *Ty = Addr.getElementType();
230 return llvm::ConstantPointerNull::get(cast<llvm::PointerType>(Ty));
231}
232
233template <bool IsMove>
234struct GenBinaryFuncName : CopyStructVisitor<GenBinaryFuncName<IsMove>, IsMove>,
235 GenFuncNameBase<GenBinaryFuncName<IsMove>> {
236
237 GenBinaryFuncName(StringRef Prefix, CharUnits DstAlignment,
238 CharUnits SrcAlignment, ASTContext &Ctx)
239 : CopyStructVisitor<GenBinaryFuncName<IsMove>, IsMove>(Ctx) {
240 this->appendStr(Prefix);
241 this->appendStr(llvm::to_string(DstAlignment.getQuantity()));
242 this->appendStr("_" + llvm::to_string(SrcAlignment.getQuantity()));
243 }
244
245 void flushTrivialFields() {
246 if (this->Start == this->End)
247 return;
248
249 this->appendStr("_t" + llvm::to_string(this->Start.getQuantity()) + "w" +
250 llvm::to_string((this->End - this->Start).getQuantity()));
251
252 this->Start = this->End = CharUnits::Zero();
253 }
254
255 void visitVolatileTrivial(QualType FT, const FieldDecl *FD,
256 CharUnits CurStructOffset) {
257 // Zero-length bit-fields don't need to be copied/assigned.
258 if (FD && FD->isZeroLengthBitField(this->Ctx))
259 return;
260
261 // Because volatile fields can be bit-fields and are individually copied,
262 // their offset and width are in bits.
263 uint64_t OffsetInBits =
264 this->Ctx.toBits(CurStructOffset) + this->getFieldOffsetInBits(FD);
265 this->appendStr("_tv" + llvm::to_string(OffsetInBits) + "w" +
266 llvm::to_string(getFieldSize(FD, FT, this->Ctx)));
267 }
268};
269
270struct GenDefaultInitializeFuncName
271 : GenUnaryFuncName<GenDefaultInitializeFuncName>,
272 DefaultInitializedTypeVisitor<GenDefaultInitializeFuncName> {
274 GenDefaultInitializeFuncName(CharUnits DstAlignment, ASTContext &Ctx)
275 : GenUnaryFuncName<GenDefaultInitializeFuncName>("__default_constructor_",
276 DstAlignment, Ctx) {}
278 const FieldDecl *FD, CharUnits CurStructOffset) {
279 if (const auto *AT = getContext().getAsArrayType(FT)) {
280 visitArray(PDIK, AT, FT.isVolatileQualified(), FD, CurStructOffset);
281 return;
282 }
283
284 Super::visitWithKind(PDIK, FT, FD, CurStructOffset);
285 }
286};
287
288struct GenDestructorFuncName : GenUnaryFuncName<GenDestructorFuncName>,
289 DestructedTypeVisitor<GenDestructorFuncName> {
291 GenDestructorFuncName(const char *Prefix, CharUnits DstAlignment,
292 ASTContext &Ctx)
293 : GenUnaryFuncName<GenDestructorFuncName>(Prefix, DstAlignment, Ctx) {}
295 const FieldDecl *FD, CharUnits CurStructOffset) {
296 if (const auto *AT = getContext().getAsArrayType(FT)) {
297 visitArray(DK, AT, FT.isVolatileQualified(), FD, CurStructOffset);
298 return;
299 }
300
301 Super::visitWithKind(DK, FT, FD, CurStructOffset);
302 }
303};
304
305// Helper function that creates CGFunctionInfo for an N-ary special function.
306template <size_t N>
307static const CGFunctionInfo &getFunctionInfo(CodeGenModule &CGM,
308 FunctionArgList &Args) {
309 ASTContext &Ctx = CGM.getContext();
311 QualType ParamTy = Ctx.getPointerType(Ctx.VoidPtrTy);
312
313 for (unsigned I = 0; I < N; ++I)
314 Params.push_back(ImplicitParamDecl::Create(
315 Ctx, nullptr, SourceLocation(), &Ctx.Idents.get(ValNameStr[I]), ParamTy,
317
318 llvm::append_range(Args, Params);
319
320 return CGM.getTypes().arrangeBuiltinFunctionDeclaration(Ctx.VoidTy, Args);
321}
322
323template <size_t N, size_t... Ints>
324static std::array<Address, N> getParamAddrs(std::index_sequence<Ints...> IntSeq,
325 std::array<CharUnits, N> Alignments,
326 FunctionArgList Args,
327 CodeGenFunction *CGF) {
328 return std::array<Address, N>{
329 {Address(CGF->Builder.CreateLoad(CGF->GetAddrOfLocalVar(Args[Ints])),
330 CGF->VoidPtrTy, Alignments[Ints], KnownNonNull)...}};
331}
332
333// Template classes that are used as bases for classes that emit special
334// functions.
335template <class Derived> struct GenFuncBase {
336 template <size_t N>
337 void visitStruct(QualType FT, const FieldDecl *FD, CharUnits CurStructOffset,
338 std::array<Address, N> Addrs) {
339 this->asDerived().callSpecialFunction(
340 FT, CurStructOffset + asDerived().getFieldOffset(FD), Addrs);
341 }
342
343 template <class FieldKind, size_t N>
344 void visitArray(FieldKind FK, const ArrayType *AT, bool IsVolatile,
345 const FieldDecl *FD, CharUnits CurStructOffset,
346 std::array<Address, N> Addrs) {
347 // Non-volatile trivial fields are copied when flushTrivialFields is called.
348 if (!FK)
349 return asDerived().visitTrivial(QualType(AT, 0), FD, CurStructOffset,
350 Addrs);
351
352 asDerived().flushTrivialFields(Addrs);
353 CodeGenFunction &CGF = *this->CGF;
354 ASTContext &Ctx = CGF.getContext();
355
356 // Compute the end address.
357 QualType BaseEltQT;
358 std::array<Address, N> StartAddrs = Addrs;
359 for (unsigned I = 0; I < N; ++I)
360 StartAddrs[I] = getAddrWithOffset(Addrs[I], CurStructOffset, FD);
361 Address DstAddr = StartAddrs[DstIdx];
362 llvm::Value *NumElts = CGF.emitArrayLength(AT, BaseEltQT, DstAddr);
363 unsigned BaseEltSize = Ctx.getTypeSizeInChars(BaseEltQT).getQuantity();
364 llvm::Value *BaseEltSizeVal =
365 llvm::ConstantInt::get(NumElts->getType(), BaseEltSize);
366 llvm::Value *SizeInBytes =
367 CGF.Builder.CreateNUWMul(BaseEltSizeVal, NumElts);
368 Address BC = CGF.Builder.CreateElementBitCast(DstAddr, CGF.CGM.Int8Ty);
369 llvm::Value *DstArrayEnd =
370 CGF.Builder.CreateInBoundsGEP(CGF.Int8Ty, BC.getPointer(), SizeInBytes);
371 DstArrayEnd = CGF.Builder.CreateBitCast(
372 DstArrayEnd, CGF.CGM.Int8PtrPtrTy, "dstarray.end");
373 llvm::BasicBlock *PreheaderBB = CGF.Builder.GetInsertBlock();
374
375 // Create the header block and insert the phi instructions.
376 llvm::BasicBlock *HeaderBB = CGF.createBasicBlock("loop.header");
377 CGF.EmitBlock(HeaderBB);
378 llvm::PHINode *PHIs[N];
379
380 for (unsigned I = 0; I < N; ++I) {
381 PHIs[I] = CGF.Builder.CreatePHI(CGF.CGM.Int8PtrPtrTy, 2, "addr.cur");
382 PHIs[I]->addIncoming(StartAddrs[I].getPointer(), PreheaderBB);
383 }
384
385 // Create the exit and loop body blocks.
386 llvm::BasicBlock *ExitBB = CGF.createBasicBlock("loop.exit");
387 llvm::BasicBlock *LoopBB = CGF.createBasicBlock("loop.body");
388
389 // Emit the comparison and conditional branch instruction that jumps to
390 // either the exit or the loop body.
391 llvm::Value *Done =
392 CGF.Builder.CreateICmpEQ(PHIs[DstIdx], DstArrayEnd, "done");
393 CGF.Builder.CreateCondBr(Done, ExitBB, LoopBB);
394
395 // Visit the element of the array in the loop body.
396 CGF.EmitBlock(LoopBB);
397 QualType EltQT = AT->getElementType();
398 CharUnits EltSize = Ctx.getTypeSizeInChars(EltQT);
399 std::array<Address, N> NewAddrs = Addrs;
400
401 for (unsigned I = 0; I < N; ++I)
402 NewAddrs[I] =
403 Address(PHIs[I], CGF.Int8PtrTy,
404 StartAddrs[I].getAlignment().alignmentAtOffset(EltSize));
405
406 EltQT = IsVolatile ? EltQT.withVolatile() : EltQT;
407 this->asDerived().visitWithKind(FK, EltQT, nullptr, CharUnits::Zero(),
408 NewAddrs);
409
410 LoopBB = CGF.Builder.GetInsertBlock();
411
412 for (unsigned I = 0; I < N; ++I) {
413 // Instrs to update the destination and source addresses.
414 // Update phi instructions.
415 NewAddrs[I] = getAddrWithOffset(NewAddrs[I], EltSize);
416 PHIs[I]->addIncoming(NewAddrs[I].getPointer(), LoopBB);
417 }
418
419 // Insert an unconditional branch to the header block.
420 CGF.Builder.CreateBr(HeaderBB);
421 CGF.EmitBlock(ExitBB);
422 }
423
424 /// Return an address with the specified offset from the passed address.
425 Address getAddrWithOffset(Address Addr, CharUnits Offset) {
426 assert(Addr.isValid() && "invalid address");
427 if (Offset.getQuantity() == 0)
428 return Addr;
429 Addr = CGF->Builder.CreateElementBitCast(Addr, CGF->CGM.Int8Ty);
430 Addr = CGF->Builder.CreateConstInBoundsGEP(Addr, Offset.getQuantity());
431 return CGF->Builder.CreateElementBitCast(Addr, CGF->CGM.Int8PtrTy);
432 }
433
434 Address getAddrWithOffset(Address Addr, CharUnits StructFieldOffset,
435 const FieldDecl *FD) {
436 return getAddrWithOffset(Addr, StructFieldOffset +
437 asDerived().getFieldOffset(FD));
438 }
439
440 template <size_t N>
441 llvm::Function *getFunction(StringRef FuncName, QualType QT,
442 std::array<CharUnits, N> Alignments,
443 CodeGenModule &CGM) {
444 // If the special function already exists in the module, return it.
445 if (llvm::Function *F = CGM.getModule().getFunction(FuncName)) {
446 bool WrongType = false;
447 if (!F->getReturnType()->isVoidTy())
448 WrongType = true;
449 else {
450 for (const llvm::Argument &Arg : F->args())
451 if (Arg.getType() != CGM.Int8PtrPtrTy)
452 WrongType = true;
453 }
454
455 if (WrongType) {
456 std::string FuncName = std::string(F->getName());
457 SourceLocation Loc = QT->castAs<RecordType>()->getDecl()->getLocation();
458 CGM.Error(Loc, "special function " + FuncName +
459 " for non-trivial C struct has incorrect type");
460 return nullptr;
461 }
462 return F;
463 }
464
465 ASTContext &Ctx = CGM.getContext();
466 FunctionArgList Args;
467 const CGFunctionInfo &FI = getFunctionInfo<N>(CGM, Args);
468 llvm::FunctionType *FuncTy = CGM.getTypes().GetFunctionType(FI);
469 llvm::Function *F =
470 llvm::Function::Create(FuncTy, llvm::GlobalValue::LinkOnceODRLinkage,
471 FuncName, &CGM.getModule());
472 F->setVisibility(llvm::GlobalValue::HiddenVisibility);
473 CGM.SetLLVMFunctionAttributes(GlobalDecl(), FI, F, /*IsThunk=*/false);
475 CodeGenFunction NewCGF(CGM);
476 setCGF(&NewCGF);
477 CGF->StartFunction(GlobalDecl(), Ctx.VoidTy, F, FI, Args);
479 std::array<Address, N> Addrs =
480 getParamAddrs<N>(std::make_index_sequence<N>{}, Alignments, Args, CGF);
481 asDerived().visitStructFields(QT, CharUnits::Zero(), Addrs);
482 CGF->FinishFunction();
483 return F;
484 }
485
486 template <size_t N>
487 void callFunc(StringRef FuncName, QualType QT, std::array<Address, N> Addrs,
488 CodeGenFunction &CallerCGF) {
489 std::array<CharUnits, N> Alignments;
490 llvm::Value *Ptrs[N];
491
492 for (unsigned I = 0; I < N; ++I) {
493 Alignments[I] = Addrs[I].getAlignment();
494 Ptrs[I] = CallerCGF.Builder.CreateElementBitCast(
495 Addrs[I], CallerCGF.CGM.Int8PtrTy).getPointer();
496 }
497
498 if (llvm::Function *F =
499 getFunction(FuncName, QT, Alignments, CallerCGF.CGM))
500 CallerCGF.EmitNounwindRuntimeCall(F, Ptrs);
501 }
502
503 Derived &asDerived() { return static_cast<Derived &>(*this); }
504
505 void setCGF(CodeGenFunction *F) { CGF = F; }
506
507 CodeGenFunction *CGF = nullptr;
508};
509
510template <class Derived, bool IsMove>
511struct GenBinaryFunc : CopyStructVisitor<Derived, IsMove>,
512 GenFuncBase<Derived> {
513 GenBinaryFunc(ASTContext &Ctx) : CopyStructVisitor<Derived, IsMove>(Ctx) {}
514
515 void flushTrivialFields(std::array<Address, 2> Addrs) {
516 CharUnits Size = this->End - this->Start;
517
518 if (Size.getQuantity() == 0)
519 return;
520
521 Address DstAddr = this->getAddrWithOffset(Addrs[DstIdx], this->Start);
522 Address SrcAddr = this->getAddrWithOffset(Addrs[SrcIdx], this->Start);
523
524 // Emit memcpy.
525 if (Size.getQuantity() >= 16 ||
526 !llvm::has_single_bit<uint32_t>(Size.getQuantity())) {
527 llvm::Value *SizeVal =
528 llvm::ConstantInt::get(this->CGF->SizeTy, Size.getQuantity());
529 DstAddr =
530 this->CGF->Builder.CreateElementBitCast(DstAddr, this->CGF->Int8Ty);
531 SrcAddr =
532 this->CGF->Builder.CreateElementBitCast(SrcAddr, this->CGF->Int8Ty);
533 this->CGF->Builder.CreateMemCpy(DstAddr, SrcAddr, SizeVal, false);
534 } else {
535 llvm::Type *Ty = llvm::Type::getIntNTy(
536 this->CGF->getLLVMContext(),
537 Size.getQuantity() * this->CGF->getContext().getCharWidth());
538 DstAddr = this->CGF->Builder.CreateElementBitCast(DstAddr, Ty);
539 SrcAddr = this->CGF->Builder.CreateElementBitCast(SrcAddr, Ty);
540 llvm::Value *SrcVal = this->CGF->Builder.CreateLoad(SrcAddr, false);
541 this->CGF->Builder.CreateStore(SrcVal, DstAddr, false);
542 }
543
544 this->Start = this->End = CharUnits::Zero();
545 }
546
547 template <class... Ts>
548 void visitVolatileTrivial(QualType FT, const FieldDecl *FD, CharUnits Offset,
549 std::array<Address, 2> Addrs) {
550 LValue DstLV, SrcLV;
551 if (FD) {
552 // No need to copy zero-length bit-fields.
553 if (FD->isZeroLengthBitField(this->CGF->getContext()))
554 return;
555
556 QualType RT = QualType(FD->getParent()->getTypeForDecl(), 0);
557 llvm::Type *Ty = this->CGF->ConvertType(RT);
558 Address DstAddr = this->getAddrWithOffset(Addrs[DstIdx], Offset);
559 LValue DstBase = this->CGF->MakeAddrLValue(
560 this->CGF->Builder.CreateElementBitCast(DstAddr, Ty), FT);
561 DstLV = this->CGF->EmitLValueForField(DstBase, FD);
562 Address SrcAddr = this->getAddrWithOffset(Addrs[SrcIdx], Offset);
563 LValue SrcBase = this->CGF->MakeAddrLValue(
564 this->CGF->Builder.CreateElementBitCast(SrcAddr, Ty), FT);
565 SrcLV = this->CGF->EmitLValueForField(SrcBase, FD);
566 } else {
567 llvm::Type *Ty = this->CGF->ConvertTypeForMem(FT);
568 Address DstAddr =
569 this->CGF->Builder.CreateElementBitCast(Addrs[DstIdx], Ty);
570 Address SrcAddr =
571 this->CGF->Builder.CreateElementBitCast(Addrs[SrcIdx], Ty);
572 DstLV = this->CGF->MakeAddrLValue(DstAddr, FT);
573 SrcLV = this->CGF->MakeAddrLValue(SrcAddr, FT);
574 }
575 RValue SrcVal = this->CGF->EmitLoadOfLValue(SrcLV, SourceLocation());
576 this->CGF->EmitStoreThroughLValue(SrcVal, DstLV);
577 }
578};
579
580// These classes that emit the special functions for a non-trivial struct.
581struct GenDestructor : StructVisitor<GenDestructor>,
582 GenFuncBase<GenDestructor>,
583 DestructedTypeVisitor<GenDestructor> {
585 GenDestructor(ASTContext &Ctx) : StructVisitor<GenDestructor>(Ctx) {}
586
588 const FieldDecl *FD, CharUnits CurStructOffset,
589 std::array<Address, 1> Addrs) {
590 if (const auto *AT = getContext().getAsArrayType(FT)) {
591 visitArray(DK, AT, FT.isVolatileQualified(), FD, CurStructOffset, Addrs);
592 return;
593 }
594
595 Super::visitWithKind(DK, FT, FD, CurStructOffset, Addrs);
596 }
597
598 void visitARCStrong(QualType QT, const FieldDecl *FD,
599 CharUnits CurStructOffset, std::array<Address, 1> Addrs) {
601 *CGF, getAddrWithOffset(Addrs[DstIdx], CurStructOffset, FD), QT);
602 }
603
604 void visitARCWeak(QualType QT, const FieldDecl *FD, CharUnits CurStructOffset,
605 std::array<Address, 1> Addrs) {
606 CGF->destroyARCWeak(
607 *CGF, getAddrWithOffset(Addrs[DstIdx], CurStructOffset, FD), QT);
608 }
609
611 std::array<Address, 1> Addrs) {
613 CGF->MakeAddrLValue(getAddrWithOffset(Addrs[DstIdx], Offset), FT));
614 }
615};
616
617struct GenDefaultInitialize
618 : StructVisitor<GenDefaultInitialize>,
619 GenFuncBase<GenDefaultInitialize>,
620 DefaultInitializedTypeVisitor<GenDefaultInitialize> {
622 typedef GenFuncBase<GenDefaultInitialize> GenFuncBaseTy;
623
624 GenDefaultInitialize(ASTContext &Ctx)
625 : StructVisitor<GenDefaultInitialize>(Ctx) {}
626
628 const FieldDecl *FD, CharUnits CurStructOffset,
629 std::array<Address, 1> Addrs) {
630 if (const auto *AT = getContext().getAsArrayType(FT)) {
631 visitArray(PDIK, AT, FT.isVolatileQualified(), FD, CurStructOffset,
632 Addrs);
633 return;
634 }
635
636 Super::visitWithKind(PDIK, FT, FD, CurStructOffset, Addrs);
637 }
638
639 void visitARCStrong(QualType QT, const FieldDecl *FD,
640 CharUnits CurStructOffset, std::array<Address, 1> Addrs) {
642 getAddrWithOffset(Addrs[DstIdx], CurStructOffset, FD), QT);
643 }
644
645 void visitARCWeak(QualType QT, const FieldDecl *FD, CharUnits CurStructOffset,
646 std::array<Address, 1> Addrs) {
648 getAddrWithOffset(Addrs[DstIdx], CurStructOffset, FD), QT);
649 }
650
651 template <class FieldKind, size_t... Is>
652 void visitArray(FieldKind FK, const ArrayType *AT, bool IsVolatile,
653 const FieldDecl *FD, CharUnits CurStructOffset,
654 std::array<Address, 1> Addrs) {
655 if (!FK)
656 return visitTrivial(QualType(AT, 0), FD, CurStructOffset, Addrs);
657
658 ASTContext &Ctx = getContext();
660 QualType EltTy = Ctx.getBaseElementType(QualType(AT, 0));
661
662 if (Size < CharUnits::fromQuantity(16) || EltTy->getAs<RecordType>()) {
663 GenFuncBaseTy::visitArray(FK, AT, IsVolatile, FD, CurStructOffset, Addrs);
664 return;
665 }
666
667 llvm::Constant *SizeVal = CGF->Builder.getInt64(Size.getQuantity());
668 Address DstAddr = getAddrWithOffset(Addrs[DstIdx], CurStructOffset, FD);
669 Address Loc = CGF->Builder.CreateElementBitCast(DstAddr, CGF->Int8Ty);
670 CGF->Builder.CreateMemSet(Loc, CGF->Builder.getInt8(0), SizeVal,
671 IsVolatile);
672 }
673
675 std::array<Address, 1> Addrs) {
677 CGF->MakeAddrLValue(getAddrWithOffset(Addrs[DstIdx], Offset), FT));
678 }
679};
680
681struct GenCopyConstructor : GenBinaryFunc<GenCopyConstructor, false> {
682 GenCopyConstructor(ASTContext &Ctx)
683 : GenBinaryFunc<GenCopyConstructor, false>(Ctx) {}
684
685 void visitARCStrong(QualType QT, const FieldDecl *FD,
686 CharUnits CurStructOffset, std::array<Address, 2> Addrs) {
687 Addrs[DstIdx] = getAddrWithOffset(Addrs[DstIdx], CurStructOffset, FD);
688 Addrs[SrcIdx] = getAddrWithOffset(Addrs[SrcIdx], CurStructOffset, FD);
689 llvm::Value *SrcVal = CGF->EmitLoadOfScalar(
690 Addrs[SrcIdx], QT.isVolatileQualified(), QT, SourceLocation());
691 llvm::Value *Val = CGF->EmitARCRetain(QT, SrcVal);
692 CGF->EmitStoreOfScalar(Val, CGF->MakeAddrLValue(Addrs[DstIdx], QT), true);
693 }
694
695 void visitARCWeak(QualType QT, const FieldDecl *FD, CharUnits CurStructOffset,
696 std::array<Address, 2> Addrs) {
697 Addrs[DstIdx] = getAddrWithOffset(Addrs[DstIdx], CurStructOffset, FD);
698 Addrs[SrcIdx] = getAddrWithOffset(Addrs[SrcIdx], CurStructOffset, FD);
699 CGF->EmitARCCopyWeak(Addrs[DstIdx], Addrs[SrcIdx]);
700 }
701
703 std::array<Address, 2> Addrs) {
704 Addrs[DstIdx] = getAddrWithOffset(Addrs[DstIdx], Offset);
705 Addrs[SrcIdx] = getAddrWithOffset(Addrs[SrcIdx], Offset);
706 CGF->callCStructCopyConstructor(CGF->MakeAddrLValue(Addrs[DstIdx], FT),
707 CGF->MakeAddrLValue(Addrs[SrcIdx], FT));
708 }
709};
710
711struct GenMoveConstructor : GenBinaryFunc<GenMoveConstructor, true> {
712 GenMoveConstructor(ASTContext &Ctx)
713 : GenBinaryFunc<GenMoveConstructor, true>(Ctx) {}
714
715 void visitARCStrong(QualType QT, const FieldDecl *FD,
716 CharUnits CurStructOffset, std::array<Address, 2> Addrs) {
717 Addrs[DstIdx] = getAddrWithOffset(Addrs[DstIdx], CurStructOffset, FD);
718 Addrs[SrcIdx] = getAddrWithOffset(Addrs[SrcIdx], CurStructOffset, FD);
719 LValue SrcLV = CGF->MakeAddrLValue(Addrs[SrcIdx], QT);
720 llvm::Value *SrcVal =
722 CGF->EmitStoreOfScalar(getNullForVariable(SrcLV.getAddress(*CGF)), SrcLV);
723 CGF->EmitStoreOfScalar(SrcVal, CGF->MakeAddrLValue(Addrs[DstIdx], QT),
724 /* isInitialization */ true);
725 }
726
727 void visitARCWeak(QualType QT, const FieldDecl *FD, CharUnits CurStructOffset,
728 std::array<Address, 2> Addrs) {
729 Addrs[DstIdx] = getAddrWithOffset(Addrs[DstIdx], CurStructOffset, FD);
730 Addrs[SrcIdx] = getAddrWithOffset(Addrs[SrcIdx], CurStructOffset, FD);
731 CGF->EmitARCMoveWeak(Addrs[DstIdx], Addrs[SrcIdx]);
732 }
733
735 std::array<Address, 2> Addrs) {
736 Addrs[DstIdx] = getAddrWithOffset(Addrs[DstIdx], Offset);
737 Addrs[SrcIdx] = getAddrWithOffset(Addrs[SrcIdx], Offset);
738 CGF->callCStructMoveConstructor(CGF->MakeAddrLValue(Addrs[DstIdx], FT),
739 CGF->MakeAddrLValue(Addrs[SrcIdx], FT));
740 }
741};
742
743struct GenCopyAssignment : GenBinaryFunc<GenCopyAssignment, false> {
744 GenCopyAssignment(ASTContext &Ctx)
745 : GenBinaryFunc<GenCopyAssignment, false>(Ctx) {}
746
747 void visitARCStrong(QualType QT, const FieldDecl *FD,
748 CharUnits CurStructOffset, std::array<Address, 2> Addrs) {
749 Addrs[DstIdx] = getAddrWithOffset(Addrs[DstIdx], CurStructOffset, FD);
750 Addrs[SrcIdx] = getAddrWithOffset(Addrs[SrcIdx], CurStructOffset, FD);
751 llvm::Value *SrcVal = CGF->EmitLoadOfScalar(
752 Addrs[SrcIdx], QT.isVolatileQualified(), QT, SourceLocation());
753 CGF->EmitARCStoreStrong(CGF->MakeAddrLValue(Addrs[DstIdx], QT), SrcVal,
754 false);
755 }
756
757 void visitARCWeak(QualType QT, const FieldDecl *FD, CharUnits CurStructOffset,
758 std::array<Address, 2> Addrs) {
759 Addrs[DstIdx] = getAddrWithOffset(Addrs[DstIdx], CurStructOffset, FD);
760 Addrs[SrcIdx] = getAddrWithOffset(Addrs[SrcIdx], CurStructOffset, FD);
761 CGF->emitARCCopyAssignWeak(QT, Addrs[DstIdx], Addrs[SrcIdx]);
762 }
763
765 std::array<Address, 2> Addrs) {
766 Addrs[DstIdx] = getAddrWithOffset(Addrs[DstIdx], Offset);
767 Addrs[SrcIdx] = getAddrWithOffset(Addrs[SrcIdx], Offset);
769 CGF->MakeAddrLValue(Addrs[DstIdx], FT),
770 CGF->MakeAddrLValue(Addrs[SrcIdx], FT));
771 }
772};
773
774struct GenMoveAssignment : GenBinaryFunc<GenMoveAssignment, true> {
775 GenMoveAssignment(ASTContext &Ctx)
776 : GenBinaryFunc<GenMoveAssignment, true>(Ctx) {}
777
778 void visitARCStrong(QualType QT, const FieldDecl *FD,
779 CharUnits CurStructOffset, std::array<Address, 2> Addrs) {
780 Addrs[DstIdx] = getAddrWithOffset(Addrs[DstIdx], CurStructOffset, FD);
781 Addrs[SrcIdx] = getAddrWithOffset(Addrs[SrcIdx], CurStructOffset, FD);
782 LValue SrcLV = CGF->MakeAddrLValue(Addrs[SrcIdx], QT);
783 llvm::Value *SrcVal =
785 CGF->EmitStoreOfScalar(getNullForVariable(SrcLV.getAddress(*CGF)), SrcLV);
786 LValue DstLV = CGF->MakeAddrLValue(Addrs[DstIdx], QT);
787 llvm::Value *DstVal =
789 CGF->EmitStoreOfScalar(SrcVal, DstLV);
791 }
792
793 void visitARCWeak(QualType QT, const FieldDecl *FD, CharUnits CurStructOffset,
794 std::array<Address, 2> Addrs) {
795 Addrs[DstIdx] = getAddrWithOffset(Addrs[DstIdx], CurStructOffset, FD);
796 Addrs[SrcIdx] = getAddrWithOffset(Addrs[SrcIdx], CurStructOffset, FD);
797 CGF->emitARCMoveAssignWeak(QT, Addrs[DstIdx], Addrs[SrcIdx]);
798 }
799
801 std::array<Address, 2> Addrs) {
802 Addrs[DstIdx] = getAddrWithOffset(Addrs[DstIdx], Offset);
803 Addrs[SrcIdx] = getAddrWithOffset(Addrs[SrcIdx], Offset);
805 CGF->MakeAddrLValue(Addrs[DstIdx], FT),
806 CGF->MakeAddrLValue(Addrs[SrcIdx], FT));
807 }
808};
809
810} // namespace
811
812void CodeGenFunction::destroyNonTrivialCStruct(CodeGenFunction &CGF,
813 Address Addr, QualType Type) {
815}
816
817// Default-initialize a variable that is a non-trivial struct or an array of
818// such structure.
820 GenDefaultInitialize Gen(getContext());
821 Address DstPtr =
823 Gen.setCGF(this);
824 QualType QT = Dst.getType();
825 QT = Dst.isVolatile() ? QT.withVolatile() : QT;
826 Gen.visit(QT, nullptr, CharUnits::Zero(), std::array<Address, 1>({{DstPtr}}));
827}
828
829template <class G, size_t N>
830static void callSpecialFunction(G &&Gen, StringRef FuncName, QualType QT,
831 bool IsVolatile, CodeGenFunction &CGF,
832 std::array<Address, N> Addrs) {
833 auto SetArtificialLoc = ApplyDebugLocation::CreateArtificial(CGF);
834 for (unsigned I = 0; I < N; ++I)
835 Addrs[I] = CGF.Builder.CreateElementBitCast(Addrs[I], CGF.CGM.Int8PtrTy);
836 QT = IsVolatile ? QT.withVolatile() : QT;
837 Gen.callFunc(FuncName, QT, Addrs, CGF);
838}
839
840template <class G, size_t N>
841static llvm::Function *
842getSpecialFunction(G &&Gen, StringRef FuncName, QualType QT, bool IsVolatile,
843 std::array<CharUnits, N> Alignments, CodeGenModule &CGM) {
844 QT = IsVolatile ? QT.withVolatile() : QT;
845 // The following call requires an array of addresses as arguments, but doesn't
846 // actually use them (it overwrites them with the addresses of the arguments
847 // of the created function).
848 return Gen.getFunction(FuncName, QT, Alignments, CGM);
849}
850
851// Functions to emit calls to the special functions of a non-trivial C struct.
853 bool IsVolatile = Dst.isVolatile();
854 Address DstPtr = Dst.getAddress(*this);
855 QualType QT = Dst.getType();
856 GenDefaultInitializeFuncName GenName(DstPtr.getAlignment(), getContext());
857 std::string FuncName = GenName.getName(QT, IsVolatile);
858 callSpecialFunction(GenDefaultInitialize(getContext()), FuncName, QT,
859 IsVolatile, *this, std::array<Address, 1>({{DstPtr}}));
860}
861
863 QualType QT, CharUnits Alignment, bool IsVolatile, ASTContext &Ctx) {
864 GenBinaryFuncName<false> GenName("", Alignment, Alignment, Ctx);
865 return GenName.getName(QT, IsVolatile);
866}
867
869 CharUnits Alignment,
870 bool IsVolatile,
871 ASTContext &Ctx) {
872 GenDestructorFuncName GenName("", Alignment, Ctx);
873 return GenName.getName(QT, IsVolatile);
874}
875
877 bool IsVolatile = Dst.isVolatile();
878 Address DstPtr = Dst.getAddress(*this);
879 QualType QT = Dst.getType();
880 GenDestructorFuncName GenName("__destructor_", DstPtr.getAlignment(),
881 getContext());
882 std::string FuncName = GenName.getName(QT, IsVolatile);
883 callSpecialFunction(GenDestructor(getContext()), FuncName, QT, IsVolatile,
884 *this, std::array<Address, 1>({{DstPtr}}));
885}
886
888 bool IsVolatile = Dst.isVolatile() || Src.isVolatile();
889 Address DstPtr = Dst.getAddress(*this), SrcPtr = Src.getAddress(*this);
890 QualType QT = Dst.getType();
891 GenBinaryFuncName<false> GenName("__copy_constructor_", DstPtr.getAlignment(),
892 SrcPtr.getAlignment(), getContext());
893 std::string FuncName = GenName.getName(QT, IsVolatile);
894 callSpecialFunction(GenCopyConstructor(getContext()), FuncName, QT,
895 IsVolatile, *this,
896 std::array<Address, 2>({{DstPtr, SrcPtr}}));
897}
898
900
901) {
902 bool IsVolatile = Dst.isVolatile() || Src.isVolatile();
903 Address DstPtr = Dst.getAddress(*this), SrcPtr = Src.getAddress(*this);
904 QualType QT = Dst.getType();
905 GenBinaryFuncName<false> GenName("__copy_assignment_", DstPtr.getAlignment(),
906 SrcPtr.getAlignment(), getContext());
907 std::string FuncName = GenName.getName(QT, IsVolatile);
908 callSpecialFunction(GenCopyAssignment(getContext()), FuncName, QT, IsVolatile,
909 *this, std::array<Address, 2>({{DstPtr, SrcPtr}}));
910}
911
913 bool IsVolatile = Dst.isVolatile() || Src.isVolatile();
914 Address DstPtr = Dst.getAddress(*this), SrcPtr = Src.getAddress(*this);
915 QualType QT = Dst.getType();
916 GenBinaryFuncName<true> GenName("__move_constructor_", DstPtr.getAlignment(),
917 SrcPtr.getAlignment(), getContext());
918 std::string FuncName = GenName.getName(QT, IsVolatile);
919 callSpecialFunction(GenMoveConstructor(getContext()), FuncName, QT,
920 IsVolatile, *this,
921 std::array<Address, 2>({{DstPtr, SrcPtr}}));
922}
923
925
926) {
927 bool IsVolatile = Dst.isVolatile() || Src.isVolatile();
928 Address DstPtr = Dst.getAddress(*this), SrcPtr = Src.getAddress(*this);
929 QualType QT = Dst.getType();
930 GenBinaryFuncName<true> GenName("__move_assignment_", DstPtr.getAlignment(),
931 SrcPtr.getAlignment(), getContext());
932 std::string FuncName = GenName.getName(QT, IsVolatile);
933 callSpecialFunction(GenMoveAssignment(getContext()), FuncName, QT, IsVolatile,
934 *this, std::array<Address, 2>({{DstPtr, SrcPtr}}));
935}
936
938 CodeGenModule &CGM, CharUnits DstAlignment, bool IsVolatile, QualType QT) {
939 ASTContext &Ctx = CGM.getContext();
940 GenDefaultInitializeFuncName GenName(DstAlignment, Ctx);
941 std::string FuncName = GenName.getName(QT, IsVolatile);
942 return getSpecialFunction(GenDefaultInitialize(Ctx), FuncName, QT, IsVolatile,
943 std::array<CharUnits, 1>({{DstAlignment}}), CGM);
944}
945
947 CodeGenModule &CGM, CharUnits DstAlignment, CharUnits SrcAlignment,
948 bool IsVolatile, QualType QT) {
949 ASTContext &Ctx = CGM.getContext();
950 GenBinaryFuncName<false> GenName("__copy_constructor_", DstAlignment,
951 SrcAlignment, Ctx);
952 std::string FuncName = GenName.getName(QT, IsVolatile);
953 return getSpecialFunction(
954 GenCopyConstructor(Ctx), FuncName, QT, IsVolatile,
955 std::array<CharUnits, 2>({{DstAlignment, SrcAlignment}}), CGM);
956}
957
959 CodeGenModule &CGM, CharUnits DstAlignment, CharUnits SrcAlignment,
960 bool IsVolatile, QualType QT) {
961 ASTContext &Ctx = CGM.getContext();
962 GenBinaryFuncName<true> GenName("__move_constructor_", DstAlignment,
963 SrcAlignment, Ctx);
964 std::string FuncName = GenName.getName(QT, IsVolatile);
965 return getSpecialFunction(
966 GenMoveConstructor(Ctx), FuncName, QT, IsVolatile,
967 std::array<CharUnits, 2>({{DstAlignment, SrcAlignment}}), CGM);
968}
969
971 CodeGenModule &CGM, CharUnits DstAlignment, CharUnits SrcAlignment,
972 bool IsVolatile, QualType QT) {
973 ASTContext &Ctx = CGM.getContext();
974 GenBinaryFuncName<false> GenName("__copy_assignment_", DstAlignment,
975 SrcAlignment, Ctx);
976 std::string FuncName = GenName.getName(QT, IsVolatile);
977 return getSpecialFunction(
978 GenCopyAssignment(Ctx), FuncName, QT, IsVolatile,
979 std::array<CharUnits, 2>({{DstAlignment, SrcAlignment}}), CGM);
980}
981
983 CodeGenModule &CGM, CharUnits DstAlignment, CharUnits SrcAlignment,
984 bool IsVolatile, QualType QT) {
985 ASTContext &Ctx = CGM.getContext();
986 GenBinaryFuncName<true> GenName("__move_assignment_", DstAlignment,
987 SrcAlignment, Ctx);
988 std::string FuncName = GenName.getName(QT, IsVolatile);
989 return getSpecialFunction(
990 GenMoveAssignment(Ctx), FuncName, QT, IsVolatile,
991 std::array<CharUnits, 2>({{DstAlignment, SrcAlignment}}), CGM);
992}
993
995 CodeGenModule &CGM, CharUnits DstAlignment, bool IsVolatile, QualType QT) {
996 ASTContext &Ctx = CGM.getContext();
997 GenDestructorFuncName GenName("__destructor_", DstAlignment, Ctx);
998 std::string FuncName = GenName.getName(QT, IsVolatile);
999 return getSpecialFunction(GenDestructor(Ctx), FuncName, QT, IsVolatile,
1000 std::array<CharUnits, 1>({{DstAlignment}}), CGM);
1001}
static uint64_t getFieldSize(const FieldDecl *FD, QualType FT, ASTContext &Ctx)
static void callSpecialFunction(G &&Gen, StringRef FuncName, QualType QT, bool IsVolatile, CodeGenFunction &CGF, std::array< Address, N > Addrs)
static llvm::Function * getSpecialFunction(G &&Gen, StringRef FuncName, QualType QT, bool IsVolatile, std::array< CharUnits, N > Alignments, CodeGenModule &CGM)
static llvm::Constant * getNullForVariable(Address addr)
Given the address of a variable of pointer type, find the correct null to store into it.
Definition: CGObjC.cpp:45
unsigned Offset
Definition: Format.cpp:2776
static uint64_t getFieldOffset(const ASTContext &C, const FieldDecl *FD)
static std::string getName(const CallEvent &Call)
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Definition: ASTContext.h:182
QualType getPointerType(QualType T) const
Return the uniqued reference to the type for a pointer to the specified type.
CanQualType VoidPtrTy
Definition: ASTContext.h:1105
IdentifierTable & Idents
Definition: ASTContext.h:631
QualType getBaseElementType(const ArrayType *VAT) const
Return the innermost element type of an array type.
int64_t toBits(CharUnits CharSize) const
Convert a size in characters to a size in bits.
uint64_t getTypeSize(QualType T) const
Return the size of the specified (complete) type T, in bits.
Definition: ASTContext.h:2279
CharUnits getTypeSizeInChars(QualType T) const
Return the size of the specified (complete) type T, in characters.
CanQualType VoidTy
Definition: ASTContext.h:1078
CharUnits toCharUnitsFromBits(int64_t BitSize) const
Convert a size in bits to a size in characters.
uint64_t getConstantArrayElementCount(const ConstantArrayType *CA) const
Return number of constant array elements.
uint64_t getCharWidth() const
Return the size of the character type, in bits.
Definition: ASTContext.h:2283
Represents an array type, per C99 6.7.5.2 - Array Declarators.
Definition: Type.h:3031
QualType getElementType() const
Definition: Type.h:3052
CharUnits - This is an opaque type for sizes expressed in character units.
Definition: CharUnits.h:38
QuantityType getQuantity() const
getQuantity - Get the raw integer representation of this quantity.
Definition: CharUnits.h:185
static CharUnits fromQuantity(QuantityType Quantity)
fromQuantity - Construct a CharUnits quantity from a raw integer type.
Definition: CharUnits.h:63
static CharUnits Zero()
Zero - Construct a CharUnits quantity of zero.
Definition: CharUnits.h:53
An aligned address.
Definition: Address.h:29
CharUnits getAlignment() const
Return the alignment of this pointer.
Definition: Address.h:81
llvm::Type * getElementType() const
Return the type of the values stored in this address.
Definition: Address.h:65
llvm::Value * getPointer() const
Definition: Address.h:54
bool isValid() const
Definition: Address.h:50
static ApplyDebugLocation CreateArtificial(CodeGenFunction &CGF)
Apply TemporaryLocation if it is valid.
Definition: CGDebugInfo.h:830
llvm::StoreInst * CreateStore(llvm::Value *Val, Address Addr, bool IsVolatile=false)
Definition: CGBuilder.h:99
Address CreateElementBitCast(Address Addr, llvm::Type *Ty, const llvm::Twine &Name="")
Cast the element type of the given address to a different type, preserving information like the align...
Definition: CGBuilder.h:169
llvm::CallInst * CreateMemSet(Address Dest, llvm::Value *Value, llvm::Value *Size, bool IsVolatile=false)
Definition: CGBuilder.h:347
llvm::LoadInst * CreateLoad(Address Addr, const llvm::Twine &Name="")
Definition: CGBuilder.h:71
llvm::CallInst * CreateMemCpy(Address Dest, Address Src, llvm::Value *Size, bool IsVolatile=false)
Definition: CGBuilder.h:318
Address CreateConstInBoundsGEP(Address Addr, uint64_t Index, const llvm::Twine &Name="")
Given addr = T* ... produce name = getelementptr inbounds addr, i64 index where i64 is actually the t...
Definition: CGBuilder.h:234
CGFunctionInfo - Class to encapsulate the information about a function definition.
CodeGenFunction - This class organizes the per-function state that is used while generating LLVM code...
void FinishFunction(SourceLocation EndLoc=SourceLocation())
FinishFunction - Complete IR generation of the current function.
void EmitNullInitialization(Address DestPtr, QualType Ty)
EmitNullInitialization - Generate code to set a value of the given type to null, If the type contains...
void EmitARCMoveWeak(Address dst, Address src)
void EmitStoreThroughLValue(RValue Src, LValue Dst, bool isInit=false)
EmitStoreThroughLValue - Store the specified rvalue into the specified lvalue, where both are guarant...
void callCStructDefaultConstructor(LValue Dst)
llvm::Value * emitArrayLength(const ArrayType *arrayType, QualType &baseType, Address &addr)
emitArrayLength - Compute the length of an array, even if it's a VLA, and drill down to the base elem...
void callCStructCopyAssignmentOperator(LValue Dst, LValue Src)
void callCStructMoveConstructor(LValue Dst, LValue Src)
void callCStructCopyConstructor(LValue Dst, LValue Src)
llvm::BasicBlock * createBasicBlock(const Twine &name="", llvm::Function *parent=nullptr, llvm::BasicBlock *before=nullptr)
createBasicBlock - Create an LLVM basic block.
void EmitBlock(llvm::BasicBlock *BB, bool IsFinished=false)
EmitBlock - Emit the given block.
void callCStructDestructor(LValue Dst)
RValue EmitLoadOfLValue(LValue V, SourceLocation Loc)
EmitLoadOfLValue - Given an expression that represents a value lvalue, this method emits the address ...
llvm::Type * ConvertTypeForMem(QualType T)
LValue EmitLValueForField(LValue Base, const FieldDecl *Field)
static std::string getNonTrivialDestructorStr(QualType QT, CharUnits Alignment, bool IsVolatile, ASTContext &Ctx)
void EmitARCRelease(llvm::Value *value, ARCPreciseLifetime_t precise)
void EmitARCCopyWeak(Address dst, Address src)
void defaultInitNonTrivialCStructVar(LValue Dst)
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.
llvm::Value * EmitARCRetain(QualType type, llvm::Value *value)
llvm::CallInst * EmitNounwindRuntimeCall(llvm::FunctionCallee callee, const Twine &name="")
llvm::Value * EmitARCStoreStrong(LValue lvalue, llvm::Value *value, bool resultIgnored)
llvm::Value * EmitLoadOfScalar(Address Addr, bool Volatile, QualType Ty, SourceLocation Loc, AlignmentSource Source=AlignmentSource::Type, bool isNontemporal=false)
EmitLoadOfScalar - Load a scalar value from an address, taking care to appropriately convert from the...
void emitARCMoveAssignWeak(QualType Ty, Address DstAddr, Address SrcAddr)
void callCStructMoveAssignmentOperator(LValue Dst, LValue Src)
llvm::Type * ConvertType(QualType T)
void emitARCCopyAssignWeak(QualType Ty, Address DstAddr, Address SrcAddr)
LValue MakeAddrLValue(Address Addr, QualType T, AlignmentSource Source=AlignmentSource::Type)
Address GetAddrOfLocalVar(const VarDecl *VD)
GetAddrOfLocalVar - Return the address of a local variable.
static Destroyer destroyARCStrongImprecise
llvm::LLVMContext & getLLVMContext()
static std::string getNonTrivialCopyConstructorStr(QualType QT, CharUnits Alignment, bool IsVolatile, ASTContext &Ctx)
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...
This class organizes the cross-function state that is used while generating LLVM code.
llvm::Module & getModule() const
void Error(SourceLocation loc, StringRef error)
Emit a general error that something can't be done.
ASTContext & getContext() const
void SetLLVMFunctionAttributes(GlobalDecl GD, const CGFunctionInfo &Info, llvm::Function *F, bool IsThunk)
Set the LLVM function attributes (sext, zext, etc).
void SetLLVMFunctionAttributesForDefinition(const Decl *D, llvm::Function *F)
Set the LLVM function attributes which only apply to a function definition.
llvm::FunctionType * GetFunctionType(const CGFunctionInfo &Info)
GetFunctionType - Get the LLVM function type for.
Definition: CGCall.cpp:1618
const CGFunctionInfo & arrangeBuiltinFunctionDeclaration(QualType resultType, const FunctionArgList &args)
A builtin function is a freestanding function using the default C conventions.
Definition: CGCall.cpp:671
FunctionArgList - Type for representing both the decl and type of parameters to a function.
Definition: CGCall.h:353
LValue - This represents an lvalue references.
Definition: CGValue.h:171
Address getAddress(CodeGenFunction &CGF) const
Definition: CGValue.h:352
bool isVolatile() const
Definition: CGValue.h:318
QualType getType() const
Definition: CGValue.h:281
RValue - This trivial value class is used to represent the result of an expression that is evaluated.
Definition: CGValue.h:39
llvm::Value * getScalarVal() const
getScalarVal() - Return the Value* of this scalar value.
Definition: CGValue.h:61
Represents the canonical version of C arrays with a specified constant size.
Definition: Type.h:3079
Represents a member of a struct/union/class.
Definition: Decl.h:2941
bool isBitField() const
Determines whether this field is a bitfield.
Definition: Decl.h:3019
unsigned getFieldIndex() const
Returns the index of this field within its record, as appropriate for passing to ASTRecordLayout::get...
Definition: Decl.cpp:4370
bool isZeroLengthBitField(const ASTContext &Ctx) const
Is this a zero-length bit-field? Such bit-fields aren't really bit-fields at all and instead act as a...
Definition: Decl.cpp:4328
unsigned getBitWidthValue(const ASTContext &Ctx) const
Definition: Decl.cpp:4323
const RecordDecl * getParent() const
Returns the parent of this field declaration, which is the struct in which this field is defined.
Definition: Decl.h:3137
GlobalDecl - represents a global declaration.
Definition: GlobalDecl.h:56
IdentifierInfo & get(StringRef Name)
Return the identifier token info for the specified named identifier.
@ Other
Other implicit parameter.
Definition: Decl.h:1682
static ImplicitParamDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation IdLoc, IdentifierInfo *Id, QualType T, ImplicitParamKind ParamKind)
Create implicit parameter.
Definition: Decl.cpp:5074
A (possibly-)qualified type.
Definition: Type.h:736
bool isVolatileQualified() const
Determine whether this type is volatile-qualified.
Definition: Type.h:6732
PrimitiveDefaultInitializeKind
Definition: Type.h:1209
QualType withVolatile() const
Definition: Type.h:923
Represents a struct/union/class.
Definition: Decl.h:3998
field_range fields() const
Definition: Decl.h:4225
A helper class that allows the use of isa/cast/dyncast to detect TagType objects of structs/unions/cl...
Definition: Type.h:4835
Encodes a location in the source.
const Type * getTypeForDecl() const
Definition: Decl.h:3272
The base class of the type hierarchy.
Definition: Type.h:1566
bool isBlockPointerType() const
Definition: Type.h:6918
const T * castAs() const
Member-template castAs<specific type>.
Definition: Type.h:7491
const T * getAs() const
Member-template getAs<specific type>'.
Definition: Type.h:7424
llvm::Function * getNonTrivialCStructCopyConstructor(CodeGenModule &CGM, CharUnits DstAlignment, CharUnits SrcAlignment, bool IsVolatile, QualType QT)
Returns the copy constructor for a C struct with non-trivially copyable fields, generating it if nece...
llvm::Function * getNonTrivialCStructMoveConstructor(CodeGenModule &CGM, CharUnits DstAlignment, CharUnits SrcAlignment, bool IsVolatile, QualType QT)
Returns the move constructor for a C struct with non-trivially copyable fields, generating it if nece...
llvm::Function * getNonTrivialCStructCopyAssignmentOperator(CodeGenModule &CGM, CharUnits DstAlignment, CharUnits SrcAlignment, bool IsVolatile, QualType QT)
Returns the copy assignment operator for a C struct with non-trivially copyable fields,...
llvm::Function * getNonTrivialCStructMoveAssignmentOperator(CodeGenModule &CGM, CharUnits DstAlignment, CharUnits SrcAlignment, bool IsVolatile, QualType QT)
Return the move assignment operator for a C struct with non-trivially copyable fields,...
@ ARCImpreciseLifetime
Definition: CGValue.h:125
llvm::Function * getNonTrivialCStructDestructor(CodeGenModule &CGM, CharUnits DstAlignment, bool IsVolatile, QualType QT)
Returns the destructor for a C struct with non-trivially copyable fields, generating it if necessary.
llvm::Function * getNonTrivialCStructDefaultConstructor(CodeGenModule &GCM, CharUnits DstAlignment, bool IsVolatile, QualType QT)
Returns the default constructor for a C struct with non-trivially copyable fields,...
unsigned long uint64_t
#define true
Definition: stdbool.h:21
#define false
Definition: stdbool.h:22
llvm::IntegerType * Int8Ty
i8, i16, i32, and i64
RetTy visitWithKind(QualType::PrimitiveCopyKind PCK, QualType FT, Ts &&... Args)
RetTy visitWithKind(QualType::PrimitiveDefaultInitializeKind PDIK, QualType FT, Ts &&... Args)
RetTy visitWithKind(QualType::DestructionKind DK, QualType FT, Ts &&... Args)