clang 22.0.0git
CGCXXABI.cpp
Go to the documentation of this file.
1//===----- CGCXXABI.cpp - Interface to C++ ABIs ---------------------------===//
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 provides an abstract class for C++ code generation. Concrete subclasses
10// of this implement code generation for specific C++ ABIs.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CGCXXABI.h"
15#include "CGCleanup.h"
16#include "clang/AST/Attr.h"
17
18using namespace clang;
19using namespace CodeGen;
20
22
25 CGF.CXXABIThisValue, CGF.CXXABIThisDecl->getType()->getPointeeType(),
26 CGF.CXXABIThisAlignment);
27}
28
30 DiagnosticsEngine &Diags = CGF.CGM.getDiags();
31 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error,
32 "cannot yet compile %0 in this ABI");
34 DiagID)
35 << S;
36}
37
39 return llvm::Constant::getNullValue(CGM.getTypes().ConvertType(T));
40}
41
42llvm::Type *
45}
46
48 CodeGenFunction &CGF, const Expr *E, Address This,
49 llvm::Value *&ThisPtrForCall,
50 llvm::Value *MemPtr, const MemberPointerType *MPT) {
51 ErrorUnsupportedABI(CGF, "calls through member pointers");
52
53 const auto *RD = MPT->getMostRecentCXXRecordDecl();
54 ThisPtrForCall =
56 const FunctionProtoType *FPT =
58 llvm::Constant *FnPtr = llvm::Constant::getNullValue(
59 llvm::PointerType::getUnqual(CGM.getLLVMContext()));
60 return CGCallee::forDirect(FnPtr, FPT);
61}
62
64 CodeGenFunction &CGF, const Expr *E, Address Base, llvm::Value *MemPtr,
65 const MemberPointerType *MPT, bool IsInBounds) {
66 ErrorUnsupportedABI(CGF, "loads of member pointers");
67 llvm::Type *Ty =
68 llvm::PointerType::get(CGF.getLLVMContext(), Base.getAddressSpace());
69 return llvm::Constant::getNullValue(Ty);
70}
71
73 const CastExpr *E,
74 llvm::Value *Src) {
75 ErrorUnsupportedABI(CGF, "member function pointer conversions");
77}
78
80 llvm::Constant *Src) {
82}
83
84llvm::Value *
86 llvm::Value *L,
87 llvm::Value *R,
88 const MemberPointerType *MPT,
89 bool Inequality) {
90 ErrorUnsupportedABI(CGF, "member function pointer comparison");
91 return CGF.Builder.getFalse();
92}
93
94llvm::Value *
96 llvm::Value *MemPtr,
97 const MemberPointerType *MPT) {
98 ErrorUnsupportedABI(CGF, "member function pointer null testing");
99 return CGF.Builder.getFalse();
100}
101
102llvm::Constant *
104 return GetBogusMemberPointer(QualType(MPT, 0));
105}
106
109 MD->getType(), /*Qualifier=*/std::nullopt, MD->getParent()));
110}
111
113 CharUnits offset) {
114 return GetBogusMemberPointer(QualType(MPT, 0));
115}
116
117llvm::Constant *CGCXXABI::EmitMemberPointer(const APValue &MP, QualType MPT) {
118 return GetBogusMemberPointer(MPT);
119}
120
122 // Fake answer.
123 return true;
124}
125
127 const CXXMethodDecl *MD = cast<CXXMethodDecl>(CGF.CurGD.getDecl());
128
129 // FIXME: I'm not entirely sure I like using a fake decl just for code
130 // generation. Maybe we can come up with a better way?
131 auto *ThisDecl =
133 &CGM.getContext().Idents.get("this"),
135 params.push_back(ThisDecl);
136 CGF.CXXABIThisDecl = ThisDecl;
137
138 // Compute the presumed alignment of 'this', which basically comes
139 // down to whether we know it's a complete object or not.
140 auto &Layout = CGF.getContext().getASTRecordLayout(MD->getParent());
141 if (MD->getParent()->getNumVBases() == 0 || // avoid vcall in common case
142 MD->getParent()->isEffectivelyFinal() ||
144 CGF.CXXABIThisAlignment = Layout.getAlignment();
145 } else {
146 CGF.CXXABIThisAlignment = Layout.getNonVirtualAlignment();
147 }
148}
149
151 return CGF.Builder.CreateLoad(CGF.GetAddrOfLocalVar(getThisDecl(CGF)),
152 "this");
153}
154
155void CGCXXABI::setCXXABIThisValue(CodeGenFunction &CGF, llvm::Value *ThisPtr) {
156 /// Initialize the 'this' slot.
157 assert(getThisDecl(CGF) && "no 'this' variable for function");
158 CGF.CXXABIThisValue = ThisPtr;
159}
160
162 if (VD->needsDestruction(getContext()))
163 return true;
164
165 // If the variable has an incomplete class type (or array thereof), it
166 // might need destruction.
167 const Type *T = VD->getType()->getBaseElementTypeUnsafe();
168 return T->isRecordType() && T->isIncompleteType();
169}
170
172 const VarDecl *VD, bool InspectInitForWeakDef) const {
173 VD = VD->getMostRecentDecl();
174 if (VD->hasAttr<ConstInitAttr>())
175 return true;
176
177 // All later checks examine the initializer specified on the variable. If
178 // the variable is weak, such examination would not be correct.
179 if (!InspectInitForWeakDef && (VD->isWeak() || VD->hasAttr<SelectAnyAttr>()))
180 return false;
181
182 const VarDecl *InitDecl = VD->getInitializingDeclaration();
183 if (!InitDecl)
184 return false;
185
186 // If there's no initializer to run, this is constant initialization.
187 if (!InitDecl->hasInit())
188 return true;
189
190 // If we have the only definition, we don't need a thread wrapper if we
191 // will emit the value as a constant.
192 if (isUniqueGVALinkage(getContext().GetGVALinkageForVariable(VD)))
193 return !mayNeedDestruction(VD) && InitDecl->evaluateValue();
194
195 // Otherwise, we need a thread wrapper unless we know that every
196 // translation unit will emit the value as a constant. We rely on the
197 // variable being constant-initialized in every translation unit if it's
198 // constant-initialized in any translation unit, which isn't actually
199 // guaranteed by the standard but is necessary for sanity.
200 return InitDecl->hasConstantInitialization();
201}
202
204 RValue RV, QualType ResultType) {
205 assert(!CGF.hasAggregateEvaluationKind(ResultType) &&
206 "cannot handle aggregates");
207 CGF.EmitReturnOfRValue(RV, ResultType);
208}
209
212 return CharUnits::Zero();
213 return getArrayCookieSizeImpl(expr->getAllocatedType());
214}
215
217 // BOGUS
218 return CharUnits::Zero();
219}
220
222 Address NewPtr,
223 llvm::Value *NumElements,
224 const CXXNewExpr *expr,
225 QualType ElementType) {
226 // Should never be called.
227 ErrorUnsupportedABI(CGF, "array cookie initialization");
228 return Address::invalid();
229}
230
232 QualType elementType) {
233 // If the class's usual deallocation function takes two arguments,
234 // it needs a cookie.
235 if (expr->doesUsualArrayDeleteWantSize())
236 return true;
237
238 return elementType.isDestructedType();
239}
240
242 // If the class's usual deallocation function takes two arguments,
243 // it needs a cookie.
244 if (expr->doesUsualArrayDeleteWantSize())
245 return true;
246
247 return expr->getAllocatedType().isDestructedType();
248}
249
251 const CXXDeleteExpr *expr, QualType eltTy,
252 llvm::Value *&numElements,
253 llvm::Value *&allocPtr, CharUnits &cookieSize) {
254 // Derive a char* in the same address space as the pointer.
255 ptr = ptr.withElementType(CGF.Int8Ty);
256
257 // If we don't need an array cookie, bail out early.
258 if (!requiresArrayCookie(expr, eltTy)) {
259 allocPtr = ptr.emitRawPointer(CGF);
260 numElements = nullptr;
261 cookieSize = CharUnits::Zero();
262 return;
263 }
264
265 cookieSize = getArrayCookieSizeImpl(eltTy);
266 Address allocAddr = CGF.Builder.CreateConstInBoundsByteGEP(ptr, -cookieSize);
267 allocPtr = allocAddr.emitRawPointer(CGF);
268 numElements = readArrayCookieImpl(CGF, allocAddr, cookieSize);
269}
270
272 Address ptr,
273 CharUnits cookieSize) {
274 ErrorUnsupportedABI(CGF, "reading a new[] cookie");
275 return llvm::ConstantInt::get(CGF.SizeTy, 0);
276}
277
278/// Returns the adjustment, in bytes, required for the given
279/// member-pointer operation. Returns null if no adjustment is
280/// required.
282 assert(E->getCastKind() == CK_DerivedToBaseMemberPointer ||
283 E->getCastKind() == CK_BaseToDerivedMemberPointer);
284
285 QualType derivedType;
286 if (E->getCastKind() == CK_DerivedToBaseMemberPointer)
287 derivedType = E->getSubExpr()->getType();
288 else
289 derivedType = E->getType();
290
291 const CXXRecordDecl *derivedClass =
292 derivedType->castAs<MemberPointerType>()->getMostRecentCXXRecordDecl();
293
294 return CGM.GetNonVirtualBaseClassOffset(derivedClass,
295 E->path_begin(),
296 E->path_end());
297}
298
299llvm::BasicBlock *
301 const CXXRecordDecl *RD) {
303 llvm_unreachable("shouldn't be called in this ABI");
304
305 ErrorUnsupportedABI(CGF, "complete object detection in ctor");
306 return nullptr;
307}
308
309void CGCXXABI::setCXXDestructorDLLStorage(llvm::GlobalValue *GV,
310 const CXXDestructorDecl *Dtor,
311 CXXDtorType DT) const {
312 // Assume the base C++ ABI has no special rules for destructor variants.
313 CGM.setDLLImportDLLExport(GV, Dtor);
314}
315
316llvm::GlobalValue::LinkageTypes CGCXXABI::getCXXDestructorLinkage(
317 GVALinkage Linkage, const CXXDestructorDecl *Dtor, CXXDtorType DT) const {
318 // Delegate back to CGM by default.
320}
321
323 return false;
324}
325
326llvm::CallInst *
328 llvm::Value *Exn) {
329 // Just call std::terminate and ignore the violating exception.
331}
332
334 return CatchTypeInfo{nullptr, 0};
335}
336
337std::vector<CharUnits> CGCXXABI::getVBPtrOffsets(const CXXRecordDecl *RD) {
338 return std::vector<CharUnits>();
339}
340
343 bool ForVirtualBase, bool Delegating, CallArgList &Args) {
344 AddedStructorArgs AddedArgs =
345 getImplicitConstructorArgs(CGF, D, Type, ForVirtualBase, Delegating);
346 for (size_t i = 0; i < AddedArgs.Prefix.size(); ++i) {
347 Args.insert(Args.begin() + 1 + i,
348 CallArg(RValue::get(AddedArgs.Prefix[i].Value),
349 AddedArgs.Prefix[i].Type));
350 }
351 for (const auto &arg : AddedArgs.Suffix) {
352 Args.add(RValue::get(arg.Value), arg.Type);
353 }
354 return AddedStructorArgCounts(AddedArgs.Prefix.size(),
355 AddedArgs.Suffix.size());
356}
const Decl * D
Expr * E
a trap message and trap category.
APValue - This class implements a discriminated union of [uninitialized] [APSInt] [APFloat],...
Definition: APValue.h:122
const ASTRecordLayout & getASTRecordLayout(const RecordDecl *D) const
Get or compute information about the layout of the specified record (struct/union/class) D,...
FullSourceLoc getFullLoc(SourceLocation Loc) const
Definition: ASTContext.h:917
IdentifierTable & Idents
Definition: ASTContext.h:740
QualType getPointerDiffType() const
Return the unique type for "ptrdiff_t" (C99 7.17) defined in <stddef.h>.
QualType getMemberPointerType(QualType T, NestedNameSpecifier Qualifier, const CXXRecordDecl *Cls) const
Return the uniqued reference to the type for a member pointer to the specified type in the specified ...
CanQualType getCanonicalTagType(const TagDecl *TD) const
Represents a C++ constructor within a class.
Definition: DeclCXX.h:2604
Represents a delete expression for memory deallocation and destructor calls, e.g.
Definition: ExprCXX.h:2620
Represents a C++ destructor within a class.
Definition: DeclCXX.h:2869
Represents a static or instance method of a struct/union/class.
Definition: DeclCXX.h:2129
const CXXRecordDecl * getParent() const
Return the parent of this method declaration, which is the class in which this method is defined.
Definition: DeclCXX.h:2255
QualType getThisType() const
Return the type of the this pointer.
Definition: DeclCXX.cpp:2809
Represents a new-expression for memory allocation and constructor calls, e.g: "new CXXNewExpr(foo)".
Definition: ExprCXX.h:2349
Represents a C++ struct/union/class.
Definition: DeclCXX.h:258
bool isEffectivelyFinal() const
Determine whether it's impossible for a class to be derived from this class.
Definition: DeclCXX.cpp:2325
unsigned getNumVBases() const
Retrieves the number of virtual base classes of this class.
Definition: DeclCXX.h:623
CastExpr - Base class for type casts, including both implicit casts (ImplicitCastExpr) and explicit c...
Definition: Expr.h:3612
CharUnits - This is an opaque type for sizes expressed in character units.
Definition: CharUnits.h:38
static CharUnits Zero()
Zero - Construct a CharUnits quantity of zero.
Definition: CharUnits.h:53
Like RawAddress, an abstract representation of an aligned address, but the pointer contained in this ...
Definition: Address.h:128
static Address invalid()
Definition: Address.h:176
llvm::Value * emitRawPointer(CodeGenFunction &CGF) const
Return the pointer contained in this class after authenticating it and adding offset to it if necessa...
Definition: Address.h:253
Address withElementType(llvm::Type *ElemTy) const
Return address with different element type, but same pointer and alignment.
Definition: Address.h:276
Address CreateConstInBoundsByteGEP(Address Addr, CharUnits Offset, const llvm::Twine &Name="")
Given a pointer to i8, adjust it by a given constant offset.
Definition: CGBuilder.h:309
llvm::LoadInst * CreateLoad(Address Addr, const llvm::Twine &Name="")
Definition: CGBuilder.h:112
llvm::Constant * getMemberPointerAdjustment(const CastExpr *E)
A utility method for computing the offset required for the given base-to-derived or derived-to-base m...
Definition: CGCXXABI.cpp:281
virtual std::vector< CharUnits > getVBPtrOffsets(const CXXRecordDecl *RD)
Gets the offsets of all the virtual base pointers in a given class.
Definition: CGCXXABI.cpp:337
virtual void ReadArrayCookie(CodeGenFunction &CGF, Address Ptr, const CXXDeleteExpr *expr, QualType ElementType, llvm::Value *&NumElements, llvm::Value *&AllocPtr, CharUnits &CookieSize)
Reads the array cookie associated with the given pointer, if it has one.
Definition: CGCXXABI.cpp:250
CodeGenModule & CGM
Definition: CGCXXABI.h:47
virtual void setCXXDestructorDLLStorage(llvm::GlobalValue *GV, const CXXDestructorDecl *Dtor, CXXDtorType DT) const
Definition: CGCXXABI.cpp:309
virtual bool NeedsVTTParameter(GlobalDecl GD)
Return whether the given global decl needs a VTT parameter.
Definition: CGCXXABI.cpp:322
virtual llvm::CallInst * emitTerminateForUnexpectedException(CodeGenFunction &CGF, llvm::Value *Exn)
Definition: CGCXXABI.cpp:327
ImplicitParamDecl * getThisDecl(CodeGenFunction &CGF)
Definition: CGCXXABI.h:54
virtual llvm::Type * ConvertMemberPointerType(const MemberPointerType *MPT)
Find the LLVM type used to represent the given member pointer type.
Definition: CGCXXABI.cpp:43
virtual llvm::Constant * EmitNullMemberPointer(const MemberPointerType *MPT)
Create a null member pointer of the given type.
Definition: CGCXXABI.cpp:103
virtual CharUnits getArrayCookieSizeImpl(QualType elementType)
Returns the extra size required in order to store the array cookie for the given type.
Definition: CGCXXABI.cpp:216
virtual void EmitReturnFromThunk(CodeGenFunction &CGF, RValue RV, QualType ResultType)
Definition: CGCXXABI.cpp:203
void buildThisParam(CodeGenFunction &CGF, FunctionArgList &Params)
Build a parameter variable suitable for 'this'.
Definition: CGCXXABI.cpp:126
virtual llvm::Value * EmitMemberPointerIsNotNull(CodeGenFunction &CGF, llvm::Value *MemPtr, const MemberPointerType *MPT)
Determine if a member pointer is non-null. Returns an i1.
Definition: CGCXXABI.cpp:95
bool isEmittedWithConstantInitializer(const VarDecl *VD, bool InspectInitForWeakDef=false) const
Determine whether we will definitely emit this variable with a constant initializer,...
Definition: CGCXXABI.cpp:171
virtual llvm::Value * EmitMemberPointerComparison(CodeGenFunction &CGF, llvm::Value *L, llvm::Value *R, const MemberPointerType *MPT, bool Inequality)
Emit a comparison between two member pointers. Returns an i1.
Definition: CGCXXABI.cpp:85
virtual llvm::Constant * EmitMemberPointer(const APValue &MP, QualType MPT)
Create a member pointer for the given member pointer constant.
Definition: CGCXXABI.cpp:117
Address getThisAddress(CodeGenFunction &CGF)
Definition: CGCXXABI.cpp:23
virtual llvm::Value * readArrayCookieImpl(CodeGenFunction &IGF, Address ptr, CharUnits cookieSize)
Reads the array cookie for an allocation which is known to have one.
Definition: CGCXXABI.cpp:271
virtual bool requiresArrayCookie(const CXXDeleteExpr *E, QualType eltType)
Definition: CGCXXABI.cpp:231
virtual CatchTypeInfo getCatchAllTypeInfo()
Definition: CGCXXABI.cpp:333
bool mayNeedDestruction(const VarDecl *VD) const
Definition: CGCXXABI.cpp:161
virtual llvm::BasicBlock * EmitCtorCompleteObjectHandler(CodeGenFunction &CGF, const CXXRecordDecl *RD)
Definition: CGCXXABI.cpp:300
virtual bool isThisCompleteObject(GlobalDecl GD) const =0
Determine whether there's something special about the rules of the ABI tell us that 'this' is a compl...
void setCXXABIThisValue(CodeGenFunction &CGF, llvm::Value *ThisPtr)
Definition: CGCXXABI.cpp:155
virtual llvm::Value * EmitMemberDataPointerAddress(CodeGenFunction &CGF, const Expr *E, Address Base, llvm::Value *MemPtr, const MemberPointerType *MPT, bool IsInBounds)
Calculate an l-value from an object and a data member pointer.
Definition: CGCXXABI.cpp:63
llvm::Value * loadIncomingCXXThis(CodeGenFunction &CGF)
Loads the incoming C++ this pointer as it was passed by the caller.
Definition: CGCXXABI.cpp:150
void ErrorUnsupportedABI(CodeGenFunction &CGF, StringRef S)
Issue a diagnostic about unsupported features in the ABI.
Definition: CGCXXABI.cpp:29
virtual llvm::Constant * EmitMemberDataPointer(const MemberPointerType *MPT, CharUnits offset)
Create a member pointer for the given field.
Definition: CGCXXABI.cpp:112
llvm::Constant * GetBogusMemberPointer(QualType T)
Get a null value for unsupported member pointers.
Definition: CGCXXABI.cpp:38
virtual CGCallee EmitLoadOfMemberFunctionPointer(CodeGenFunction &CGF, const Expr *E, Address This, llvm::Value *&ThisPtrForCall, llvm::Value *MemPtr, const MemberPointerType *MPT)
Load a member function from an object and a member function pointer.
Definition: CGCXXABI.cpp:47
virtual CharUnits GetArrayCookieSize(const CXXNewExpr *expr)
Returns the extra size required in order to store the array cookie for the given new-expression.
Definition: CGCXXABI.cpp:210
virtual bool isZeroInitializable(const MemberPointerType *MPT)
Return true if the given member pointer can be zero-initialized (in the C++ sense) with an LLVM zeroi...
Definition: CGCXXABI.cpp:121
AddedStructorArgCounts addImplicitConstructorArgs(CodeGenFunction &CGF, const CXXConstructorDecl *D, CXXCtorType Type, bool ForVirtualBase, bool Delegating, CallArgList &Args)
Add any ABI-specific implicit arguments needed to call a constructor.
Definition: CGCXXABI.cpp:341
virtual llvm::Value * EmitMemberPointerConversion(CodeGenFunction &CGF, const CastExpr *E, llvm::Value *Src)
Perform a derived-to-base, base-to-derived, or bitcast member pointer conversion.
Definition: CGCXXABI.cpp:72
virtual llvm::Constant * EmitMemberFunctionPointer(const CXXMethodDecl *MD)
Create a member pointer for the given method.
Definition: CGCXXABI.cpp:107
virtual llvm::GlobalValue::LinkageTypes getCXXDestructorLinkage(GVALinkage Linkage, const CXXDestructorDecl *Dtor, CXXDtorType DT) const
Definition: CGCXXABI.cpp:316
virtual Address InitializeArrayCookie(CodeGenFunction &CGF, Address NewPtr, llvm::Value *NumElements, const CXXNewExpr *expr, QualType ElementType)
Initialize the array cookie for the given allocation.
Definition: CGCXXABI.cpp:221
ASTContext & getContext() const
Definition: CGCXXABI.h:81
virtual AddedStructorArgs getImplicitConstructorArgs(CodeGenFunction &CGF, const CXXConstructorDecl *D, CXXCtorType Type, bool ForVirtualBase, bool Delegating)=0
All available information about a concrete callee.
Definition: CGCall.h:63
static CGCallee forDirect(llvm::Constant *functionPtr, const CGCalleeInfo &abstractInfo=CGCalleeInfo())
Definition: CGCall.h:137
CallArgList - Type for representing both the value and type of arguments in a call.
Definition: CGCall.h:274
void add(RValue rvalue, QualType type)
Definition: CGCall.h:302
CodeGenFunction - This class organizes the per-function state that is used while generating LLVM code...
GlobalDecl CurGD
CurGD - The GlobalDecl for the current function being compiled.
llvm::Value * getAsNaturalPointerTo(Address Addr, QualType PointeeType)
Address makeNaturalAddressForPointer(llvm::Value *Ptr, QualType T, CharUnits Alignment=CharUnits::Zero(), bool ForPointeeType=false, LValueBaseInfo *BaseInfo=nullptr, TBAAAccessInfo *TBAAInfo=nullptr, KnownNonNull_t IsKnownNonNull=NotKnownNonNull)
Construct an address with the natural alignment of T.
const Decl * CurCodeDecl
CurCodeDecl - This is the inner-most code context, which includes blocks.
llvm::CallInst * EmitNounwindRuntimeCall(llvm::FunctionCallee callee, const Twine &name="")
static bool hasAggregateEvaluationKind(QualType T)
Address GetAddrOfLocalVar(const VarDecl *VD)
GetAddrOfLocalVar - Return the address of a local variable.
llvm::LLVMContext & getLLVMContext()
DiagnosticsEngine & getDiags() const
llvm::GlobalValue::LinkageTypes getLLVMLinkageForDeclarator(const DeclaratorDecl *D, GVALinkage Linkage)
Returns LLVM linkage for a declarator.
const TargetInfo & getTarget() const
llvm::Constant * GetNonVirtualBaseClassOffset(const CXXRecordDecl *ClassDecl, CastExpr::path_const_iterator PathBegin, CastExpr::path_const_iterator PathEnd)
Returns the offset from a derived class to a class.
Definition: CGClass.cpp:194
ASTContext & getContext() const
llvm::FunctionCallee getTerminateFn()
Get the declaration of std::terminate for the platform.
Definition: CGException.cpp:63
llvm::LLVMContext & getLLVMContext()
void setDLLImportDLLExport(llvm::GlobalValue *GV, GlobalDecl D) const
llvm::Type * ConvertType(QualType T)
ConvertType - Convert type T into a llvm::Type.
FunctionArgList - Type for representing both the decl and type of parameters to a function.
Definition: CGCall.h:375
RValue - This trivial value class is used to represent the result of an expression that is evaluated.
Definition: CGValue.h:42
static RValue get(llvm::Value *V)
Definition: CGValue.h:98
SourceLocation getLocation() const
Definition: DeclBase.h:439
bool hasAttr() const
Definition: DeclBase.h:577
Concrete class used by the front-end to report problems and issues.
Definition: Diagnostic.h:231
DiagnosticBuilder Report(SourceLocation Loc, unsigned DiagID)
Issue the message to the client.
Definition: Diagnostic.h:1529
unsigned getCustomDiagID(Level L, const char(&FormatString)[N])
Return an ID for a diagnostic with the specified format string and level.
Definition: Diagnostic.h:904
This represents one expression.
Definition: Expr.h:112
QualType getType() const
Definition: Expr.h:144
Represents a prototype with parameter type info, e.g.
Definition: TypeBase.h:5282
GlobalDecl - represents a global declaration.
Definition: GlobalDecl.h:57
const Decl * getDecl() const
Definition: GlobalDecl.h:106
IdentifierInfo & get(StringRef Name)
Return the identifier token info for the specified named identifier.
static ImplicitParamDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation IdLoc, IdentifierInfo *Id, QualType T, ImplicitParamKind ParamKind)
Create implicit parameter.
Definition: Decl.cpp:5470
A pointer to member type per C++ 8.3.3 - Pointers to members.
Definition: TypeBase.h:3669
CXXRecordDecl * getMostRecentCXXRecordDecl() const
Note: this can trigger extra deserialization when external AST sources are used.
Definition: Type.cpp:5502
QualType getPointeeType() const
Definition: TypeBase.h:3687
A (possibly-)qualified type.
Definition: TypeBase.h:937
DestructionKind isDestructedType() const
Returns a nonzero value if objects of this type require non-trivial work to clean up after.
Definition: TypeBase.h:1545
decl_type * getMostRecentDecl()
Returns the most recent (re)declaration of this declaration.
Definition: Redeclarable.h:223
bool hasConstructorVariants() const
Does this ABI have different entrypoints for complete-object and base-subobject constructors?
Definition: TargetCXXABI.h:194
TargetCXXABI getCXXABI() const
Get the C++ ABI currently in use.
Definition: TargetInfo.h:1360
The base class of the type hierarchy.
Definition: TypeBase.h:1833
const T * castAs() const
Member-template castAs<specific type>.
Definition: TypeBase.h:9226
QualType getPointeeType() const
If this is a pointer, ObjC object pointer, or block pointer, this returns the respective pointee.
Definition: Type.cpp:752
const Type * getBaseElementTypeUnsafe() const
Get the base element type of this type, potentially discarding type qualifiers.
Definition: TypeBase.h:9109
bool isIncompleteType(NamedDecl **Def=nullptr) const
Types are partitioned into 3 broad categories (C99 6.2.5p1): object types, function types,...
Definition: Type.cpp:2440
const T * getAs() const
Member-template getAs<specific type>'.
Definition: TypeBase.h:9159
bool isRecordType() const
Definition: TypeBase.h:8707
QualType getType() const
Definition: Decl.h:722
bool isWeak() const
Determine whether this symbol is weakly-imported, or declared with the weak or weak-ref attr.
Definition: Decl.cpp:5449
Represents a variable declaration or definition.
Definition: Decl.h:925
bool hasInit() const
Definition: Decl.cpp:2398
APValue * evaluateValue() const
Attempt to evaluate the value of the initializer attached to this declaration, and produce notes expl...
Definition: Decl.cpp:2575
bool hasConstantInitialization() const
Determine whether this variable has constant initialization.
Definition: Decl.cpp:2648
QualType::DestructionKind needsDestruction(const ASTContext &Ctx) const
Would the destruction of this variable have any effect, and if so, what kind?
Definition: Decl.cpp:2851
VarDecl * getInitializingDeclaration()
Get the initializing declaration of this variable, if any.
Definition: Decl.cpp:2429
const internal::VariadicDynCastAllOfMatcher< Stmt, Expr > expr
Matches expressions.
The JSON file list parser is used to communicate input to InstallAPI.
CXXCtorType
C++ constructor types.
Definition: ABI.h:24
GVALinkage
A more specific kind of linkage than enum Linkage.
Definition: Linkage.h:72
bool isUniqueGVALinkage(GVALinkage L)
Do we know that this will be the only definition of this symbol (excluding inlining-only definitions)...
Definition: Linkage.h:86
Linkage
Describes the different kinds of linkage (C++ [basic.link], C99 6.2.2) that an entity may have.
Definition: Linkage.h:24
CXXDtorType
C++ destructor types.
Definition: ABI.h:33
const FunctionProtoType * T
@ CXXThis
Parameter for C++ 'this' argument.
Similar to AddedStructorArgs, but only notes the number of additional arguments.
Definition: CGCXXABI.h:358
Additional implicit arguments to add to the beginning (Prefix) and end (Suffix) of a constructor / de...
Definition: CGCXXABI.h:338
The MS C++ ABI needs a pointer to RTTI data plus some flags to describe the type of a catch handler,...
Definition: CGCleanup.h:39
llvm::IntegerType * Int8Ty
i8, i16, i32, and i64