clang 20.0.0git
|
Represents a function declaration or definition. More...
#include "clang/AST/Decl.h"
Classes | |
class | DefaultedOrDeletedFunctionInfo |
Stashed information about a defaulted/deleted function body. More... | |
Public Member Functions | |
DeclarationNameInfo | getNameInfo () const |
void | getNameForDiagnostic (raw_ostream &OS, const PrintingPolicy &Policy, bool Qualified) const override |
Appends a human-readable name for this declaration into the given stream. | |
void | setRangeEnd (SourceLocation E) |
void | setDeclarationNameLoc (DeclarationNameLoc L) |
SourceLocation | getEllipsisLoc () const |
Returns the location of the ellipsis of a variadic function. | |
SourceRange | getSourceRange () const override LLVM_READONLY |
Source range that this declaration covers. | |
bool | hasBody (const FunctionDecl *&Definition) const |
Returns true if the function has a body. | |
bool | hasBody () const override |
Returns true if this Decl represents a declaration for a body of code, such as a function or method definition. | |
bool | hasTrivialBody () const |
Returns whether the function has a trivial body that does not require any specific codegen. | |
bool | isDefined (const FunctionDecl *&Definition, bool CheckForPendingFriendDefinition=false) const |
Returns true if the function has a definition that does not need to be instantiated. | |
bool | isDefined () const |
FunctionDecl * | getDefinition () |
Get the definition for this declaration. | |
const FunctionDecl * | getDefinition () const |
Stmt * | getBody (const FunctionDecl *&Definition) const |
Retrieve the body (definition) of the function. | |
Stmt * | getBody () const override |
getBody - If this Decl represents a declaration for a body of code, such as a function or method definition, this method returns the top-level Stmt* of that body. | |
bool | isThisDeclarationADefinition () const |
Returns whether this specific declaration of the function is also a definition that does not contain uninstantiated body. | |
bool | isThisDeclarationInstantiatedFromAFriendDefinition () const |
Determine whether this specific declaration of the function is a friend declaration that was instantiated from a function definition. | |
bool | doesThisDeclarationHaveABody () const |
Returns whether this specific declaration of the function has a body. | |
void | setBody (Stmt *B) |
void | setLazyBody (uint64_t Offset) |
void | setDefaultedOrDeletedInfo (DefaultedOrDeletedFunctionInfo *Info) |
DefaultedOrDeletedFunctionInfo * | getDefalutedOrDeletedInfo () const |
bool | isVariadic () const |
Whether this function is variadic. | |
bool | isVirtualAsWritten () const |
Whether this function is marked as virtual explicitly. | |
void | setVirtualAsWritten (bool V) |
State that this function is marked as virtual explicitly. | |
bool | isPureVirtual () const |
Whether this virtual function is pure, i.e. | |
void | setIsPureVirtual (bool P=true) |
bool | isLateTemplateParsed () const |
Whether this templated function will be late parsed. | |
void | setLateTemplateParsed (bool ILT=true) |
State that this templated function will be late parsed. | |
bool | isTrivial () const |
Whether this function is "trivial" in some specialized C++ senses. | |
void | setTrivial (bool IT) |
bool | isTrivialForCall () const |
void | setTrivialForCall (bool IT) |
bool | isDefaulted () const |
Whether this function is defaulted. | |
void | setDefaulted (bool D=true) |
bool | isExplicitlyDefaulted () const |
Whether this function is explicitly defaulted. | |
void | setExplicitlyDefaulted (bool ED=true) |
State that this function is explicitly defaulted. | |
SourceLocation | getDefaultLoc () const |
void | setDefaultLoc (SourceLocation NewLoc) |
bool | isUserProvided () const |
True if this method is user-declared and was not deleted or defaulted on its first declaration. | |
bool | isIneligibleOrNotSelected () const |
void | setIneligibleOrNotSelected (bool II) |
bool | hasImplicitReturnZero () const |
Whether falling off this function implicitly returns null/zero. | |
void | setHasImplicitReturnZero (bool IRZ) |
State that falling off this function implicitly returns null/zero. | |
bool | hasPrototype () const |
Whether this function has a prototype, either because one was explicitly written or because it was "inherited" by merging a declaration without a prototype with a declaration that has a prototype. | |
bool | hasWrittenPrototype () const |
Whether this function has a written prototype. | |
void | setHasWrittenPrototype (bool P=true) |
State that this function has a written prototype. | |
bool | hasInheritedPrototype () const |
Whether this function inherited its prototype from a previous declaration. | |
void | setHasInheritedPrototype (bool P=true) |
State that this function inherited its prototype from a previous declaration. | |
bool | isConstexpr () const |
Whether this is a (C++11) constexpr function or constexpr constructor. | |
void | setConstexprKind (ConstexprSpecKind CSK) |
ConstexprSpecKind | getConstexprKind () const |
bool | isConstexprSpecified () const |
bool | isConsteval () const |
void | setBodyContainsImmediateEscalatingExpressions (bool Set) |
bool | BodyContainsImmediateEscalatingExpressions () const |
bool | isImmediateEscalating () const |
bool | isImmediateFunction () const |
bool | instantiationIsPending () const |
Whether the instantiation of this function is pending. | |
void | setInstantiationIsPending (bool IC) |
State that the instantiation of this function is pending. | |
bool | usesSEHTry () const |
Indicates the function uses __try. | |
void | setUsesSEHTry (bool UST) |
bool | isDeleted () const |
Whether this function has been deleted. | |
bool | isDeletedAsWritten () const |
void | setDeletedAsWritten (bool D=true, StringLiteral *Message=nullptr) |
bool | isMain () const |
Determines whether this function is "main", which is the entry point into an executable program. | |
bool | isMSVCRTEntryPoint () const |
Determines whether this function is a MSVCRT user defined entry point. | |
bool | isReservedGlobalPlacementOperator () const |
Determines whether this operator new or delete is one of the reserved global placement operators: void *operator new(size_t, void *); void *operator new[](size_t, void *); void operator delete(void *, void *); void operator delete[](void *, void *); These functions have special behavior under [new.delete.placement]: These functions are reserved, a C++ program may not define functions that displace the versions in the Standard C++ library. | |
bool | isReplaceableGlobalAllocationFunction (std::optional< unsigned > *AlignmentParam=nullptr, bool *IsNothrow=nullptr) const |
Determines whether this function is one of the replaceable global allocation functions: void *operator new(size_t); void *operator new(size_t, const std::nothrow_t &) noexcept; void *operator new[](size_t); void *operator new[](size_t, const std::nothrow_t &) noexcept; void operator delete(void *) noexcept; void operator delete(void *, std::size_t) noexcept; [C++1y] void operator delete(void *, const std::nothrow_t &) noexcept; void operator delete[](void *) noexcept; void operator delete[](void *, std::size_t) noexcept; [C++1y] void operator delete[](void *, const std::nothrow_t &) noexcept; These functions have special behavior under C++1y [expr.new]: An implementation is allowed to omit a call to a replaceable global allocation function. | |
bool | isInlineBuiltinDeclaration () const |
Determine if this function provides an inline implementation of a builtin. | |
bool | isDestroyingOperatorDelete () const |
Determine whether this is a destroying operator delete. | |
LanguageLinkage | getLanguageLinkage () const |
Compute the language linkage. | |
bool | isExternC () const |
Determines whether this function is a function with external, C linkage. | |
bool | isInExternCContext () const |
Determines whether this function's context is, or is nested within, a C++ extern "C" linkage spec. | |
bool | isInExternCXXContext () const |
Determines whether this function's context is, or is nested within, a C++ extern "C++" linkage spec. | |
bool | isGlobal () const |
Determines whether this is a global function. | |
bool | isNoReturn () const |
Determines whether this function is known to be 'noreturn', through an attribute on its declaration or its type. | |
bool | hasSkippedBody () const |
True if the function was a definition but its body was skipped. | |
void | setHasSkippedBody (bool Skipped=true) |
bool | willHaveBody () const |
True if this function will eventually have a body, once it's fully parsed. | |
void | setWillHaveBody (bool V=true) |
bool | isMultiVersion () const |
True if this function is considered a multiversioned function. | |
void | setIsMultiVersion (bool V=true) |
Sets the multiversion state for this declaration and all of its redeclarations. | |
void | setFriendConstraintRefersToEnclosingTemplate (bool V=true) |
bool | FriendConstraintRefersToEnclosingTemplate () const |
bool | isMemberLikeConstrainedFriend () const |
Determine whether a function is a friend function that cannot be redeclared outside of its class, per C++ [temp.friend]p9. | |
MultiVersionKind | getMultiVersionKind () const |
Gets the kind of multiversioning attribute this declaration has. | |
bool | isCPUDispatchMultiVersion () const |
True if this function is a multiversioned dispatch function as a part of the cpu_specific/cpu_dispatch functionality. | |
bool | isCPUSpecificMultiVersion () const |
True if this function is a multiversioned processor specific function as a part of the cpu_specific/cpu_dispatch functionality. | |
bool | isTargetMultiVersion () const |
True if this function is a multiversioned dispatch function as a part of the target functionality. | |
bool | isTargetMultiVersionDefault () const |
True if this function is the default version of a multiversioned dispatch function as a part of the target functionality. | |
bool | isTargetClonesMultiVersion () const |
True if this function is a multiversioned dispatch function as a part of the target-clones functionality. | |
bool | isTargetVersionMultiVersion () const |
True if this function is a multiversioned dispatch function as a part of the target-version functionality. | |
void | getAssociatedConstraints (SmallVectorImpl< const Expr * > &AC) const |
Get the associated-constraints of this function declaration. | |
StringLiteral * | getDeletedMessage () const |
Get the message that indicates why this function was deleted. | |
void | setPreviousDeclaration (FunctionDecl *PrevDecl) |
FunctionDecl * | getCanonicalDecl () override |
Retrieves the "canonical" declaration of the given declaration. | |
const FunctionDecl * | getCanonicalDecl () const |
unsigned | getBuiltinID (bool ConsiderWrapperFunctions=false) const |
Returns a value indicating whether this function corresponds to a builtin function. | |
ArrayRef< ParmVarDecl * > | parameters () const |
MutableArrayRef< ParmVarDecl * > | parameters () |
bool | param_empty () const |
param_iterator | param_begin () |
param_iterator | param_end () |
param_const_iterator | param_begin () const |
param_const_iterator | param_end () const |
size_t | param_size () const |
unsigned | getNumParams () const |
Return the number of parameters this function must have based on its FunctionType. | |
const ParmVarDecl * | getParamDecl (unsigned i) const |
ParmVarDecl * | getParamDecl (unsigned i) |
void | setParams (ArrayRef< ParmVarDecl * > NewParamInfo) |
unsigned | getMinRequiredArguments () const |
Returns the minimum number of arguments needed to call this function. | |
unsigned | getMinRequiredExplicitArguments () const |
Returns the minimum number of non-object arguments needed to call this function. | |
bool | hasCXXExplicitFunctionObjectParameter () const |
unsigned | getNumNonObjectParams () const |
const ParmVarDecl * | getNonObjectParameter (unsigned I) const |
ParmVarDecl * | getNonObjectParameter (unsigned I) |
bool | hasOneParamOrDefaultArgs () const |
Determine whether this function has a single parameter, or multiple parameters where all but the first have default arguments. | |
FunctionTypeLoc | getFunctionTypeLoc () const |
Find the source location information for how the type of this function was written. | |
QualType | getReturnType () const |
SourceRange | getReturnTypeSourceRange () const |
Attempt to compute an informative source range covering the function return type. | |
SourceRange | getParametersSourceRange () const |
Attempt to compute an informative source range covering the function parameters, including the ellipsis of a variadic function. | |
QualType | getDeclaredReturnType () const |
Get the declared return type, which may differ from the actual return type if the return type is deduced. | |
ExceptionSpecificationType | getExceptionSpecType () const |
Gets the ExceptionSpecificationType as declared. | |
SourceRange | getExceptionSpecSourceRange () const |
Attempt to compute an informative source range covering the function exception specification, if any. | |
QualType | getCallResultType () const |
Determine the type of an expression that calls this function. | |
StorageClass | getStorageClass () const |
Returns the storage class as written in the source. | |
void | setStorageClass (StorageClass SClass) |
Sets the storage class as written in the source. | |
bool | isInlineSpecified () const |
Determine whether the "inline" keyword was specified for this function. | |
void | setInlineSpecified (bool I) |
Set whether the "inline" keyword was specified for this function. | |
bool | UsesFPIntrin () const |
Determine whether the function was declared in source context that requires constrained FP intrinsics. | |
void | setUsesFPIntrin (bool I) |
Set whether the function was declared in source context that requires constrained FP intrinsics. | |
void | setImplicitlyInline (bool I=true) |
Flag that this function is implicitly inline. | |
bool | isInlined () const |
Determine whether this function should be inlined, because it is either marked "inline" or "constexpr" or is a member function of a class that was defined in the class body. | |
bool | isInlineDefinitionExternallyVisible () const |
For an inline function definition in C, or for a gnu_inline function in C++, determine whether the definition will be externally visible. | |
bool | isMSExternInline () const |
The combination of the extern and inline keywords under MSVC forces the function to be required. | |
bool | doesDeclarationForceExternallyVisibleDefinition () const |
For a function declaration in C or C++, determine whether this declaration causes the definition to be externally visible. | |
bool | isStatic () const |
bool | isOverloadedOperator () const |
Whether this function declaration represents an C++ overloaded operator, e.g., "operator+". | |
OverloadedOperatorKind | getOverloadedOperator () const |
getOverloadedOperator - Which C++ overloaded operator this function represents, if any. | |
const IdentifierInfo * | getLiteralIdentifier () const |
getLiteralIdentifier - The literal suffix identifier this function represents, if any. | |
FunctionDecl * | getInstantiatedFromMemberFunction () const |
If this function is an instantiation of a member function of a class template specialization, retrieves the function from which it was instantiated. | |
TemplatedKind | getTemplatedKind () const |
What kind of templated function this is. | |
MemberSpecializationInfo * | getMemberSpecializationInfo () const |
If this function is an instantiation of a member function of a class template specialization, retrieves the member specialization information. | |
void | setInstantiationOfMemberFunction (FunctionDecl *FD, TemplateSpecializationKind TSK) |
Specify that this record is an instantiation of the member function FD. | |
void | setInstantiatedFromDecl (FunctionDecl *FD) |
Specify that this function declaration was instantiated from a FunctionDecl FD. | |
FunctionDecl * | getInstantiatedFromDecl () const |
FunctionTemplateDecl * | getDescribedFunctionTemplate () const |
Retrieves the function template that is described by this function declaration. | |
void | setDescribedFunctionTemplate (FunctionTemplateDecl *Template) |
bool | isFunctionTemplateSpecialization () const |
Determine whether this function is a function template specialization. | |
FunctionTemplateSpecializationInfo * | getTemplateSpecializationInfo () const |
If this function is actually a function template specialization, retrieve information about this function template specialization. | |
bool | isImplicitlyInstantiable () const |
Determines whether this function is a function template specialization or a member of a class template specialization that can be implicitly instantiated. | |
bool | isTemplateInstantiation () const |
Determines if the given function was instantiated from a function template. | |
FunctionDecl * | getTemplateInstantiationPattern (bool ForDefinition=true) const |
Retrieve the function declaration from which this function could be instantiated, if it is an instantiation (rather than a non-template or a specialization, for example). | |
FunctionTemplateDecl * | getPrimaryTemplate () const |
Retrieve the primary template that this function template specialization either specializes or was instantiated from. | |
const TemplateArgumentList * | getTemplateSpecializationArgs () const |
Retrieve the template arguments used to produce this function template specialization from the primary template. | |
const ASTTemplateArgumentListInfo * | getTemplateSpecializationArgsAsWritten () const |
Retrieve the template argument list as written in the sources, if any. | |
void | setFunctionTemplateSpecialization (FunctionTemplateDecl *Template, TemplateArgumentList *TemplateArgs, void *InsertPos, TemplateSpecializationKind TSK=TSK_ImplicitInstantiation, TemplateArgumentListInfo *TemplateArgsAsWritten=nullptr, SourceLocation PointOfInstantiation=SourceLocation()) |
Specify that this function declaration is actually a function template specialization. | |
void | setDependentTemplateSpecialization (ASTContext &Context, const UnresolvedSetImpl &Templates, const TemplateArgumentListInfo *TemplateArgs) |
Specifies that this function declaration is actually a dependent function template specialization. | |
DependentFunctionTemplateSpecializationInfo * | getDependentSpecializationInfo () const |
TemplateSpecializationKind | getTemplateSpecializationKind () const |
Determine what kind of template instantiation this function represents. | |
TemplateSpecializationKind | getTemplateSpecializationKindForInstantiation () const |
Determine the kind of template specialization this function represents for the purpose of template instantiation. | |
void | setTemplateSpecializationKind (TemplateSpecializationKind TSK, SourceLocation PointOfInstantiation=SourceLocation()) |
Determine what kind of template instantiation this function represents. | |
SourceLocation | getPointOfInstantiation () const |
Retrieve the (first) point of instantiation of a function template specialization or a member of a class template specialization. | |
bool | isOutOfLine () const override |
Determine whether this is or was instantiated from an out-of-line definition of a member function. | |
unsigned | getMemoryFunctionKind () const |
Identify a memory copying or setting function. | |
unsigned | getODRHash () |
Returns ODRHash of the function. | |
unsigned | getODRHash () const |
Returns cached ODRHash of the function. | |
FunctionEffectsRef | getFunctionEffects () const |
Public Member Functions inherited from clang::DeclaratorDecl | |
TypeSourceInfo * | getTypeSourceInfo () const |
void | setTypeSourceInfo (TypeSourceInfo *TI) |
SourceLocation | getInnerLocStart () const |
Return start of source range ignoring outer template declarations. | |
void | setInnerLocStart (SourceLocation L) |
SourceLocation | getOuterLocStart () const |
Return start of source range taking into account any outer template declarations. | |
SourceRange | getSourceRange () const override LLVM_READONLY |
Source range that this declaration covers. | |
SourceLocation | getBeginLoc () const LLVM_READONLY |
NestedNameSpecifier * | getQualifier () const |
Retrieve the nested-name-specifier that qualifies the name of this declaration, if it was present in the source. | |
NestedNameSpecifierLoc | getQualifierLoc () const |
Retrieve the nested-name-specifier (with source-location information) that qualifies the name of this declaration, if it was present in the source. | |
void | setQualifierInfo (NestedNameSpecifierLoc QualifierLoc) |
Expr * | getTrailingRequiresClause () |
Get the constraint-expression introduced by the trailing requires-clause in the function/member declaration, or null if no requires-clause was provided. | |
const Expr * | getTrailingRequiresClause () const |
void | setTrailingRequiresClause (Expr *TrailingRequiresClause) |
unsigned | getNumTemplateParameterLists () const |
TemplateParameterList * | getTemplateParameterList (unsigned index) const |
void | setTemplateParameterListsInfo (ASTContext &Context, ArrayRef< TemplateParameterList * > TPLists) |
SourceLocation | getTypeSpecStartLoc () const |
SourceLocation | getTypeSpecEndLoc () const |
Public Member Functions inherited from clang::ValueDecl | |
QualType | getType () const |
void | setType (QualType newType) |
bool | isWeak () const |
Determine whether this symbol is weakly-imported, or declared with the weak or weak-ref attr. | |
bool | isInitCapture () const |
Whether this variable is the implicit variable for a lambda init-capture. | |
VarDecl * | getPotentiallyDecomposedVarDecl () |
const VarDecl * | getPotentiallyDecomposedVarDecl () const |
Public Member Functions inherited from clang::NamedDecl | |
IdentifierInfo * | getIdentifier () const |
Get the identifier that names this declaration, if there is one. | |
StringRef | getName () const |
Get the name of identifier for this declaration as a StringRef. | |
std::string | getNameAsString () const |
Get a human-readable name for the declaration, even if it is one of the special kinds of names (C++ constructor, Objective-C selector, etc). | |
virtual void | printName (raw_ostream &OS, const PrintingPolicy &Policy) const |
Pretty-print the unqualified name of this declaration. | |
void | printName (raw_ostream &OS) const |
Calls printName() with the ASTContext printing policy from the decl. | |
DeclarationName | getDeclName () const |
Get the actual, stored name of the declaration, which may be a special name. | |
void | setDeclName (DeclarationName N) |
Set the name of this declaration. | |
void | printQualifiedName (raw_ostream &OS) const |
Returns a human-readable qualified name for this declaration, like A::B::i, for i being member of namespace A::B. | |
void | printQualifiedName (raw_ostream &OS, const PrintingPolicy &Policy) const |
void | printNestedNameSpecifier (raw_ostream &OS) const |
Print only the nested name specifier part of a fully-qualified name, including the '::' at the end. | |
void | printNestedNameSpecifier (raw_ostream &OS, const PrintingPolicy &Policy) const |
std::string | getQualifiedNameAsString () const |
virtual void | getNameForDiagnostic (raw_ostream &OS, const PrintingPolicy &Policy, bool Qualified) const |
Appends a human-readable name for this declaration into the given stream. | |
bool | declarationReplaces (const NamedDecl *OldD, bool IsKnownNewer=true) const |
Determine whether this declaration, if known to be well-formed within its context, will replace the declaration OldD if introduced into scope. | |
bool | hasLinkage () const |
Determine whether this declaration has linkage. | |
bool | isCXXClassMember () const |
Determine whether this declaration is a C++ class member. | |
bool | isCXXInstanceMember () const |
Determine whether the given declaration is an instance member of a C++ class. | |
ReservedIdentifierStatus | isReserved (const LangOptions &LangOpts) const |
Determine if the declaration obeys the reserved identifier rules of the given language. | |
Linkage | getLinkageInternal () const |
Determine what kind of linkage this entity has. | |
Linkage | getFormalLinkage () const |
Get the linkage from a semantic point of view. | |
bool | hasExternalFormalLinkage () const |
True if this decl has external linkage. | |
bool | isExternallyVisible () const |
bool | isExternallyDeclarable () const |
Determine whether this declaration can be redeclared in a different translation unit. | |
Visibility | getVisibility () const |
Determines the visibility of this entity. | |
LinkageInfo | getLinkageAndVisibility () const |
Determines the linkage and visibility of this entity. | |
std::optional< Visibility > | getExplicitVisibility (ExplicitVisibilityKind kind) const |
If visibility was explicitly specified for this declaration, return that visibility. | |
bool | isLinkageValid () const |
True if the computed linkage is valid. | |
bool | hasLinkageBeenComputed () const |
True if something has required us to compute the linkage of this declaration. | |
bool | isPlaceholderVar (const LangOptions &LangOpts) const |
NamedDecl * | getUnderlyingDecl () |
Looks through UsingDecls and ObjCCompatibleAliasDecls for the underlying named decl. | |
const NamedDecl * | getUnderlyingDecl () const |
NamedDecl * | getMostRecentDecl () |
const NamedDecl * | getMostRecentDecl () const |
ObjCStringFormatFamily | getObjCFStringFormattingFamily () const |
bool | isModulePrivate () const |
Whether this declaration was marked as being private to the module in which it was defined. | |
void | setModulePrivate () |
Specify that this declaration was marked as being private to the module in which it was defined. | |
Public Member Functions inherited from clang::Decl | |
Decl ()=delete | |
Decl (const Decl &)=delete | |
Decl (Decl &&)=delete | |
Decl & | operator= (const Decl &)=delete |
Decl & | operator= (Decl &&)=delete |
virtual SourceRange | getSourceRange () const LLVM_READONLY |
Source range that this declaration covers. | |
SourceLocation | getBeginLoc () const LLVM_READONLY |
SourceLocation | getEndLoc () const LLVM_READONLY |
SourceLocation | getLocation () const |
void | setLocation (SourceLocation L) |
Kind | getKind () const |
const char * | getDeclKindName () const |
Decl * | getNextDeclInContext () |
const Decl * | getNextDeclInContext () const |
DeclContext * | getDeclContext () |
const DeclContext * | getDeclContext () const |
DeclContext * | getNonTransparentDeclContext () |
Return the non transparent context. | |
const DeclContext * | getNonTransparentDeclContext () const |
Decl * | getNonClosureContext () |
Find the innermost non-closure ancestor of this declaration, walking up through blocks, lambdas, etc. | |
const Decl * | getNonClosureContext () const |
TranslationUnitDecl * | getTranslationUnitDecl () |
const TranslationUnitDecl * | getTranslationUnitDecl () const |
bool | isInAnonymousNamespace () const |
bool | isInStdNamespace () const |
bool | isFileContextDecl () const |
ASTContext & | getASTContext () const LLVM_READONLY |
const LangOptions & | getLangOpts () const LLVM_READONLY |
Helper to get the language options from the ASTContext. | |
void | setAccess (AccessSpecifier AS) |
AccessSpecifier | getAccess () const |
AccessSpecifier | getAccessUnsafe () const |
Retrieve the access specifier for this declaration, even though it may not yet have been properly set. | |
bool | hasAttrs () const |
void | setAttrs (const AttrVec &Attrs) |
AttrVec & | getAttrs () |
const AttrVec & | getAttrs () const |
void | dropAttrs () |
void | addAttr (Attr *A) |
attr_range | attrs () const |
attr_iterator | attr_begin () const |
attr_iterator | attr_end () const |
template<typename... Ts> | |
void | dropAttrs () |
template<typename T > | |
void | dropAttr () |
template<typename T > | |
llvm::iterator_range< specific_attr_iterator< T > > | specific_attrs () const |
template<typename T > | |
specific_attr_iterator< T > | specific_attr_begin () const |
template<typename T > | |
specific_attr_iterator< T > | specific_attr_end () const |
template<typename T > | |
T * | getAttr () const |
template<typename T > | |
bool | hasAttr () const |
unsigned | getMaxAlignment () const |
getMaxAlignment - return the maximum alignment specified by attributes on this decl, 0 if there are none. | |
void | setInvalidDecl (bool Invalid=true) |
setInvalidDecl - Indicates the Decl had a semantic error. | |
bool | isInvalidDecl () const |
bool | isImplicit () const |
isImplicit - Indicates whether the declaration was implicitly generated by the implementation. | |
void | setImplicit (bool I=true) |
bool | isUsed (bool CheckUsedAttr=true) const |
Whether any (re-)declaration of the entity was used, meaning that a definition is required. | |
void | setIsUsed () |
Set whether the declaration is used, in the sense of odr-use. | |
void | markUsed (ASTContext &C) |
Mark the declaration used, in the sense of odr-use. | |
bool | isReferenced () const |
Whether any declaration of this entity was referenced. | |
bool | isThisDeclarationReferenced () const |
Whether this declaration was referenced. | |
void | setReferenced (bool R=true) |
bool | isTopLevelDeclInObjCContainer () const |
Whether this declaration is a top-level declaration (function, global variable, etc.) that is lexically inside an objc container definition. | |
void | setTopLevelDeclInObjCContainer (bool V=true) |
ExternalSourceSymbolAttr * | getExternalSourceSymbolAttr () const |
Looks on this and related declarations for an applicable external source symbol attribute. | |
bool | isModulePrivate () const |
Whether this declaration was marked as being private to the module in which it was defined. | |
bool | isInExportDeclContext () const |
Whether this declaration was exported in a lexical context. | |
bool | isInvisibleOutsideTheOwningModule () const |
bool | isInAnotherModuleUnit () const |
Whether this declaration comes from another module unit. | |
bool | isInCurrentModuleUnit () const |
Whether this declaration comes from the same module unit being compiled. | |
bool | shouldEmitInExternalSource () const |
Whether the definition of the declaration should be emitted in external sources. | |
bool | isFromExplicitGlobalModule () const |
Whether this declaration comes from explicit global module. | |
bool | isFromGlobalModule () const |
Whether this declaration comes from global module. | |
bool | isInNamedModule () const |
Whether this declaration comes from a named module. | |
bool | hasDefiningAttr () const |
Return true if this declaration has an attribute which acts as definition of the entity, such as 'alias' or 'ifunc'. | |
const Attr * | getDefiningAttr () const |
Return this declaration's defining attribute if it has one. | |
void | setFromASTFile () |
Set the FromASTFile flag. | |
void | setOwningModuleID (unsigned ID) |
Set the owning module ID. | |
AvailabilityResult | getAvailability (std::string *Message=nullptr, VersionTuple EnclosingVersion=VersionTuple(), StringRef *RealizedPlatform=nullptr) const |
Determine the availability of the given declaration. | |
VersionTuple | getVersionIntroduced () const |
Retrieve the version of the target platform in which this declaration was introduced. | |
bool | isDeprecated (std::string *Message=nullptr) const |
Determine whether this declaration is marked 'deprecated'. | |
bool | isUnavailable (std::string *Message=nullptr) const |
Determine whether this declaration is marked 'unavailable'. | |
bool | isWeakImported () const |
Determine whether this is a weak-imported symbol. | |
bool | canBeWeakImported (bool &IsDefinition) const |
Determines whether this symbol can be weak-imported, e.g., whether it would be well-formed to add the weak_import attribute. | |
bool | isFromASTFile () const |
Determine whether this declaration came from an AST file (such as a precompiled header or module) rather than having been parsed. | |
GlobalDeclID | getGlobalID () const |
Retrieve the global declaration ID associated with this declaration, which specifies where this Decl was loaded from. | |
unsigned | getOwningModuleID () const |
Retrieve the global ID of the module that owns this particular declaration. | |
Module * | getImportedOwningModule () const |
Get the imported owning module, if this decl is from an imported (non-local) module. | |
Module * | getLocalOwningModule () const |
Get the local owning module, if known. | |
void | setLocalOwningModule (Module *M) |
bool | hasOwningModule () const |
Is this declaration owned by some module? | |
Module * | getOwningModule () const |
Get the module that owns this declaration (for visibility purposes). | |
Module * | getOwningModuleForLinkage () const |
Get the module that owns this declaration for linkage purposes. | |
bool | isUnconditionallyVisible () const |
Determine whether this declaration is definitely visible to name lookup, independent of whether the owning module is visible. | |
bool | isReachable () const |
void | setVisibleDespiteOwningModule () |
Set that this declaration is globally visible, even if it came from a module that is not visible. | |
ModuleOwnershipKind | getModuleOwnershipKind () const |
Get the kind of module ownership for this declaration. | |
void | setModuleOwnershipKind (ModuleOwnershipKind MOK) |
Set whether this declaration is hidden from name lookup. | |
unsigned | getIdentifierNamespace () const |
bool | isInIdentifierNamespace (unsigned NS) const |
bool | hasTagIdentifierNamespace () const |
DeclContext * | getLexicalDeclContext () |
getLexicalDeclContext - The declaration context where this Decl was lexically declared (LexicalDC). | |
const DeclContext * | getLexicalDeclContext () const |
virtual bool | isOutOfLine () const |
Determine whether this declaration is declared out of line (outside its semantic context). | |
void | setDeclContext (DeclContext *DC) |
setDeclContext - Set both the semantic and lexical DeclContext to DC. | |
void | setLexicalDeclContext (DeclContext *DC) |
bool | isTemplated () const |
Determine whether this declaration is a templated entity (whether it is. | |
unsigned | getTemplateDepth () const |
Determine the number of levels of template parameter surrounding this declaration. | |
bool | isDefinedOutsideFunctionOrMethod () const |
isDefinedOutsideFunctionOrMethod - This predicate returns true if this scoped decl is defined outside the current function or method. | |
bool | isInLocalScopeForInstantiation () const |
Determine whether a substitution into this declaration would occur as part of a substitution into a dependent local scope. | |
const DeclContext * | getParentFunctionOrMethod (bool LexicalParent=false) const |
If this decl is defined inside a function/method/block it returns the corresponding DeclContext, otherwise it returns null. | |
DeclContext * | getParentFunctionOrMethod (bool LexicalParent=false) |
virtual Decl * | getCanonicalDecl () |
Retrieves the "canonical" declaration of the given declaration. | |
const Decl * | getCanonicalDecl () const |
bool | isCanonicalDecl () const |
Whether this particular Decl is a canonical one. | |
redecl_range | redecls () const |
Returns an iterator range for all the redeclarations of the same decl. | |
redecl_iterator | redecls_begin () const |
redecl_iterator | redecls_end () const |
Decl * | getPreviousDecl () |
Retrieve the previous declaration that declares the same entity as this declaration, or NULL if there is no previous declaration. | |
const Decl * | getPreviousDecl () const |
Retrieve the previous declaration that declares the same entity as this declaration, or NULL if there is no previous declaration. | |
bool | isFirstDecl () const |
True if this is the first declaration in its redeclaration chain. | |
Decl * | getMostRecentDecl () |
Retrieve the most recent declaration that declares the same entity as this declaration (which may be this declaration). | |
const Decl * | getMostRecentDecl () const |
Retrieve the most recent declaration that declares the same entity as this declaration (which may be this declaration). | |
virtual Stmt * | getBody () const |
getBody - If this Decl represents a declaration for a body of code, such as a function or method definition, this method returns the top-level Stmt* of that body. | |
virtual bool | hasBody () const |
Returns true if this Decl represents a declaration for a body of code, such as a function or method definition. | |
SourceLocation | getBodyRBrace () const |
getBodyRBrace - Gets the right brace of the body, if a body exists. | |
bool | isTemplateParameter () const |
isTemplateParameter - Determines whether this declaration is a template parameter. | |
bool | isTemplateParameterPack () const |
isTemplateParameter - Determines whether this declaration is a template parameter pack. | |
bool | isParameterPack () const |
Whether this declaration is a parameter pack. | |
bool | isTemplateDecl () const |
returns true if this declaration is a template | |
bool | isFunctionOrFunctionTemplate () const |
Whether this declaration is a function or function template. | |
TemplateDecl * | getDescribedTemplate () const |
If this is a declaration that describes some template, this method returns that template declaration. | |
const TemplateParameterList * | getDescribedTemplateParams () const |
If this is a declaration that describes some template or partial specialization, this returns the corresponding template parameter list. | |
FunctionDecl * | getAsFunction () LLVM_READONLY |
Returns the function itself, or the templated function if this is a function template. | |
const FunctionDecl * | getAsFunction () const |
void | setLocalExternDecl () |
Changes the namespace of this declaration to reflect that it's a function-local extern declaration. | |
bool | isLocalExternDecl () const |
Determine whether this is a block-scope declaration with linkage. | |
void | setObjectOfFriendDecl (bool PerformFriendInjection=false) |
Changes the namespace of this declaration to reflect that it's the object of a friend declaration. | |
void | clearIdentifierNamespace () |
Clears the namespace of this declaration. | |
FriendObjectKind | getFriendObjectKind () const |
Determines whether this declaration is the object of a friend declaration and, if so, what kind. | |
void | setNonMemberOperator () |
Specifies that this declaration is a C++ overloaded non-member. | |
void | print (raw_ostream &Out, unsigned Indentation=0, bool PrintInstantiation=false) const |
void | print (raw_ostream &Out, const PrintingPolicy &Policy, unsigned Indentation=0, bool PrintInstantiation=false) const |
void | dump () const |
void | dumpColor () const |
void | dump (raw_ostream &Out, bool Deserialize=false, ASTDumpOutputFormat OutputFormat=ADOF_Default) const |
int64_t | getID () const |
const FunctionType * | getFunctionType (bool BlocksToo=true) const |
Looks through the Decl's underlying type to extract a FunctionType when possible. | |
bool | isFunctionPointerType () const |
Public Member Functions inherited from clang::DeclContext | |
~DeclContext () | |
bool | hasValidDeclKind () const |
Decl::Kind | getDeclKind () const |
const char * | getDeclKindName () const |
DeclContext * | getParent () |
getParent - Returns the containing DeclContext. | |
const DeclContext * | getParent () const |
DeclContext * | getLexicalParent () |
getLexicalParent - Returns the containing lexical DeclContext. | |
const DeclContext * | getLexicalParent () const |
DeclContext * | getLookupParent () |
Find the parent context of this context that will be used for unqualified name lookup. | |
const DeclContext * | getLookupParent () const |
ASTContext & | getParentASTContext () const |
bool | isClosure () const |
const BlockDecl * | getInnermostBlockDecl () const |
Return this DeclContext if it is a BlockDecl. | |
bool | isObjCContainer () const |
bool | isFunctionOrMethod () const |
bool | isLookupContext () const |
Test whether the context supports looking up names. | |
bool | isFileContext () const |
bool | isTranslationUnit () const |
bool | isRecord () const |
bool | isRequiresExprBody () const |
bool | isNamespace () const |
bool | isStdNamespace () const |
bool | isInlineNamespace () const |
bool | isDependentContext () const |
Determines whether this context is dependent on a template parameter. | |
bool | isTransparentContext () const |
isTransparentContext - Determines whether this context is a "transparent" context, meaning that the members declared in this context are semantically declared in the nearest enclosing non-transparent (opaque) context but are lexically declared in this context. | |
bool | isExternCContext () const |
Determines whether this context or some of its ancestors is a linkage specification context that specifies C linkage. | |
const LinkageSpecDecl * | getExternCContext () const |
Retrieve the nearest enclosing C linkage specification context. | |
bool | isExternCXXContext () const |
Determines whether this context or some of its ancestors is a linkage specification context that specifies C++ linkage. | |
bool | Equals (const DeclContext *DC) const |
Determine whether this declaration context is equivalent to the declaration context DC. | |
bool | Encloses (const DeclContext *DC) const |
Determine whether this declaration context encloses the declaration context DC. | |
Decl * | getNonClosureAncestor () |
Find the nearest non-closure ancestor of this context, i.e. | |
const Decl * | getNonClosureAncestor () const |
DeclContext * | getNonTransparentContext () |
const DeclContext * | getNonTransparentContext () const |
DeclContext * | getPrimaryContext () |
getPrimaryContext - There may be many different declarations of the same entity (including forward declarations of classes, multiple definitions of namespaces, etc.), each with a different set of declarations. | |
const DeclContext * | getPrimaryContext () const |
DeclContext * | getRedeclContext () |
getRedeclContext - Retrieve the context in which an entity conflicts with other entities of the same name, or where it is a redeclaration if the two entities are compatible. | |
const DeclContext * | getRedeclContext () const |
DeclContext * | getEnclosingNamespaceContext () |
Retrieve the nearest enclosing namespace context. | |
const DeclContext * | getEnclosingNamespaceContext () const |
RecordDecl * | getOuterLexicalRecordContext () |
Retrieve the outermost lexically enclosing record context. | |
const RecordDecl * | getOuterLexicalRecordContext () const |
bool | InEnclosingNamespaceSetOf (const DeclContext *NS) const |
Test if this context is part of the enclosing namespace set of the context NS, as defined in C++0x [namespace.def]p9. | |
void | collectAllContexts (SmallVectorImpl< DeclContext * > &Contexts) |
Collects all of the declaration contexts that are semantically connected to this declaration context. | |
decl_range | decls () const |
decls_begin/decls_end - Iterate over the declarations stored in this context. | |
decl_iterator | decls_begin () const |
decl_iterator | decls_end () const |
bool | decls_empty () const |
decl_range | noload_decls () const |
noload_decls_begin/end - Iterate over the declarations stored in this context that are currently loaded; don't attempt to retrieve anything from an external source. | |
decl_iterator | noload_decls_begin () const |
decl_iterator | noload_decls_end () const |
void | addDecl (Decl *D) |
Add the declaration D into this context. | |
void | addDeclInternal (Decl *D) |
Add the declaration D into this context, but suppress searches for external declarations with the same name. | |
void | addHiddenDecl (Decl *D) |
Add the declaration D to this context without modifying any lookup tables. | |
void | removeDecl (Decl *D) |
Removes a declaration from this context. | |
bool | containsDecl (Decl *D) const |
Checks whether a declaration is in this context. | |
bool | containsDeclAndLoad (Decl *D) const |
Checks whether a declaration is in this context. | |
lookup_result | lookup (DeclarationName Name) const |
lookup - Find the declarations (if any) with the given Name in this context. | |
lookup_result | noload_lookup (DeclarationName Name) |
Find the declarations with the given name that are visible within this context; don't attempt to retrieve anything from an external source. | |
void | localUncachedLookup (DeclarationName Name, SmallVectorImpl< NamedDecl * > &Results) |
A simplistic name lookup mechanism that performs name lookup into this declaration context without consulting the external source. | |
void | makeDeclVisibleInContext (NamedDecl *D) |
Makes a declaration visible within this context. | |
lookups_range | lookups () const |
lookups_range | noload_lookups (bool PreserveInternalState) const |
all_lookups_iterator | lookups_begin () const |
Iterators over all possible lookups within this context. | |
all_lookups_iterator | lookups_end () const |
all_lookups_iterator | noload_lookups_begin () const |
Iterators over all possible lookups within this context that are currently loaded; don't attempt to retrieve anything from an external source. | |
all_lookups_iterator | noload_lookups_end () const |
udir_range | using_directives () const |
Returns iterator range [First, Last) of UsingDirectiveDecls stored within this context. | |
ddiag_range | ddiags () const |
void | setMustBuildLookupTable () |
Mark that there are external lexical declarations that we need to include in our lookup table (and that are not available as external visible lookups). | |
StoredDeclsMap * | getLookupPtr () const |
Retrieve the internal representation of the lookup structure. | |
StoredDeclsMap * | buildLookup () |
Ensure the lookup structure is fully-built and return it. | |
bool | hasExternalLexicalStorage () const |
Whether this DeclContext has external storage containing additional declarations that are lexically in this context. | |
void | setHasExternalLexicalStorage (bool ES=true) const |
State whether this DeclContext has external storage for declarations lexically in this context. | |
bool | hasExternalVisibleStorage () const |
Whether this DeclContext has external storage containing additional declarations that are visible in this context. | |
void | setHasExternalVisibleStorage (bool ES=true) const |
State whether this DeclContext has external storage for declarations visible in this context. | |
bool | isDeclInLexicalTraversal (const Decl *D) const |
Determine whether the given declaration is stored in the list of declarations lexically within this context. | |
void | setUseQualifiedLookup (bool use=true) const |
bool | shouldUseQualifiedLookup () const |
void | dumpAsDecl () const |
void | dumpAsDecl (const ASTContext *Ctx) const |
void | dumpDeclContext () const |
void | dumpLookups () const |
void | dumpLookups (llvm::raw_ostream &OS, bool DumpDecls=false, bool Deserialize=false) const |
Public Member Functions inherited from clang::Redeclarable< FunctionDecl > | |
Redeclarable (const ASTContext &Ctx) | |
FunctionDecl * | getPreviousDecl () |
Return the previous declaration of this declaration or NULL if this is the first declaration. | |
const FunctionDecl * | getPreviousDecl () const |
FunctionDecl * | getFirstDecl () |
Return the first declaration of this declaration or itself if this is the only declaration. | |
const FunctionDecl * | getFirstDecl () const |
Return the first declaration of this declaration or itself if this is the only declaration. | |
bool | isFirstDecl () const |
True if this is the first declaration in its redeclaration chain. | |
FunctionDecl * | getMostRecentDecl () |
Returns the most recent (re)declaration of this declaration. | |
const FunctionDecl * | getMostRecentDecl () const |
Returns the most recent (re)declaration of this declaration. | |
void | setPreviousDecl (FunctionDecl *PrevDecl) |
Set the previous declaration. | |
redecl_range | redecls () const |
Returns an iterator range for all the redeclarations of the same decl. | |
redecl_iterator | redecls_begin () const |
redecl_iterator | redecls_end () const |
Protected Types | |
using | redeclarable_base = Redeclarable< FunctionDecl > |
Protected Member Functions | |
FunctionDecl (Kind DK, ASTContext &C, DeclContext *DC, SourceLocation StartLoc, const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, StorageClass S, bool UsesFPIntrin, bool isInlineSpecified, ConstexprSpecKind ConstexprKind, Expr *TrailingRequiresClause=nullptr) | |
FunctionDecl * | getNextRedeclarationImpl () override |
Returns the next redeclaration or itself if this is the only decl. | |
FunctionDecl * | getPreviousDeclImpl () override |
Implementation of getPreviousDecl(), to be overridden by any subclass that has a redeclaration chain. | |
FunctionDecl * | getMostRecentDeclImpl () override |
Implementation of getMostRecentDecl(), to be overridden by any subclass that has a redeclaration chain. | |
Protected Member Functions inherited from clang::DeclaratorDecl | |
DeclaratorDecl (Kind DK, DeclContext *DC, SourceLocation L, DeclarationName N, QualType T, TypeSourceInfo *TInfo, SourceLocation StartL) | |
Protected Member Functions inherited from clang::ValueDecl | |
ValueDecl (Kind DK, DeclContext *DC, SourceLocation L, DeclarationName N, QualType T) | |
Protected Member Functions inherited from clang::NamedDecl | |
NamedDecl (Kind DK, DeclContext *DC, SourceLocation L, DeclarationName N) | |
Protected Member Functions inherited from clang::Decl | |
void * | operator new (std::size_t Size, const ASTContext &Ctx, GlobalDeclID ID, std::size_t Extra=0) |
Allocate memory for a deserialized declaration. | |
void * | operator new (std::size_t Size, const ASTContext &Ctx, DeclContext *Parent, std::size_t Extra=0) |
Allocate memory for a non-deserialized declaration. | |
Decl (Kind DK, DeclContext *DC, SourceLocation L) | |
Decl (Kind DK, EmptyShell Empty) | |
virtual | ~Decl () |
void | updateOutOfDate (IdentifierInfo &II) const |
Update a potentially out-of-date declaration. | |
Linkage | getCachedLinkage () const |
void | setCachedLinkage (Linkage L) const |
bool | hasCachedLinkage () const |
void | setModulePrivate () |
Specify that this declaration was marked as being private to the module in which it was defined. | |
bool | hasLocalOwningModuleStorage () const |
virtual Decl * | getNextRedeclarationImpl () |
Returns the next redeclaration or itself if this is the only decl. | |
virtual Decl * | getPreviousDeclImpl () |
Implementation of getPreviousDecl(), to be overridden by any subclass that has a redeclaration chain. | |
virtual Decl * | getMostRecentDeclImpl () |
Implementation of getMostRecentDecl(), to be overridden by any subclass that has a redeclaration chain. | |
ASTMutationListener * | getASTMutationListener () const |
Protected Member Functions inherited from clang::DeclContext | |
DeclContext (Decl::Kind K) | |
Protected Member Functions inherited from clang::Redeclarable< FunctionDecl > | |
FunctionDecl * | getNextRedeclaration () const |
Friends | |
class | ASTDeclReader |
class | ASTDeclWriter |
Additional Inherited Members | |
Static Protected Member Functions inherited from clang::DeclContext | |
static std::pair< Decl *, Decl * > | BuildDeclChain (ArrayRef< Decl * > Decls, bool FieldsAlreadyLoaded) |
Build up a chain of declarations. | |
Static Protected Member Functions inherited from clang::Redeclarable< FunctionDecl > | |
static DeclLink | PreviousDeclLink (FunctionDecl *D) |
static DeclLink | LatestDeclLink (const ASTContext &Ctx) |
Protected Attributes inherited from clang::Decl | |
llvm::PointerIntPair< Decl *, 3, ModuleOwnershipKind > | NextInContextAndBits |
The next declaration within the same lexical DeclContext. | |
unsigned | Access: 2 |
Access - Used by C++ decls for the access specifier. | |
unsigned | FromASTFile: 1 |
Whether this declaration was loaded from an AST file. | |
unsigned | IdentifierNamespace: 14 |
IdentifierNamespace - This specifies what IDNS_* namespace this lives in. | |
unsigned | CacheValidAndLinkage: 3 |
If 0, we have not computed the linkage of this declaration. | |
Protected Attributes inherited from clang::DeclContext | |
union { | |
DeclContextBitfields DeclContextBits | |
NamespaceDeclBitfields NamespaceDeclBits | |
TagDeclBitfields TagDeclBits | |
EnumDeclBitfields EnumDeclBits | |
RecordDeclBitfields RecordDeclBits | |
OMPDeclareReductionDeclBitfields OMPDeclareReductionDeclBits | |
FunctionDeclBitfields FunctionDeclBits | |
CXXConstructorDeclBitfields CXXConstructorDeclBits | |
ObjCMethodDeclBitfields ObjCMethodDeclBits | |
ObjCContainerDeclBitfields ObjCContainerDeclBits | |
LinkageSpecDeclBitfields LinkageSpecDeclBits | |
BlockDeclBitfields BlockDeclBits | |
}; | |
This anonymous union stores the bits belonging to DeclContext and classes deriving from it. | |
Decl * | FirstDecl = nullptr |
FirstDecl - The first declaration stored within this declaration context. | |
Decl * | LastDecl = nullptr |
LastDecl - The last declaration stored within this declaration context. | |
Protected Attributes inherited from clang::Redeclarable< FunctionDecl > | |
DeclLink | RedeclLink |
Points to the next redeclaration in the chain. | |
FunctionDecl * | First |
Represents a function declaration or definition.
Since a given function can be declared several times in a program, there may be several FunctionDecls that correspond to that function. Only one of those FunctionDecls will be found when traversing the list of declarations in the context of the FunctionDecl (e.g., the translation unit); this FunctionDecl contains all of the information known about the function. Other, previous declarations of the function are available via the getPreviousDecl() chain.
using clang::FunctionDecl::param_const_iterator = ArrayRef<ParmVarDecl *>::const_iterator |
using clang::FunctionDecl::param_iterator = MutableArrayRef<ParmVarDecl *>::iterator |
using clang::FunctionDecl::redecl_iterator = redeclarable_base::redecl_iterator |
|
protected |
The kind of templated function a FunctionDecl can be.
Enumerator | |
---|---|
TK_NonTemplate | |
TK_FunctionTemplate | |
TK_MemberSpecialization | |
TK_FunctionTemplateSpecialization | |
TK_DependentFunctionTemplateSpecialization | |
TK_DependentNonTemplate |
|
protected |
Definition at line 3025 of file Decl.cpp.
References clang::DeclContext::FunctionDeclBits, clang::Type::isFunctionType(), isInlineSpecified(), clang::Normal, clang::DeclaratorDecl::setTrailingRequiresClause(), clang::T, and UsesFPIntrin().
|
inline |
Definition at line 2415 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by isImmediateFunction().
|
inlinestatic |
|
inlinestatic |
Definition at line 3017 of file Decl.h.
References classofKind(), and D.
|
static |
Definition at line 5396 of file Decl.cpp.
References clang::C, clang::Function, hasWrittenPrototype(), isInlineSpecified(), setHasWrittenPrototype(), clang::T, and UsesFPIntrin().
|
inlinestatic |
Definition at line 2121 of file Decl.h.
References clang::C, Create(), hasWrittenPrototype(), isInlineSpecified(), clang::T, and UsesFPIntrin().
Referenced by Create(), clang::Sema::CreateBuiltin(), CreateNewFunctionDecl(), clang::Sema::DeclareGlobalAllocationFunction(), clang::Sema::DeclClonePragmaWeak(), emitOutlinedFunctionPrologue(), InsertOCLBuiltinDeclarationsFromTable(), rewriteBuiltinFunctionDecl(), and clang::TemplateDeclInstantiator::VisitFunctionDecl().
|
static |
Definition at line 5409 of file Decl.cpp.
References clang::C, clang::Function, ID, clang::SC_None, and clang::Unspecified.
bool FunctionDecl::doesDeclarationForceExternallyVisibleDefinition | ( | ) | const |
For a function declaration in C or C++, determine whether this declaration causes the definition to be externally visible.
For instance, this determines if adding the current declaration to the set of redeclarations of the given functions causes isInlineDefinitionExternallyVisible to change from false to true.
Definition at line 3793 of file Decl.cpp.
References clang::Definition, doesThisDeclarationHaveABody(), clang::Decl::getASTContext(), clang::ASTContext::getLangOpts(), clang::Redeclarable< decl_type >::getPreviousDecl(), getStorageClass(), hasBody(), isInlineSpecified(), RedeclForcesDefC99(), redeclForcesDefMSVC(), and clang::SC_Extern.
Referenced by clang::CodeGen::CodeGenModule::EmitGlobal().
|
inline |
Returns whether this specific declaration of the function has a body.
Definition at line 2258 of file Decl.h.
References Body, clang::DeclContext::FunctionDeclBits, and isLateTemplateParsed().
Referenced by clang::ASTRecordWriter::AddFunctionDefinition(), CheckAbstractClassUsage(), clang::Sema::DefineDefaultedComparison(), clang::Sema::DefineImplicitCopyAssignment(), clang::Sema::DefineImplicitMoveAssignment(), doesDeclarationForceExternallyVisibleDefinition(), clang::CodeGen::CodeGenModule::EmitGlobal(), clang::dataflow::Environment::Environment(), clang::dataflow::DataflowAnalysisContext::getAdornedCFG(), clang::CXXMethodDecl::hasInlineBody(), isInlineDefinitionExternallyVisible(), and isThisDeclarationADefinition().
|
inline |
Definition at line 2580 of file Decl.h.
References clang::DeclContext::FunctionDeclBits, and getCanonicalDecl().
Referenced by isMemberLikeConstrainedFriend().
|
inline |
Get the associated-constraints of this function declaration.
Currently, this will either be a vector of size 1 containing the trailing-requires-clause or an empty vector.
Use this instead of getTrailingRequiresClause for concepts APIs that accept an ArrayRef of constraint expressions.
Definition at line 2624 of file Decl.h.
References clang::DeclaratorDecl::getTrailingRequiresClause().
Referenced by clang::Sema::getMoreConstrainedFunction().
|
inlineoverridevirtual |
getBody - If this Decl represents a declaration for a body of code, such as a function or method definition, this method returns the top-level Stmt* of that body.
Otherwise this method returns null.
Reimplemented from clang::Decl.
Definition at line 2232 of file Decl.h.
References clang::Definition, and getBody().
Referenced by getBody(), and hasTrivialBody().
Stmt * FunctionDecl::getBody | ( | const FunctionDecl *& | Definition | ) | const |
Retrieve the body (definition) of the function.
The function body might be in any of the (re-)declarations of this function. The variant that accepts a FunctionDecl pointer will set that function declaration to the actual declaration containing the body (if there is one). NOTE: For checking if there is a body, use hasBody() instead, to avoid unnecessary AST de-serialization of the body.
Definition at line 3224 of file Decl.cpp.
References clang::Definition, clang::Decl::getASTContext(), and hasBody().
Referenced by addBlockPointerConversion(), clang::ASTRecordWriter::AddFunctionDefinition(), addFunctionPointerConversion(), clang::Sema::BuildLambdaExpr(), clang::Sema::CheckConstexprFunctionDefinition(), ComputeDefaultedComparisonExceptionSpec(), createOverloadsForFixedParams(), endsWithReturn(), getMethodBody(), clang::dataflow::getReferencedDecls(), HandleDestructionImpl(), clang::ASTNodeImporter::ImportFunctionDeclBody(), clang::Sema::InstantiateFunctionDefinition(), clang::Expr::isPotentialConstantExpr(), and clang::interp::Compiler< Emitter >::visitFunc().
Returns a value indicating whether this function corresponds to a builtin function.
The function corresponds to a built-in function if it is declared at translation scope or within an extern "C" block and its name matches with the name of a builtin. The returned value will be 0 for functions that do not correspond to a builtin, a value of type Builtin::ID
if in the target-independent range [1,Builtin::First), or a target-specific builtin value.
ConsiderWrapperFunctions | If true, we should consider wrapper functions as their wrapped builtins. This shouldn't be done in general, but it's useful in Sema to diagnose calls to wrappers based on their semantics. |
Definition at line 3618 of file Decl.cpp.
References clang::ASTContext::BuiltinInfo, clang::Decl::getASTContext(), clang::ASTContext::getLangOpts(), getStorageClass(), clang::ASTContext::getTargetInfo(), clang::TargetInfo::getTriple(), clang::Builtin::Context::isPredefinedLibFunction(), and clang::SC_Static.
Referenced by clang::Sema::ActOnStartOfFunctionDef(), clang::Sema::AddKnownFunctionAttributes(), clang::Sema::BuildCallExpr(), clang::Sema::buildOverloadedCallSet(), clang::Sema::BuildResolvedCallExpr(), clang::ASTContext::canBuiltinBeRedeclared(), clang::Sema::checkCall(), clang::Sema::CheckEquivalentExceptionSpec(), checkFormatStringExpr(), clang::Sema::CheckFunctionCall(), clang::interp::ByteCodeEmitter::compileFunc(), clang::Sema::ConvertArgumentsForCall(), DiagnosedUnqualifiedCallsToStdFunctions(), EmitDirectCallee(), emitLibraryCall(), emitReplacement(), getAbsoluteValueFunctionKind(), getMemoryFunctionKind(), handleDiagnoseAsBuiltinAttr(), clang::ento::CheckerContext::isCLibraryFunction(), isInlineBuiltinDeclaration(), clang::Sema::MergeFunctionDecl(), and rewriteBuiltinFunctionDecl().
|
inline |
Determine the type of an expression that calls this function.
Definition at line 2753 of file Decl.h.
References clang::Type::castAs(), clang::Decl::getASTContext(), getCallResultType(), and clang::ValueDecl::getType().
Referenced by clang::Sema::BuildResolvedCallExpr(), getCallResultType(), and clang::TreeTransform< Derived >::RebuildShuffleVectorExpr().
|
inline |
Definition at line 2639 of file Decl.h.
References getCanonicalDecl().
|
overridevirtual |
Retrieves the "canonical" declaration of the given declaration.
Reimplemented from clang::Decl.
Reimplemented in clang::CXXMethodDecl, clang::CXXConstructorDecl, clang::CXXDestructorDecl, and clang::CXXConversionDecl.
Definition at line 3603 of file Decl.cpp.
References clang::Redeclarable< FunctionDecl >::getFirstDecl().
Referenced by clang::Sema::CheckExplicitlyDefaultedComparison(), clang::Sema::CheckImmediateEscalatingFunctionDefinition(), clang::Sema::CheckMemberSpecialization(), checkRecursiveFunction(), clang::interp::Program::createFunction(), clang::CodeGen::CGOpenMPRuntime::emitDeclareTargetFunction(), FriendConstraintRefersToEnclosingTemplate(), getCanonicalDecl(), clang::CXXMethodDecl::getCanonicalDecl(), clang::CXXConstructorDecl::getCanonicalDecl(), clang::CXXDestructorDecl::getCanonicalDecl(), clang::CXXConversionDecl::getCanonicalDecl(), clang::Sema::getEmissionStatus(), clang::interp::Program::getFunction(), isDeleted(), isGlobal(), isInstantiationOf(), isMultiVersion(), clang::Sema::MergeFunctionDecl(), clang::Sema::SetDeclDefaulted(), setFriendConstraintRefersToEnclosingTemplate(), and setIsMultiVersion().
|
inline |
Definition at line 2401 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by addFunctionPointerConversion(), clang::Sema::areMultiversionVariantFunctionsCompatible(), CheckConstexprDestructorSubobjects(), clang::Sema::CheckFunctionTemplateSpecialization(), clang::Sema::findInheritingConstructor(), isConsteval(), isConstexpr(), isConstexprSpecified(), and clang::Sema::MergeCXXFunctionDecl().
|
inline |
Get the declared return type, which may differ from the actual return type if the return type is deduced.
Definition at line 2734 of file Decl.h.
References clang::Type::castAs(), getReturnType(), clang::ValueDecl::getType(), clang::DeclaratorDecl::getTypeSourceInfo(), and clang::T.
Referenced by clang::Sema::CheckExplicitlyDefaultedComparison(), isGRealloc(), IsOverloadOrOverrideImpl(), isStandardRealloc(), and clang::Sema::MergeFunctionDecl().
FunctionDecl::DefaultedOrDeletedFunctionInfo * FunctionDecl::getDefalutedOrDeletedInfo | ( | ) | const |
Definition at line 3139 of file Decl.cpp.
References DefaultedOrDeletedInfo, and clang::DeclContext::FunctionDeclBits.
Referenced by clang::TemplateDeclInstantiator::SubstDefaultedFunction().
|
inline |
Definition at line 2323 of file Decl.h.
References isExplicitlyDefaulted().
Referenced by clang::Sema::CheckExplicitlyDefaultedComparison(), and clang::Sema::CheckExplicitlyDefaultedFunction().
|
inline |
Get the definition for this declaration.
Definition at line 2214 of file Decl.h.
References clang::Definition, and isDefined().
Referenced by clang::ento::RetainSummaryManager::canEval(), clang::interp::CheckCallable(), clang::dataflow::DataflowAnalysisContext::getAdornedCFG(), clang::CallGraphNode::getDefinition(), getDefinition(), clang::Sema::getEmissionStatus(), getMethodBody(), and clang::Sema::InstantiateFunctionDefinition().
|
inline |
Definition at line 2220 of file Decl.h.
References getDefinition().
|
inline |
Get the message that indicates why this function was deleted.
Definition at line 2630 of file Decl.h.
References DefaultedOrDeletedInfo, clang::DeclContext::FunctionDeclBits, and clang::FunctionDecl::DefaultedOrDeletedFunctionInfo::getDeletedMessage().
Referenced by clang::Sema::FindDeallocationFunction(), and clang::JSONNodeDumper::VisitFunctionDecl().
DependentFunctionTemplateSpecializationInfo * FunctionDecl::getDependentSpecializationInfo | ( | ) | const |
Definition at line 4223 of file Decl.cpp.
Referenced by clang::Sema::CheckOverload(), and clang::ASTNodeImporter::ImportTemplateInformation().
FunctionTemplateDecl * FunctionDecl::getDescribedFunctionTemplate | ( | ) | const |
Retrieves the function template that is described by this function declaration.
Every function template is represented as a FunctionTemplateDecl and a FunctionDecl (or something derived from FunctionDecl). The former contains template properties (such as the template parameter lists) while the latter contains the actual description of the template's contents. FunctionTemplateDecl::getTemplatedDecl() retrieves the FunctionDecl that describes the function template, getDescribedFunctionTemplate() retrieves the FunctionTemplateDecl from a FunctionDecl.
Definition at line 4028 of file Decl.cpp.
Referenced by clang::Sema::ActOnConversionDeclarator(), clang::Sema::ActOnFunctionDeclarator(), clang::Sema::ActOnStartOfLambdaDefinition(), clang::Sema::AddConversionCandidate(), addFunctionPointerConversion(), AreSpecialMemberFunctionsSameKind(), clang::Sema::BuildLambdaExpr(), clang::SemaCUDA::CheckCall(), clang::Sema::CheckCXXDefaultArguments(), clang::Sema::CheckFunctionDeclaration(), clang::Sema::CheckIfFunctionSpecializationIsImmediate(), clang::Sema::CheckLiteralOperatorDeclaration(), clang::Sema::CheckMain(), clang::Sema::CheckMSVCRTEntryPoint(), CheckOperatorNewDeleteTypes(), clang::Sema::CheckOverload(), clang::interp::ByteCodeEmitter::compileFunc(), clang::Sema::CompleteLambdaCallOperator(), clang::Sema::DeclareAggregateDeductionGuideFromInitList(), clang::Sema::DeduceReturnType(), clang::Sema::DefineImplicitLambdaToFunctionPointerConversion(), clang::Sema::FriendConstraintsDependOnEnclosingTemplate(), FunctionsCorrespond(), clang::CXXRecordDecl::getGenericLambdaTemplateParameterList(), clang::CXXMethodDecl::isCopyAssignmentOperator(), clang::CXXConstructorDecl::isCopyOrMoveConstructor(), isMemberLikeConstrainedFriend(), clang::CXXMethodDecl::isMoveAssignmentOperator(), IsOverloadOrOverrideImpl(), clang::CXXConstructorDecl::isSpecializationCopyingObject(), isThisDeclarationInstantiatedFromAFriendDefinition(), clang::SemaCUDA::maybeAddHostDeviceAttrs(), clang::Sema::MergeCXXFunctionDecl(), clang::Sema::MergeFunctionDecl(), NoteImplicitDeductionGuide(), setPreviousDeclaration(), ShouldWarnAboutMissingPrototype(), clang::ASTNodeImporter::VisitFunctionDecl(), and clang::ASTDeclReader::VisitFunctionDecl().
|
inline |
Returns the location of the ellipsis of a variadic function.
Definition at line 2155 of file Decl.h.
References clang::Type::getAs(), clang::FunctionProtoType::getEllipsisLoc(), and clang::ValueDecl::getType().
Referenced by getParametersSourceRange().
SourceRange FunctionDecl::getExceptionSpecSourceRange | ( | ) | const |
Attempt to compute an informative source range covering the function exception specification, if any.
Definition at line 3891 of file Decl.cpp.
References clang::FunctionTypeLoc::getExceptionSpecRange(), and getFunctionTypeLoc().
Referenced by EmitDiagForCXXThrowInNonThrowingFunc().
|
inline |
Gets the ExceptionSpecificationType as declared.
Definition at line 2741 of file Decl.h.
References clang::EST_None, clang::Type::getAs(), clang::FunctionProtoType::getExceptionSpecType(), clang::ValueDecl::getType(), clang::DeclaratorDecl::getTypeSourceInfo(), and clang::T.
Referenced by clang::Sema::CheckExplicitlyDefaultedComparison(), clang::extractapi::DeclarationFragmentsBuilder::getFragmentsForCXXMethod(), clang::extractapi::DeclarationFragmentsBuilder::getFragmentsForOverloadedOperator(), and clang::extractapi::DeclarationFragmentsBuilder::getFragmentsForSpecialCXXMethod().
|
inline |
Definition at line 3006 of file Decl.h.
References clang::Redeclarable< FunctionDecl >::getMostRecentDecl(), and clang::ValueDecl::getType().
Referenced by clang::Sema::CheckOverridingFunctionAttributes(), and clang::Sema::MergeFunctionDecl().
FunctionTypeLoc FunctionDecl::getFunctionTypeLoc | ( | ) | const |
Find the source location information for how the type of this function was written.
May be absent (for example if the function was declared via a typedef) and may contain a different type from that of the function (for example if the function type was adjusted by an attribute).
Definition at line 3853 of file Decl.cpp.
References clang::TypeLoc::getAs(), clang::TypeSourceInfo::getTypeLoc(), clang::DeclaratorDecl::getTypeSourceInfo(), and clang::TypeLoc::IgnoreParens().
Referenced by clang::Sema::CheckExplicitlyDefaultedComparison(), getExceptionSpecSourceRange(), and getReturnTypeSourceRange().
FunctionDecl * FunctionDecl::getInstantiatedFromDecl | ( | ) | const |
Definition at line 4052 of file Decl.cpp.
Referenced by getPatternFunctionDecl(), and clang::ASTNodeImporter::ImportTemplateInformation().
FunctionDecl * FunctionDecl::getInstantiatedFromMemberFunction | ( | ) | const |
If this function is an instantiation of a member function of a class template specialization, retrieves the function from which it was instantiated.
This routine will return non-NULL for (non-templated) member functions of class templates and for instantiations of function templates. For example, given:
The declaration for X<int>::f is a (non-templated) FunctionDecl whose parent is the class template specialization X<int>. For this declaration, getInstantiatedFromFunction() will return the FunctionDecl X<T>::A. When a complete definition of X<int>::A is required, it will be instantiated from the declaration returned by getInstantiatedFromMemberFunction().
Definition at line 4000 of file Decl.cpp.
References getMemberSpecializationInfo().
Referenced by adjustDeclToTemplate(), clang::Sema::CheckForFunctionRedefinition(), clang::Sema::CheckMemberSpecialization(), getExplicitVisibilityAux(), getODRHash(), getPatternFunctionDecl(), hasExplicitMemberDefinition(), clang::ASTNodeImporter::ImportTemplateInformation(), isOutOfLine(), isThisDeclarationInstantiatedFromAFriendDefinition(), and SetEligibleMethods().
LanguageLinkage FunctionDecl::getLanguageLinkage | ( | ) | const |
Compute the language linkage.
Definition at line 3474 of file Decl.cpp.
References getDeclLanguageLinkage().
Referenced by clang::Sema::ActOnFunctionDeclarator(), and clang::Sema::CheckMain().
const IdentifierInfo * FunctionDecl::getLiteralIdentifier | ( | ) | const |
getLiteralIdentifier - The literal suffix identifier this function represents, if any.
Definition at line 3973 of file Decl.cpp.
References clang::DeclarationName::CXXLiteralOperatorName, clang::DeclarationName::getCXXLiteralIdentifier(), and clang::NamedDecl::getDeclName().
Referenced by clang::Sema::CheckFunctionDeclaration().
MemberSpecializationInfo * FunctionDecl::getMemberSpecializationInfo | ( | ) | const |
If this function is an instantiation of a member function of a class template specialization, retrieves the member specialization information.
Definition at line 4007 of file Decl.cpp.
Referenced by clang::Sema::CheckMemberSpecialization(), getInstantiatedFromMemberFunction(), getTemplateInstantiationPattern(), clang::ASTNodeImporter::ImportTemplateInformation(), and clang::ASTDeclReader::VisitFunctionDecl().
unsigned FunctionDecl::getMemoryFunctionKind | ( | ) | const |
Identify a memory copying or setting function.
If the given function is a memory copy or setting function, returns the corresponding Builtin ID. If the function is not a memory function, returns 0.
Definition at line 4385 of file Decl.cpp.
References getBuiltinID(), clang::NamedDecl::getIdentifier(), isExternC(), clang::Decl::isInStdNamespace(), and clang::IdentifierInfo::isStr().
Referenced by clang::Sema::CheckFunctionCall(), and getStrlenExprArg().
unsigned FunctionDecl::getMinRequiredArguments | ( | ) | const |
Returns the minimum number of arguments needed to call this function.
getMinRequiredArguments - Returns the minimum number of arguments needed to call this function.
This may be fewer than the number of function parameters, if some of the parameters have default arguments (in C++).
This may be fewer than the number of function parameters, if some of the parameters have default arguments (in C++) or are parameter packs (C++11).
Definition at line 3699 of file Decl.cpp.
References clang::CPlusPlus, clang::Decl::getASTContext(), clang::Decl::getLangOpts(), getNumParams(), and parameters().
Referenced by clang::Sema::AddMethodCandidate(), compareOverloads(), clang::Sema::ConvertArgumentsForCall(), getMinRequiredExplicitArguments(), clang::CXXConstructorDecl::isConvertingConstructor(), clang::CXXConstructorDecl::isDefaultConstructor(), clang::Sema::MergeCXXFunctionDecl(), clang::Sema::SpecialMemberIsTrivial(), and clang::FunctionCallFilterCCC::ValidateCandidate().
unsigned FunctionDecl::getMinRequiredExplicitArguments | ( | ) | const |
Returns the minimum number of non-object arguments needed to call this function.
This produces the same value as getMinRequiredArguments except it does not count the explicit object argument, if any.
Definition at line 3726 of file Decl.cpp.
References getMinRequiredArguments(), and hasCXXExplicitFunctionObjectParameter().
|
inlineoverrideprotectedvirtual |
Implementation of getMostRecentDecl(), to be overridden by any subclass that has a redeclaration chain.
Reimplemented from clang::Decl.
Definition at line 2102 of file Decl.h.
References clang::Redeclarable< FunctionDecl >::getMostRecentDecl().
MultiVersionKind FunctionDecl::getMultiVersionKind | ( | ) | const |
Gets the kind of multiversioning attribute this declaration has.
Note that this can return a value even if the function is not multiversion, such as the case of 'target'.
Definition at line 3544 of file Decl.cpp.
References clang::CPUDispatch, clang::CPUSpecific, clang::None, clang::Target, clang::TargetClones, and clang::TargetVersion.
Referenced by CheckMultiVersionAdditionalDecl(), CheckMultiVersionFirstFunction(), CheckMultiVersionFunction(), MultiVersionTypesCompatible(), patchDefaultTargetVersion(), and PreviousDeclsHaveMultiVersionAttribute().
|
overridevirtual |
Appends a human-readable name for this declaration into the given stream.
This is the method invoked by Sema when displaying a NamedDecl in a diagnostic. It does not necessarily produce the same result as printName(); for example, class template specializations are printed with their template arguments.
Reimplemented from clang::NamedDecl.
Definition at line 3069 of file Decl.cpp.
References clang::TemplateArgumentList::asArray(), clang::NamedDecl::getNameForDiagnostic(), getTemplateSpecializationArgs(), clang::printTemplateArgumentList(), and clang::Qualified.
Referenced by clang::interp::InterpFrame::describe(), and clang::Expr::isPotentialConstantExpr().
|
inline |
Definition at line 2143 of file Decl.h.
References clang::NamedDecl::getDeclName(), and clang::Decl::getLocation().
Referenced by CheckConstexprFunctionBody(), clang::Sema::CheckFriendAccess(), getFunNameText(), getReturnTypeSourceRange(), clang::Sema::InstantiateFunctionDefinition(), and clang::Sema::RebuildLambdaScopeInfo().
|
inlineoverrideprotectedvirtual |
Returns the next redeclaration or itself if this is the only decl.
Decl subclasses that can be redeclared should override this method so that Decl::redecl_iterator can iterate over them.
Reimplemented from clang::Decl.
Definition at line 2094 of file Decl.h.
References clang::Redeclarable< FunctionDecl >::getNextRedeclaration().
|
inline |
Definition at line 2699 of file Decl.h.
References getParamDecl(), and hasCXXExplicitFunctionObjectParameter().
|
inline |
Definition at line 2695 of file Decl.h.
References getParamDecl(), and hasCXXExplicitFunctionObjectParameter().
Referenced by AreSpecialMemberFunctionsSameKind(), clang::Sema::DefineImplicitCopyAssignment(), clang::Sema::DefineImplicitMoveAssignment(), clang::CXXMethodDecl::isCopyAssignmentOperator(), clang::CXXMethodDecl::isMoveAssignmentOperator(), and clang::Sema::SpecialMemberIsTrivial().
unsigned FunctionDecl::getNumNonObjectParams | ( | ) | const |
Definition at line 3721 of file Decl.cpp.
References getNumParams(), and hasCXXExplicitFunctionObjectParameter().
Referenced by clang::Sema::FunctionNonObjectParamTypesAreEqual(), and clang::OverloadCandidateSet::OperatorRewriteInfo::shouldAddReversed().
unsigned FunctionDecl::getNumParams | ( | ) | const |
Return the number of parameters this function must have based on its FunctionType.
getNumParams - Return the number of parameters this function must have based on its FunctionType.
This is the length of the ParamInfo array after it has been created.
Definition at line 3678 of file Decl.cpp.
References clang::Type::getAs(), clang::FunctionProtoType::getNumParams(), and clang::ValueDecl::getType().
Referenced by clang::Sema::ActOnFinishFunctionBody(), clang::Sema::ActOnFunctionDeclarator(), clang::SemaOpenMP::ActOnOpenMPDeclareVariantDirective(), clang::Sema::ActOnReenterFunctionContext(), addFunctionPointerConversion(), clang::Sema::AddKnownFunctionAttributes(), clang::Sema::AddMethodCandidate(), addX86InterruptAttrs(), allowAmbiguity(), clang::Sema::BuildBlockForLambdaConversion(), castArgToParamTypeIfNeeded(), clang::Sema::CheckCXXDefaultArguments(), clang::Sema::CheckCXXThrowOperand(), clang::Sema::CheckExplicitlyDefaultedComparison(), clang::Sema::CheckMain(), CheckOperatorNewDeleteTypes(), clang::Sema::CheckOverloadedOperatorDeclaration(), compareOverloads(), createOverloadsForFixedParams(), clang::interp::InterpFrame::describe(), DiagnoseBadTarget(), emitReplacement(), evaluateCDTSize(), FunctionsCorrespond(), clang::CodeGen::CodeGenModule::GenKernelArgMetadata(), clang::extractapi::DeclarationFragmentsBuilder::getFragmentsForCXXMethod(), clang::extractapi::DeclarationFragmentsBuilder::getFragmentsForOverloadedOperator(), clang::extractapi::DeclarationFragmentsBuilder::getFragmentsForSpecialCXXMethod(), getMinRequiredArguments(), getNDSWDS(), clang::ento::CXXDeallocatorCall::getNumArgs(), clang::CXXMethodDecl::getNumExplicitParams(), getNumNonObjectParams(), clang::OverloadCandidate::getNumParams(), getParamDecl(), getParametersSourceRange(), clang::consumed::ConsumedStmtVisitor::handleCall(), handleCleanupAttr(), handleDiagnoseAsBuiltinAttr(), hasCopyOrMoveCtorParam(), hasCXXExplicitFunctionObjectParameter(), hasIdenticalPassObjectSizeAttrs(), hasOneParamOrDefaultArgs(), clang::Sema::InstantiateDefaultCtorDefaultArgs(), clang::CXXConstructorDecl::isConvertingConstructor(), isDestroyingOperatorDelete(), clang::SemaCUDA::isEmptyConstructor(), isNonPlacementDeallocationFunction(), isRelevantAttr(), clang::Sema::isUsualDeallocationFunction(), clang::CXXMethodDecl::isUsualDeallocationFunction(), clang::Sema::MergeCompatibleFunctionDecls(), clang::Sema::MergeCXXFunctionDecl(), clang::Sema::MergeFunctionDecl(), parameters(), ProcessAPINotes(), clang::sema::shouldTrackFirstArgument(), clang::Sema::SpecialMemberIsTrivial(), and clang::FunctionCallFilterCCC::ValidateCandidate().
unsigned FunctionDecl::getODRHash | ( | ) |
Returns ODRHash of the function.
This value is calculated and stored on first call, then the stored value returned on the other calls.
Definition at line 4510 of file Decl.cpp.
References clang::ODRHash::AddFunctionDecl(), clang::ODRHash::CalculateHash(), and getInstantiatedFromMemberFunction().
Referenced by clang::ODRDiagsEmitter::diagnoseMismatch().
unsigned FunctionDecl::getODRHash | ( | ) | const |
OverloadedOperatorKind FunctionDecl::getOverloadedOperator | ( | ) | const |
getOverloadedOperator - Which C++ overloaded operator this function represents, if any.
Definition at line 3965 of file Decl.cpp.
References clang::DeclarationName::CXXOperatorName, clang::DeclarationName::getCXXOverloadedOperator(), clang::NamedDecl::getDeclName(), and clang::OO_None.
Referenced by clang::Sema::ActOnFunctionDeclarator(), clang::Sema::CheckExplicitlyDefaultedComparison(), clang::Sema::CheckOverloadedOperatorDeclaration(), clang::Sema::DefineImplicitCopyAssignment(), clang::Sema::DefineImplicitMoveAssignment(), DiagnoseShiftCompare(), findImplicitlyDeclaredEqualityComparisons(), clang::CXXMethodDecl::isCopyAssignmentOperator(), isDestroyingOperatorDelete(), clang::isLambdaCallOperator(), clang::CXXMethodDecl::isMoveAssignmentOperator(), isNonPlacementDeallocationFunction(), isOverloadedOperator(), isStandardNewDelete(), isStdOstreamOperatorCall(), IsStructurallyEquivalent(), clang::CXXMethodDecl::isUsualDeallocationFunction(), clang::OverloadCandidateSet::OperatorRewriteInfo::shouldAddReversed(), and shouldAddReversedEqEq().
|
inline |
Definition at line 2673 of file Decl.h.
References getNumParams().
|
inline |
Definition at line 2669 of file Decl.h.
References getNumParams().
Referenced by clang::Sema::ActOnCXXDelete(), clang::SemaOpenMP::ActOnOpenMPDeclareVariantDirective(), clang::Sema::ActOnReenterFunctionContext(), addFunctionPointerConversion(), clang::Sema::AddKnownFunctionAttributes(), clang::Sema::AddSurrogateCandidate(), addX86InterruptAttrs(), allowAmbiguity(), clang::Sema::BuildBlockForLambdaConversion(), clang::Sema::BuildLiteralOperatorCall(), castArgToParamTypeIfNeeded(), CheckConstexprParameterTypes(), clang::Sema::CheckCXXDefaultArguments(), clang::Sema::CheckCXXThrowOperand(), clang::Sema::CheckExplicitlyDefaultedComparison(), clang::Sema::CheckExplicitlyDefaultedSpecialMember(), clang::Sema::CheckExplicitObjectOverride(), clang::Sema::CheckLiteralOperatorDeclaration(), CheckOperatorNewDeclaration(), CheckOperatorNewDeleteTypes(), clang::Sema::CheckOverloadedOperatorDeclaration(), clang::Sema::CheckOverridingFunctionAttributes(), clang::Sema::ConvertArgumentsForCall(), clang::Sema::CreateOverloadedBinOp(), clang::Sema::CreateOverloadedUnaryOp(), createOverloadsForFixedParams(), clang::Sema::DeduceTemplateArguments(), clang::Sema::DefineDefaultedComparison(), clang::Sema::DefineImplicitCopyAssignment(), clang::Sema::DefineImplicitMoveAssignment(), clang::interp::InterpFrame::describe(), DiagnoseBadTarget(), diagnoseInstanceReference(), clang::Sema::DiagnoseInvalidExplicitObjectParameterInLambda(), DiagnoseInvalidRedeclaration(), clang::ODRDiagsEmitter::diagnoseMismatch(), clang::CodeGen::CGHLSLRuntime::emitEntryFunction(), emitReplacement(), evaluateCDTSize(), clang::Sema::findInheritingConstructor(), FunctionsCorrespond(), clang::Sema::GatherArgumentsForCall(), clang::CodeGen::CodeGenModule::GenKernelArgMetadata(), GetExplicitObjectExpr(), clang::extractapi::DeclarationFragmentsBuilder::getFragmentsForCXXMethod(), clang::extractapi::DeclarationFragmentsBuilder::getFragmentsForOverloadedOperator(), clang::extractapi::DeclarationFragmentsBuilder::getFragmentsForSpecialCXXMethod(), getNDSWDS(), getNonObjectParameter(), clang::consumed::ConsumedStmtVisitor::handleCall(), handleCleanupAttr(), handleDiagnoseAsBuiltinAttr(), HandleFunctionCall(), HandleLambdaCapture(), hasCopyOrMoveCtorParam(), hasCXXExplicitFunctionObjectParameter(), clang::Sema::InitializeExplicitObjectArgument(), clang::Sema::InstantiateDefaultCtorDefaultArgs(), clang::CXXConstructorDecl::isCopyConstructor(), clang::CXXConstructorDecl::isCopyOrMoveConstructor(), isDestroyingOperatorDelete(), isGRealloc(), clang::Sema::isInitListConstructor(), clang::CXXConstructorDecl::isMoveConstructor(), isNonPlacementDeallocationFunction(), isRelevantAttr(), clang::CXXConstructorDecl::isSpecializationCopyingObject(), isStandardRealloc(), clang::CXXMethodDecl::isUsualDeallocationFunction(), clang::Sema::MergeCompatibleFunctionDecls(), clang::Sema::MergeCXXFunctionDecl(), clang::Sema::MergeFunctionDecl(), mergeParamDeclAttributes(), clang::Sema::PerformImplicitConversion(), PrepareArgumentsForCallToObjectOfClassType(), ProcessAPINotes(), clang::Sema::RebuildLambdaScopeInfo(), clang::OverloadCandidateSet::OperatorRewriteInfo::shouldAddReversed(), clang::sema::shouldTrackFirstArgument(), clang::Sema::SpecialMemberIsTrivial(), and VerifyInitializationSequenceCXX98().
SourceRange FunctionDecl::getParametersSourceRange | ( | ) | const |
Attempt to compute an informative source range covering the function parameters, including the ellipsis of a variadic function.
The source range excludes the parentheses, and is invalid if there are no parameters and no ellipsis.
Definition at line 3875 of file Decl.cpp.
References Begin, clang::SourceRange::getBegin(), getEllipsisLoc(), clang::SourceRange::getEnd(), getNumParams(), clang::ParmVarDecl::getSourceRange(), clang::SourceLocation::isInvalid(), and clang::SourceLocation::isValid().
Referenced by clang::Sema::ConvertArgumentsForCall().
SourceLocation FunctionDecl::getPointOfInstantiation | ( | ) | const |
Retrieve the (first) point of instantiation of a function template specialization or a member of a class template specialization.
Definition at line 4346 of file Decl.cpp.
Referenced by clang::Sema::ActOnExplicitInstantiation().
|
inlineoverrideprotectedvirtual |
Implementation of getPreviousDecl(), to be overridden by any subclass that has a redeclaration chain.
Reimplemented from clang::Decl.
Definition at line 2098 of file Decl.h.
References clang::Redeclarable< FunctionDecl >::getPreviousDecl().
FunctionTemplateDecl * FunctionDecl::getPrimaryTemplate | ( | ) | const |
Retrieve the primary template that this function template specialization either specializes or was instantiated from.
If this function declaration is not a function template specialization, returns NULL.
Definition at line 4148 of file Decl.cpp.
Referenced by clang::Sema::AddConversionCandidate(), allowAmbiguity(), checkAddressOfFunctionIsAvailable(), clang::Sema::CheckFunctionDeclaration(), clang::Sema::CheckLiteralOperatorDeclaration(), getPatternFunctionDecl(), getTemplateInstantiationPattern(), clang::isBetterOverloadCandidate(), clang::CXXMethodDecl::isCopyAssignmentOperator(), clang::CXXConstructorDecl::isCopyOrMoveConstructor(), clang::CXXMethodDecl::isMoveAssignmentOperator(), isOutOfLine(), isTemplate(), clang::CXXMethodDecl::isUsualDeallocationFunction(), and clang::Sema::SubstDefaultArgument().
|
inline |
Definition at line 2717 of file Decl.h.
References clang::Type::castAs(), getReturnType(), and clang::ValueDecl::getType().
Referenced by clang::Sema::ActOnCapScopeReturnStmt(), clang::Sema::ActOnFinishFunctionBody(), clang::Sema::ActOnFunctionDeclarator(), clang::Sema::ActOnStartOfFunctionDef(), AddOrdinaryNameResults(), AddResultTypeChunk(), clang::Sema::BuildCallToMemberFunction(), clang::Sema::BuildCallToObjectOfClassType(), clang::Sema::BuildCXXMemberCallExpr(), buildLambdaScopeReturnType(), clang::Sema::BuildLiteralOperatorCall(), clang::Sema::BuildOverloadedArrowExpr(), clang::Sema::BuildOverloadedCallExpr(), clang::Sema::BuildReturnStmt(), clang::Sema::BuildSynthesizedThreeWayComparison(), clang::interp::CallVirt(), clang::Sema::CheckAddressOfOperand(), CheckConstexprMissingReturn(), CheckConstexprReturnType(), CheckConstPureAttributesUsage(), clang::Sema::CheckCoroutineWrapper(), clang::Sema::CheckFunctionDeclaration(), clang::interp::ByteCodeEmitter::compileFunc(), completeFunctionType(), clang::Sema::CreateOverloadedArraySubscriptExpr(), clang::Sema::CreateOverloadedBinOp(), clang::Sema::CreateOverloadedUnaryOp(), clang::Sema::DeduceReturnType(), clang::Sema::DefineImplicitLambdaToFunctionPointerConversion(), DiagnoseConstAssignment(), DiagnoseForRangeReferenceVariableCopies(), clang::ODRDiagsEmitter::diagnoseMismatch(), dumpMicrosoftThunkAdjustment(), evaluateCDTSize(), clang::comments::DeclInfo::fill(), getCallableReturnType(), clang::CXXConversionDecl::getConversionType(), getDeclaredReturnType(), clang::extractapi::DeclarationFragmentsBuilder::getFragmentsForCXXMethod(), clang::extractapi::DeclarationFragmentsBuilder::getFragmentsForOverloadedOperator(), clang::Sema::getMoreSpecializedTemplate(), getNDSWDS(), getReturnType(), handleGlobalAttr(), handleMSAllocatorAttr(), clang::sema::implicitObjectParamIsLifetimeBound(), clang::dataflow::Environment::initialize(), clang::Sema::InstantiateFunctionDefinition(), clang::interp::interp__builtin_inf(), clang::interp::interp__builtin_nan(), isRelevantAttr(), clang::isReturnValueRefCounted(), clang::Sema::MergeFunctionDecl(), clang::InitializationSequence::Perform(), ProcessAPINotes(), clang::Sema::RebuildLambdaScopeInfo(), clang::TreeTransform< Derived >::RebuildShuffleVectorExpr(), clang::sema::shouldTrackFirstArgument(), TryReferenceInit(), and clang::interp::Compiler< Emitter >::visitFunc().
SourceRange FunctionDecl::getReturnTypeSourceRange | ( | ) | const |
Attempt to compute an informative source range covering the function return type.
This may omit qualifiers and other information with limited representation in the AST.
Definition at line 3859 of file Decl.cpp.
References clang::Decl::getASTContext(), clang::DeclarationNameInfo::getBeginLoc(), clang::SourceRange::getEnd(), getFunctionTypeLoc(), getNameInfo(), clang::FunctionTypeLoc::getReturnLoc(), clang::ASTContext::getSourceManager(), clang::TypeLoc::getSourceRange(), clang::SourceLocation::isInvalid(), clang::SourceRange::isInvalid(), and SM.
Referenced by clang::Sema::ActOnFunctionDeclarator(), clang::Sema::CheckAddressOfOperand(), clang::Sema::CheckExplicitlyDefaultedComparison(), clang::Sema::CheckMain(), clang::Sema::CheckOverridingFunctionAttributes(), clang::Sema::CheckOverridingFunctionReturnType(), DiagnoseConstAssignment(), clang::ODRDiagsEmitter::diagnoseMismatch(), handleGlobalAttr(), and clang::Sema::MergeFunctionDecl().
|
overridevirtual |
Source range that this declaration covers.
Reimplemented from clang::DeclaratorDecl.
Definition at line 4381 of file Decl.cpp.
References clang::DeclaratorDecl::getOuterLocStart().
Referenced by clang::Sema::BuildCallToMemberFunction(), clang::Sema::CheckExplicitlyDefaultedSpecialMember(), clang::Sema::CheckExplicitObjectOverride(), clang::Sema::DeduceFunctionTypeFromReturnExpr(), DiagnoseInvalidRedeclaration(), clang::ODRDiagsEmitter::diagnoseMismatch(), patchDefaultTargetVersion(), and resolveBuiltinNewDeleteOverload().
|
inline |
Returns the storage class as written in the source.
For the computed linkage of symbol, see getLinkage.
Definition at line 2760 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::ActOnFinishFunctionBody(), canRedefineFunction(), clang::interp::CheckCallable(), clang::Sema::CheckCompletedCXXClass(), clang::Sema::CheckMain(), CheckOperatorNewDeleteDeclarationScope(), clang::Sema::CheckOverridingFunctionAttributes(), clang::ODRDiagsEmitter::diagnoseMismatch(), doesDeclarationForceExternallyVisibleDefinition(), getBuiltinID(), isGlobal(), isInlineDefinitionExternallyVisible(), isStatic(), clang::CXXMethodDecl::isStatic(), clang::Sema::MergeFunctionDecl(), RedeclForcesDefC99(), redeclForcesDefMSVC(), and clang::JSONNodeDumper::VisitFunctionDecl().
FunctionDecl::TemplatedKind FunctionDecl::getTemplatedKind | ( | ) | const |
What kind of templated function this is.
Definition at line 3979 of file Decl.cpp.
References TK_DependentFunctionTemplateSpecialization, TK_DependentNonTemplate, TK_FunctionTemplate, TK_FunctionTemplateSpecialization, TK_MemberSpecialization, and TK_NonTemplate.
Referenced by clang::Sema::areMultiversionVariantFunctionsCompatible(), clang::Sema::CheckExplicitlyDefaultedSpecialMember(), clang::Sema::CheckFunctionConstraints(), checkRecursiveFunction(), clang::Sema::DiagnoseAlwaysNonNullPointer(), getPatternFunctionDecl(), clang::ASTNodeImporter::ImportFunctionTemplateWithTemplateArgsFromSpecialization(), clang::ASTNodeImporter::ImportTemplateInformation(), clang::Sema::IsAtLeastAsConstrained(), isImmediateEscalating(), clang::Sema::IsInsideALocalClassWithinATemplateFunction(), and clang::ASTDeclReader::VisitFunctionDecl().
FunctionDecl * FunctionDecl::getTemplateInstantiationPattern | ( | bool | ForDefinition = true | ) | const |
Retrieve the function declaration from which this function could be instantiated, if it is an instantiation (rather than a non-template or a specialization, for example).
If ForDefinition
is false
, explicit specializations will be treated as if they were implicit instantiations. This will then find the pattern corresponding to non-definition portions of the declaration, such as default arguments and the exception specification.
Definition at line 4099 of file Decl.cpp.
References getDefinitionOrSelf(), clang::MemberSpecializationInfo::getInstantiatedFrom(), getMemberSpecializationInfo(), getPrimaryTemplate(), getTemplateSpecializationKind(), clang::MemberSpecializationInfo::getTemplateSpecializationKind(), isDefined(), clang::isGenericLambdaCallOperatorSpecialization(), and clang::isTemplateInstantiation().
Referenced by clang::Sema::BuildOverloadedCallExpr(), clang::Sema::CheckIfFunctionSpecializationIsImmediate(), clang::PredefinedExpr::ComputeName(), clang::Sema::DeduceReturnType(), getDefiningModule(), clang::Sema::getMoreConstrainedFunction(), GetSignature(), clang::CXXMethodDecl::hasInlineBody(), isImplicitlyInstantiable(), isUserProvided(), NoteImplicitDeductionGuide(), clang::CodeGen::CodeGenModule::SetLLVMFunctionAttributesForDefinition(), and clang::Sema::SubstDefaultArgument().
const TemplateArgumentList * FunctionDecl::getTemplateSpecializationArgs | ( | ) | const |
Retrieve the template arguments used to produce this function template specialization from the primary template.
If this function declaration is not a function template specialization, returns NULL.
Definition at line 4164 of file Decl.cpp.
Referenced by addInstanceOfTransition(), checkAddressOfFunctionIsAvailable(), clang::Sema::CheckIfFunctionSpecializationIsImmediate(), clang::Sema::DeduceReturnType(), clang::Sema::DefineImplicitLambdaToFunctionPointerConversion(), clang::ODRDiagsEmitter::diagnoseMismatch(), getNameForDiagnostic(), and isTemplate().
const ASTTemplateArgumentListInfo * FunctionDecl::getTemplateSpecializationArgsAsWritten | ( | ) | const |
Retrieve the template argument list as written in the sources, if any.
If this function declaration is not a function template specialization or if it had no explicit template argument list, returns NULL. Note that it an explicit template argument list may be written empty, e.g., template<> void foo<>(char* s);
Definition at line 4174 of file Decl.cpp.
Referenced by clang::Sema::ActOnEndOfTranslationUnit().
FunctionTemplateSpecializationInfo * FunctionDecl::getTemplateSpecializationInfo | ( | ) | const |
If this function is actually a function template specialization, retrieve information about this function template specialization.
Otherwise, returns NULL.
Definition at line 4158 of file Decl.cpp.
Referenced by clang::Sema::ActOnStartOfFunctionDef(), getExplicitVisibilityAux(), clang::ASTNodeImporter::ImportFunctionTemplateWithTemplateArgsFromSpecialization(), clang::ASTNodeImporter::ImportTemplateInformation(), clang::Sema::MergeFunctionDecl(), and clang::ASTDeclReader::VisitFunctionDecl().
TemplateSpecializationKind FunctionDecl::getTemplateSpecializationKind | ( | ) | const |
Determine what kind of template instantiation this function represents.
Definition at line 4252 of file Decl.cpp.
References clang::Decl::FOK_None, clang::Decl::getFriendObjectKind(), clang::TSK_ExplicitSpecialization, and clang::TSK_Undeclared.
Referenced by clang::Sema::ActOnConversionDeclarator(), clang::Sema::ActOnExplicitInstantiation(), basicGVALinkageForFunction(), clang::Sema::CheckCXXDefaultArguments(), clang::Sema::CheckMemberSpecialization(), clang::Sema::DefineUsedVTables(), getTemplateInstantiationPattern(), clang::installapi::getVTableLinkage(), clang::CodeGen::CodeGenModule::getVTableLinkage(), clang::installapi::hasVTable(), clang::ASTNodeImporter::ImportTemplateInformation(), IsOverloadOrOverrideImpl(), isTemplateInstantiation(), and clang::Sema::MergeCXXFunctionDecl().
TemplateSpecializationKind FunctionDecl::getTemplateSpecializationKindForInstantiation | ( | ) | const |
Determine the kind of template specialization this function represents for the purpose of template instantiation.
Definition at line 4275 of file Decl.cpp.
References clang::Decl::FOK_None, clang::Decl::getFriendObjectKind(), clang::TSK_ExplicitSpecialization, and clang::TSK_Undeclared.
Referenced by isImplicitlyInstantiable().
|
inlineoverridevirtual |
Returns true if this Decl
represents a declaration for a body of code, such as a function or method definition.
Note that hasBody
can also return true if any redeclaration of this Decl
represents a declaration for a body of code.
Reimplemented from clang::Decl.
Definition at line 2185 of file Decl.h.
References clang::Definition, and hasBody().
Referenced by doesDeclarationForceExternallyVisibleDefinition(), getBody(), hasBody(), and isInlineBuiltinDeclaration().
bool FunctionDecl::hasBody | ( | const FunctionDecl *& | Definition | ) | const |
Returns true if the function has a body.
The function body might be in any of the (re-)declarations of this function. The variant that accepts a FunctionDecl pointer will set that function declaration to the actual declaration containing the body (if there is one).
Definition at line 3144 of file Decl.cpp.
References clang::Definition, and clang::Redeclarable< FunctionDecl >::redecls().
Referenced by clang::Sema::BuildResolvedCallExpr(), clang::interp::CheckCallable(), clang::interp::ByteCodeEmitter::compileFunc(), ComputeDefaultedComparisonExceptionSpec(), clang::Sema::DefineUsedVTables(), DelegatingCycleHelper(), clang::Sema::DiagnoseImmediateEscalatingReason(), DiagnoseInvalidRedeclaration(), clang::CodeGen::CodeGenModule::getVTableLinkage(), clang::ASTNodeImporter::ImportDeclParts(), isImplicitlyInstantiable(), isOutOfLine(), and clang::CodeGen::CodeGenVTables::isVTableExternal().
bool FunctionDecl::hasCXXExplicitFunctionObjectParameter | ( | ) | const |
Definition at line 3717 of file Decl.cpp.
References getNumParams(), getParamDecl(), and clang::ParmVarDecl::isExplicitObjectParameter().
Referenced by clang::Sema::AddSurrogateCandidate(), clang::Sema::CheckExplicitlyDefaultedComparison(), clang::Sema::CheckFunctionCall(), clang::Sema::CheckNonDependentConversions(), clang::Sema::CheckOverloadedOperatorDeclaration(), clang::Sema::CheckOverridingFunctionExceptionSpec(), clang::Sema::ConvertArgumentsForCall(), clang::Sema::DefineImplicitLambdaToFunctionPointerConversion(), clang::Sema::FunctionNonObjectParamTypesAreEqual(), getMinRequiredExplicitArguments(), getNonObjectParameter(), getNumNonObjectParams(), clang::CXXMethodDecl::isExplicitObjectMemberFunction(), and clang::CXXMethodDecl::isImplicitObjectMemberFunction().
|
inline |
Whether falling off this function implicitly returns null/zero.
If a more specific implicit return value is required, front-ends should synthesize the appropriate return statements.
Definition at line 2353 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::ActOnFinishFunctionBody().
|
inline |
Whether this function inherited its prototype from a previous declaration.
Definition at line 2384 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by hasPrototype(), and clang::Sema::MergeFunctionDecl().
bool FunctionDecl::hasOneParamOrDefaultArgs | ( | ) | const |
Determine whether this function has a single parameter, or multiple parameters where all but the first have default arguments.
This notion is used in the definition of copy/move constructors and initializer list constructors. Note that, unlike getMinRequiredArguments, parameter packs are not treated specially here.
Definition at line 3731 of file Decl.cpp.
References getNumParams(), P, and parameters().
Referenced by clang::CXXConstructorDecl::isCopyOrMoveConstructor(), clang::Sema::isInitListConstructor(), and clang::CXXConstructorDecl::isSpecializationCopyingObject().
|
inline |
Whether this function has a prototype, either because one was explicitly written or because it was "inherited" by merging a declaration without a prototype with a declaration that has a prototype.
Definition at line 2368 of file Decl.h.
References hasInheritedPrototype(), and hasWrittenPrototype().
Referenced by clang::Sema::BuildResolvedCallExpr(), castArgToParamTypeIfNeeded(), clang::Sema::DeclClonePragmaWeak(), and clang::Sema::MergeFunctionDecl().
|
inline |
True if the function was a definition but its body was skipped.
Definition at line 2552 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::ActOnFinishFunctionBody(), clang::Sema::getEmissionStatus(), clang::Sema::InstantiateFunctionDefinition(), and isThisDeclarationADefinition().
bool FunctionDecl::hasTrivialBody | ( | ) | const |
Returns whether the function has a trivial body that does not require any specific codegen.
Definition at line 3155 of file Decl.cpp.
References getBody().
Referenced by CanSkipVTablePointerInitialization(), HasTrivialDestructorBody(), clang::SemaCUDA::isEmptyConstructor(), and clang::SemaCUDA::isEmptyDestructor().
|
inline |
Whether this function has a written prototype.
Definition at line 2373 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::ActOnFinishFunctionBody(), Create(), hasPrototype(), and clang::Sema::MergeFunctionDecl().
|
inline |
Whether the instantiation of this function is pending.
This bit is set when the decision to instantiate this function is made and unset if and when the function body is created. That leaves out cases where instantiation did not happen because the template definition was not seen in this TU. This bit remains set in those cases, under the assumption that the instantiation will happen in some other TU.
Definition at line 2432 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
|
inline |
Definition at line 2407 of file Decl.h.
References clang::Consteval, and getConstexprKind().
Referenced by clang::Sema::ActOnStartOfFunctionDef(), clang::SemaOpenMP::ActOnStartOfFunctionDefinitionInOpenMPDeclareVariantScope(), clang::Sema::ActOnStartOfLambdaDefinition(), clang::Sema::areMultiversionVariantFunctionsCompatible(), clang::Sema::BuildReturnStmt(), CheckConstexprDeclStmt(), CheckConstexprFunctionBody(), CheckConstexprFunctionStmt(), CheckConstexprMissingReturn(), CheckConstexprParameterTypes(), CheckConstexprReturnType(), clang::Sema::CheckExplicitlyDefaultedComparison(), clang::Sema::CheckExplicitlyDefaultedSpecialMember(), clang::Sema::CheckImmediateEscalatingFunctionDefinition(), clang::Sema::CheckMain(), clang::Sema::DiagnoseImmediateEscalatingReason(), EvaluateAndDiagnoseImmediateInvocation(), handleMSConstexprAttr(), isImmediateEscalating(), isImmediateFunction(), and IsOverloadOrOverrideImpl().
|
inline |
Whether this is a (C++11) constexpr function or constexpr constructor.
Definition at line 2395 of file Decl.h.
References getConstexprKind(), and clang::Unspecified.
Referenced by clang::Sema::ActOnFinishFunctionBody(), clang::SemaOpenMP::ActOnStartOfFunctionDefinitionInOpenMPDeclareVariantScope(), clang::Sema::areMultiversionVariantFunctionsCompatible(), clang::Sema::BuildLambdaExpr(), clang::Sema::BuildReturnStmt(), clang::interp::CheckCallable(), CheckConstexprFunction(), clang::Sema::CheckExplicitlyDefaultedComparison(), clang::Sema::CheckExplicitlyDefaultedSpecialMember(), clang::Sema::CheckFunctionDeclaration(), clang::Sema::CheckMain(), CheckTrivialDefaultConstructor(), clang::interp::ByteCodeEmitter::compileFunc(), clang::CodeGen::CodeGenModule::EmitGlobal(), clang::Sema::findInheritingConstructor(), clang::extractapi::DeclarationFragmentsBuilder::getFragmentsForCXXMethod(), clang::Sema::InstantiateClass(), IsOverloadOrOverrideImpl(), clang::Sema::MarkVirtualMembersReferenced(), clang::SemaCUDA::maybeAddHostDeviceAttrs(), specialMemberIsConstexpr(), and clang::JSONNodeDumper::VisitFunctionDecl().
|
inline |
Definition at line 2404 of file Decl.h.
References clang::Constexpr, and getConstexprKind().
Referenced by handleMSConstexprAttr(), and isImmediateEscalating().
bool FunctionDecl::isCPUDispatchMultiVersion | ( | ) | const |
True if this function is a multiversioned dispatch function as a part of the cpu_specific/cpu_dispatch functionality.
Definition at line 3558 of file Decl.cpp.
References isMultiVersion().
Referenced by clang::Sema::ActOnFunctionDeclarator(), CheckFallThroughForBody(), and IsCPUDispatchCPUSpecificMultiVersion().
bool FunctionDecl::isCPUSpecificMultiVersion | ( | ) | const |
True if this function is a multiversioned processor specific function as a part of the cpu_specific/cpu_dispatch functionality.
Definition at line 3562 of file Decl.cpp.
References isMultiVersion().
Referenced by clang::Sema::ActOnFunctionDeclarator(), and IsCPUDispatchCPUSpecificMultiVersion().
|
inline |
Whether this function is defaulted.
Valid for e.g. special member functions, defaulted comparisions (not methods!).
Definition at line 2310 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::ActOnFinishFunctionBody(), clang::Sema::AddMethodCandidate(), clang::Sema::areMultiversionVariantFunctionsCompatible(), checkMoveAssignmentForRepeatedMove(), clang::Sema::DefineDefaultedComparison(), clang::Sema::DefineImplicitCopyAssignment(), clang::Sema::DefineImplicitMoveAssignment(), clang::Sema::DiagnoseDeletedDefaultedFunction(), clang::Sema::diagnoseZeroToNullptrConversion(), HandleFunctionCall(), clang::Sema::InstantiateFunctionDefinition(), isDeletedAsWritten(), isImmediateEscalating(), clang::Sema::isImplicitlyDeleted(), IsStructurallyEquivalent(), isThisDeclarationADefinition(), clang::Sema::SetDeclDefaulted(), TryValueInitialization(), clang::interp::Compiler< Emitter >::VisitCXXConstructExpr(), clang::JSONNodeDumper::VisitFunctionDecl(), and clang::ASTDeclReader::VisitFunctionDecl().
|
inline |
Definition at line 2208 of file Decl.h.
References clang::Definition, and isDefined().
Referenced by getDefinition(), getTemplateInstantiationPattern(), and isDefined().
bool FunctionDecl::isDefined | ( | const FunctionDecl *& | Definition, |
bool | CheckForPendingFriendDefinition = false |
||
) | const |
Returns true if the function has a definition that does not need to be instantiated.
The variant that accepts a FunctionDecl pointer will set that function declaration to the declaration that is a definition (if there is one).
CheckForPendingFriendDefinition | If true , also check for friend declarations that were instantiated from function definitions. Such a declaration behaves as if it is a definition for the purpose of redefinition checking, but isn't actually a "real" definition until its body is instantiated. |
Definition at line 3191 of file Decl.cpp.
References clang::Definition, and clang::Redeclarable< FunctionDecl >::redecls().
Referenced by clang::Sema::ActOnFinishFunctionBody(), clang::interp::CheckCallable(), clang::Sema::CheckForFunctionRedefinition(), clang::interp::ByteCodeEmitter::compileFunc(), clang::Sema::FinishTemplateArgumentDeduction(), getMethodBody(), clang::CXXMethodDecl::hasInlineBody(), clang::TemplateDeclInstantiator::InitFunctionInstantiation(), clang::SemaCUDA::isEmptyConstructor(), clang::SemaCUDA::isEmptyDestructor(), clang::Sema::isUnavailableAlignedAllocationFunction(), clang::Sema::MarkVTableUsed(), clang::Sema::MergeCXXFunctionDecl(), clang::Sema::MergeFunctionDecl(), and clang::Sema::PerformPendingInstantiations().
|
inline |
Whether this function has been deleted.
A function that is "deleted" (via the C++0x "= delete" syntax) acts like a normal function, except that it cannot actually be called or have its address taken. Deleted functions are typically used in C++ overload resolution to attract arguments whose type or lvalue/rvalue-ness would permit the use of a different overload that would behave incorrectly. For example, one might use deleted functions to ban implicit conversion from a floating-point number to an Integer type:
Definition at line 2465 of file Decl.h.
References clang::DeclContext::FunctionDeclBits, and getCanonicalDecl().
Referenced by clang::Sema::ActOnEndOfTranslationUnit(), clang::Sema::ActOnFinishFunctionBody(), clang::Sema::AddMethodCandidate(), clang::Sema::areMultiversionVariantFunctionsCompatible(), clang::Sema::checkClassLevelDLLAttribute(), clang::Sema::CheckCompletedCXXClass(), clang::Sema::CheckCXXThrowOperand(), clang::Sema::CheckMemberSpecialization(), clang::Sema::DefineDefaultedComparison(), clang::Sema::DefineImplicitCopyAssignment(), clang::Sema::DefineImplicitMoveAssignment(), clang::Sema::DiagnoseDeletedDefaultedFunction(), EvaluateUnaryTypeTrait(), clang::Sema::FindDeallocationFunction(), clang::Sema::findInheritingConstructor(), clang::Sema::isImplicitlyDeleted(), IsStructurallyEquivalent(), clang::Sema::LookupSpecialMember(), clang::Sema::MarkVTableUsed(), ShouldWarnAboutMissingPrototype(), TryValueInitialization(), and clang::JSONNodeDumper::VisitFunctionDecl().
|
inline |
Definition at line 2469 of file Decl.h.
References clang::DeclContext::FunctionDeclBits, and isDefaulted().
Referenced by clang::Sema::ActOnFinishFunctionBody(), clang::ODRDiagsEmitter::diagnoseMismatch(), isThisDeclarationADefinition(), setDeletedAsWritten(), clang::JSONNodeDumper::VisitFunctionDecl(), and clang::ASTDeclReader::VisitFunctionDecl().
bool FunctionDecl::isDestroyingOperatorDelete | ( | ) | const |
Determine whether this is a destroying operator delete.
Definition at line 3460 of file Decl.cpp.
References clang::Type::getAsCXXRecordDecl(), getNumParams(), getOverloadedOperator(), getParamDecl(), clang::ValueDecl::getType(), and clang::Decl::isInStdNamespace().
Referenced by CheckOperatorDeleteDeclaration(), EmitObjectDelete(), getUsualDeleteParams(), and clang::CXXMethodDecl::isUsualDeallocationFunction().
|
inline |
Whether this function is explicitly defaulted.
Definition at line 2314 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::CheckExplicitlyDefaultedFunction(), clang::Sema::CheckExplicitlyDefaultedSpecialMember(), clang::ODRDiagsEmitter::diagnoseMismatch(), findImplicitlyDeclaredEqualityComparisons(), getDefaultLoc(), clang::Sema::MergeFunctionDecl(), setDefaultLoc(), and clang::ASTDeclReader::VisitFunctionDecl().
bool FunctionDecl::isExternC | ( | ) | const |
Determines whether this function is a function with external, C linkage.
Definition at line 3478 of file Decl.cpp.
References isDeclExternC().
Referenced by clang::Sema::ActOnFunctionDeclarator(), clang::Sema::AddKnownFunctionAttributes(), clang::Sema::areMultiversionVariantFunctionsCompatible(), clang::Sema::CheckEquivalentExceptionSpec(), clang::Sema::CheckFunctionDeclaration(), clang::Sema::CheckLiteralOperatorDeclaration(), funcHasParameterSizeMangling(), clang::Sema::GatherArgumentsForCall(), getMemoryFunctionKind(), isMain(), and clang::Sema::ProcessPragmaWeak().
bool FunctionDecl::isFunctionTemplateSpecialization | ( | ) | const |
Determine whether this function is a function template specialization.
Definition at line 4040 of file Decl.cpp.
Referenced by clang::Sema::ActOnStartCXXMemberReference(), clang::Sema::DeclareImplicitDeductionGuides(), clang::Sema::getMoreConstrainedFunction(), clang::Sema::getTopMostPointOfInstantiation(), clang::isGenericLambdaCallOperatorSpecialization(), clang::SemaCUDA::maybeAddHostDeviceAttrs(), clang::Sema::mergeCodeSegAttr(), clang::Sema::MergeCXXFunctionDecl(), clang::Sema::MergeFunctionDecl(), clang::Sema::mergeSectionAttr(), and ShouldWarnAboutMissingPrototype().
bool FunctionDecl::isGlobal | ( | ) | const |
Determines whether this is a global function.
Definition at line 3492 of file Decl.cpp.
References getCanonicalDecl(), clang::Decl::getDeclContext(), clang::DeclContext::getParent(), getStorageClass(), clang::DeclContext::isNamespace(), and clang::SC_Static.
Referenced by ShouldWarnAboutMissingPrototype(), and clang::CallGraph::VisitFunctionDecl().
bool FunctionDecl::isImmediateEscalating | ( | ) | const |
Definition at line 3256 of file Decl.cpp.
References getTemplatedKind(), isConsteval(), isConstexprSpecified(), isDefaulted(), clang::isLambdaCallOperator(), TK_DependentNonTemplate, and TK_NonTemplate.
Referenced by clang::Sema::ActOnStartOfFunctionDef(), clang::Sema::ActOnStartOfLambdaDefinition(), clang::Sema::CheckIfFunctionSpecializationIsImmediate(), clang::Sema::CheckImmediateEscalatingFunctionDefinition(), clang::Sema::DiagnoseImmediateEscalatingReason(), and isImmediateFunction().
bool FunctionDecl::isImmediateFunction | ( | ) | const |
Definition at line 3276 of file Decl.cpp.
References BodyContainsImmediateEscalatingExpressions(), isConsteval(), and isImmediateEscalating().
Referenced by clang::Sema::BuildCXXDefaultArgExpr(), clang::Sema::CheckCXXDefaultArgExpr(), clang::Sema::CheckImmediateEscalatingFunctionDefinition(), clang::CodeGen::CodeGenModule::EmitTopLevelDecl(), EvaluateAndDiagnoseImmediateInvocation(), clang::VTableContextBase::hasVtableSlot(), and clang::JSONNodeDumper::VisitFunctionDecl().
bool FunctionDecl::isImplicitlyInstantiable | ( | ) | const |
Determines whether this function is a function template specialization or a member of a class template specialization that can be implicitly instantiated.
Definition at line 4057 of file Decl.cpp.
References getTemplateInstantiationPattern(), getTemplateSpecializationKindForInstantiation(), hasBody(), isInlined(), clang::Decl::isInvalidDecl(), clang::TSK_ExplicitInstantiationDeclaration, clang::TSK_ExplicitInstantiationDefinition, clang::TSK_ExplicitSpecialization, clang::TSK_ImplicitInstantiation, and clang::TSK_Undeclared.
|
inline |
Definition at line 2343 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
bool FunctionDecl::isInExternCContext | ( | ) | const |
Determines whether this function's context is, or is nested within, a C++ extern "C" linkage spec.
Definition at line 3482 of file Decl.cpp.
References clang::Decl::getLexicalDeclContext(), and clang::DeclContext::isExternCContext().
bool FunctionDecl::isInExternCXXContext | ( | ) | const |
Determines whether this function's context is, or is nested within, a C++ extern "C++" linkage spec.
Definition at line 3488 of file Decl.cpp.
References clang::Decl::getLexicalDeclContext(), and clang::DeclContext::isExternCXXContext().
bool FunctionDecl::isInlineBuiltinDeclaration | ( | ) | const |
Determine if this function provides an inline implementation of a builtin.
Definition at line 3435 of file Decl.cpp.
References clang::Definition, clang::Decl::getASTContext(), getBuiltinID(), clang::ASTContext::GetGVALinkageForFunction(), clang::GVA_AvailableExternally, clang::GVA_DiscardableODR, clang::GVA_Internal, clang::GVA_StrongExternal, clang::GVA_StrongODR, and hasBody().
|
inline |
Determine whether this function should be inlined, because it is either marked "inline" or "constexpr" or is a member function of a class that was defined in the class body.
Definition at line 2793 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::ActOnFinishFunctionBody(), clang::Sema::ActOnStartOfFunctionDef(), basicGVALinkageForFunction(), clang::Sema::checkClassLevelDLLAttribute(), clang::Sema::DefineUsedVTables(), diagnoseUseOfInternalDeclInInlineFunction(), clang::CodeGen::CGDebugInfo::EmitFuncDeclForCallSite(), clang::CodeGen::CodeGenModule::getVTableLinkage(), handleDLLAttr(), clang::Sema::InstantiateFunctionDefinition(), clang::ento::CheckerContext::isCLibraryFunction(), isFunctionDefinitionDiscarded(), isImplicitlyInstantiable(), isInlineDefinitionExternallyVisible(), isMSExternInline(), clang::Sema::MergeCXXFunctionDecl(), clang::Sema::MergeFunctionDecl(), clang::CodeGen::CodeGenModule::SetLLVMFunctionAttributesForDefinition(), setPreviousDeclaration(), ShouldWarnAboutMissingPrototype(), and useInlineVisibilityHidden().
bool FunctionDecl::isInlineDefinitionExternallyVisible | ( | ) | const |
For an inline function definition in C, or for a gnu_inline function in C++, determine whether the definition will be externally visible.
Inline function definitions are always available for inlining optimizations. However, depending on the language dialect, declaration specifiers, and attributes, the definition of an inline function may or may not be "externally" visible to other translation units in the program.
In C99, inline definitions are not externally visible by default. However, if even one of the global-scope declarations is marked "extern inline", the inline definition becomes externally visible (C99 6.7.4p6).
In GNU89 mode, or if the gnu_inline attribute is attached to the function definition, we use the GNU semantics for inline, which are nearly the opposite of C99 semantics. In particular, "inline" by itself will create an externally visible symbol, but "extern inline" will not create an externally visible symbol.
Definition at line 3913 of file Decl.cpp.
References doesThisDeclarationHaveABody(), clang::Decl::getASTContext(), clang::ASTContext::getLangOpts(), getStorageClass(), isInlined(), isInlineSpecified(), RedeclForcesDefC99(), clang::Redeclarable< FunctionDecl >::redecls(), clang::SC_Extern, and willHaveBody().
Referenced by basicGVALinkageForFunction().
|
inline |
Determine whether the "inline" keyword was specified for this function.
Definition at line 2771 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::areMultiversionVariantFunctionsCompatible(), canRedefineFunction(), clang::Sema::CheckMain(), computeKeyFunction(), Create(), clang::ODRDiagsEmitter::diagnoseMismatch(), doesDeclarationForceExternallyVisibleDefinition(), FunctionDecl(), handleGlobalAttr(), isInlineDefinitionExternallyVisible(), clang::Sema::MergeCXXFunctionDecl(), RedeclForcesDefC99(), and clang::JSONNodeDumper::VisitFunctionDecl().
|
inline |
Whether this templated function will be late parsed.
Definition at line 2289 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::ActOnStartOfFunctionDef(), doesThisDeclarationHaveABody(), and clang::Sema::InstantiateFunctionDefinition().
bool FunctionDecl::isMain | ( | ) | const |
Determines whether this function is "main", which is the entry point into an executable program.
Definition at line 3294 of file Decl.cpp.
References clang::Decl::getDeclContext(), clang::Decl::getLangOpts(), clang::DeclContext::getRedeclContext(), isExternC(), isNamed(), and clang::DeclContext::isTranslationUnit().
Referenced by clang::Sema::ActOnFunctionDeclarator(), clang::Sema::BuildReturnStmt(), CheckMultiVersionFunction(), and IsOverloadOrOverrideImpl().
bool FunctionDecl::isMemberLikeConstrainedFriend | ( | ) | const |
Determine whether a function is a friend function that cannot be redeclared outside of its class, per C++ [temp.friend]p9.
Definition at line 3522 of file Decl.cpp.
References FriendConstraintRefersToEnclosingTemplate(), getDescribedFunctionTemplate(), clang::Decl::getFriendObjectKind(), and clang::DeclaratorDecl::getTrailingRequiresClause().
Referenced by IsOverloadOrOverrideImpl().
bool FunctionDecl::isMSExternInline | ( | ) | const |
The combination of the extern and inline keywords under MSVC forces the function to be required.
Note: This function assumes that we will only get called when isInlined() would return true for this FunctionDecl.
Definition at line 3743 of file Decl.cpp.
References clang::Decl::getASTContext(), clang::TargetInfo::getCXXABI(), clang::Redeclarable< FunctionDecl >::getMostRecentDecl(), clang::Redeclarable< decl_type >::getPreviousDecl(), clang::ASTContext::getTargetInfo(), isInlined(), clang::TargetCXXABI::isMicrosoft(), and clang::SC_Extern.
Referenced by basicGVALinkageForFunction().
bool FunctionDecl::isMSVCRTEntryPoint | ( | ) | const |
Determines whether this function is a MSVCRT user defined entry point.
Definition at line 3300 of file Decl.cpp.
References clang::TranslationUnitDecl::getASTContext(), clang::Decl::getDeclContext(), clang::NamedDecl::getIdentifier(), clang::NamedDecl::getName(), clang::DeclContext::getRedeclContext(), clang::ASTContext::getTargetInfo(), and clang::TargetInfo::getTriple().
Referenced by clang::Sema::ActOnFunctionDeclarator(), IsOverloadOrOverrideImpl(), and ShouldWarnAboutMissingPrototype().
|
inline |
True if this function is considered a multiversioned function.
Definition at line 2562 of file Decl.h.
References clang::DeclContext::FunctionDeclBits, and getCanonicalDecl().
Referenced by clang::Sema::ActOnFinishFunctionBody(), clang::Sema::ActOnFunctionDeclarator(), CheckDeclarationCausesMultiVersioning(), CheckMultiVersionAdditionalDecl(), CheckMultiVersionFunction(), clang::CodeGen::CodeGenModule::EmitGlobal(), clang::ASTContext::forEachMultiversionedFunctionVersion(), clang::CodeGen::CodeGenModule::getLLVMLinkageForDeclarator(), isBetterMultiversionCandidate(), isCPUDispatchMultiVersion(), isCPUSpecificMultiVersion(), isNonViableMultiVersionOverload(), isTargetClonesMultiVersion(), isTargetMultiVersion(), isTargetMultiVersionDefault(), isTargetVersionMultiVersion(), and noteOverloads().
bool FunctionDecl::isNoReturn | ( | ) | const |
Determines whether this function is known to be 'noreturn', through an attribute on its declaration or its type.
Definition at line 3511 of file Decl.cpp.
References clang::ValueDecl::getType().
Referenced by clang::Sema::BuildReturnStmt().
|
overridevirtual |
Determine whether this is or was instantiated from an out-of-line definition of a member function.
Reimplemented from clang::Decl.
Definition at line 4358 of file Decl.cpp.
References clang::Definition, getInstantiatedFromMemberFunction(), getPrimaryTemplate(), hasBody(), and clang::Decl::isOutOfLine().
Referenced by clang::Sema::ActOnFinishFunctionBody(), clang::Sema::ActOnFunctionDeclarator(), clang::CXXMethodDecl::hasInlineBody(), and clang::Sema::MergeFunctionDecl().
|
inline |
Whether this function declaration represents an C++ overloaded operator, e.g., "operator+".
Definition at line 2805 of file Decl.h.
References getOverloadedOperator(), and clang::OO_None.
Referenced by clang::Sema::ActOnFunctionDeclarator(), clang::Sema::CheckFunctionDeclaration(), clang::Sema::CheckOverloadedOperatorDeclaration(), clang::Sema::DefineImplicitCopyAssignment(), clang::Sema::DefineImplicitMoveAssignment(), DiagnoseShiftCompare(), isStdOstreamOperatorCall(), IsStructurallyEquivalent(), and printMemFnName().
|
inline |
Whether this virtual function is pure, i.e.
makes the containing class abstract.
Definition at line 2285 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::ActOnFinishFunctionBody(), clang::interp::CheckPure(), clang::ODRDiagsEmitter::diagnoseMismatch(), clang::CXXMethodDecl::getDevirtualizedMethod(), IsStructurallyEquivalent(), clang::CXXMethodDecl::isVirtual(), clang::Sema::MarkVirtualMembersReferenced(), clang::Sema::MergeCompatibleFunctionDecls(), and clang::JSONNodeDumper::VisitFunctionDecl().
bool FunctionDecl::isReplaceableGlobalAllocationFunction | ( | std::optional< unsigned > * | AlignmentParam = nullptr , |
bool * | IsNothrow = nullptr |
||
) | const |
Determines whether this function is one of the replaceable global allocation functions: void *operator new(size_t); void *operator new(size_t, const std::nothrow_t &) noexcept; void *operator new[](size_t); void *operator new[](size_t, const std::nothrow_t &) noexcept; void operator delete(void *) noexcept; void operator delete(void *, std::size_t) noexcept; [C++1y] void operator delete(void *, const std::nothrow_t &) noexcept; void operator delete[](void *) noexcept; void operator delete[](void *, std::size_t) noexcept; [C++1y] void operator delete[](void *, const std::nothrow_t &) noexcept; These functions have special behavior under C++1y [expr.new]: An implementation is allowed to omit a call to a replaceable global allocation function.
[...]
If this function is an aligned allocation/deallocation function, return the parameter number of the requested alignment through AlignmentParam.
If this function is an allocation/deallocation function that takes the std::nothrow_t
tag, return true through IsNothrow,
Definition at line 3352 of file Decl.cpp.
References clang::Type::castAs(), clang::Qualifiers::Const, clang::DeclarationName::CXXOperatorName, clang::Type::getAs(), clang::Decl::getASTContext(), clang::QualType::getCVRQualifiers(), clang::Decl::getDeclContext(), clang::NamedDecl::getDeclName(), clang::ASTContext::getLangOpts(), clang::Type::getPointeeType(), clang::DeclContext::getRedeclContext(), clang::ASTContext::getSizeType(), clang::ValueDecl::getType(), clang::ASTContext::hasSameType(), clang::Type::isAlignValT(), clang::Type::isEnumeralType(), clang::Type::isNothrowT(), clang::QualType::isNull(), clang::Type::isReferenceType(), clang::IdentifierInfo::isStr(), clang::DeclContext::isTranslationUnit(), and clang::T.
Referenced by clang::Sema::ActOnFunctionDeclarator(), clang::Sema::AddKnownFunctionAttributesForReplaceableGlobalAllocationFunction(), clang::Sema::CheckEquivalentExceptionSpec(), EmitNewDeleteCall(), clang::Sema::isUnavailableAlignedAllocationFunction(), resolveBuiltinNewDeleteOverload(), and clang::ento::ExprEngine::VisitCXXNewExpr().
bool FunctionDecl::isReservedGlobalPlacementOperator | ( | ) | const |
Determines whether this operator new or delete is one of the reserved global placement operators: void *operator new(size_t, void *); void *operator new[](size_t, void *); void operator delete(void *, void *); void operator delete[](void *, void *); These functions have special behavior under [new.delete.placement]: These functions are reserved, a C++ program may not define functions that displace the versions in the Standard C++ library.
The provisions of [basic.stc.dynamic] do not apply to these reserved placement forms of operator new and operator delete.
This function must be an allocation or deallocation function.
Definition at line 3327 of file Decl.cpp.
References clang::Type::castAs(), clang::DeclarationName::CXXOperatorName, clang::Decl::getDeclContext(), clang::NamedDecl::getDeclName(), clang::DeclContext::getRedeclContext(), clang::ValueDecl::getType(), clang::DeclContext::isTranslationUnit(), and clang::ASTContext::VoidPtrTy.
Referenced by clang::CXXNewExpr::shouldNullCheckAllocation(), and clang::ento::ExprEngine::VisitCXXNewExpr().
|
inline |
Definition at line 2801 of file Decl.h.
References getStorageClass(), and clang::SC_Static.
Referenced by clang::Sema::CanBeGetReturnTypeOnAllocFailure(), clang::Sema::CheckFunctionCall(), clang::Sema::DefineImplicitLambdaToFunctionPointerConversion(), and clang::CodeGen::CGDebugInfo::EmitFuncDeclForCallSite().
bool FunctionDecl::isTargetClonesMultiVersion | ( | ) | const |
True if this function is a multiversioned dispatch function as a part of the target-clones functionality.
Definition at line 3580 of file Decl.cpp.
References isMultiVersion().
bool FunctionDecl::isTargetMultiVersion | ( | ) | const |
True if this function is a multiversioned dispatch function as a part of the target functionality.
Definition at line 3566 of file Decl.cpp.
References isMultiVersion().
Referenced by isNonViableMultiVersionOverload().
bool FunctionDecl::isTargetMultiVersionDefault | ( | ) | const |
True if this function is the default version of a multiversioned dispatch function as a part of the target functionality.
Definition at line 3571 of file Decl.cpp.
References isMultiVersion().
Referenced by isNonViableMultiVersionOverload().
bool FunctionDecl::isTargetVersionMultiVersion | ( | ) | const |
True if this function is a multiversioned dispatch function as a part of the target-version functionality.
Definition at line 3584 of file Decl.cpp.
References isMultiVersion().
bool FunctionDecl::isTemplateInstantiation | ( | ) | const |
Determines if the given function was instantiated from a function template.
Definition at line 4092 of file Decl.cpp.
References getTemplateSpecializationKind(), and clang::isTemplateInstantiation().
Referenced by clang::Sema::ActOnStartOfFunctionDef(), clang::Sema::BuildOverloadedCallExpr(), clang::Sema::CheckExplicitlyDefaultedSpecialMember(), clang::SemaCUDA::isEmptyConstructor(), and clang::SemaCUDA::isEmptyDestructor().
|
inline |
Returns whether this specific declaration of the function is also a definition that does not contain uninstantiated body.
This does not determine whether the function has been defined (e.g., in a previous definition); for that information, use isDefined.
Note: the function declaration does not become a definition until the parser reaches the definition, if called before, this function will return false
.
Definition at line 2246 of file Decl.h.
References doesThisDeclarationHaveABody(), clang::Decl::hasDefiningAttr(), hasSkippedBody(), isDefaulted(), isDeletedAsWritten(), and willHaveBody().
Referenced by clang::Sema::ActOnStartOfFunctionDef(), clang::Sema::CheckImplicitSpecialMemberDeclaration(), handleAliasAttr(), handleIFuncAttr(), clang::Sema::InstantiateFunctionDefinition(), clang::FunctionTemplateDecl::isThisDeclarationADefinition(), clang::Sema::MergeFunctionDecl(), clang::TemplateDeclInstantiator::VisitCXXMethodDecl(), and clang::CallGraph::VisitFunctionDecl().
bool FunctionDecl::isThisDeclarationInstantiatedFromAFriendDefinition | ( | ) | const |
Determine whether this specific declaration of the function is a friend declaration that was instantiated from a function definition.
Such declarations behave like definitions in some contexts.
Definition at line 3168 of file Decl.cpp.
References getDescribedFunctionTemplate(), clang::Decl::getFriendObjectKind(), getInstantiatedFromMemberFunction(), and clang::FunctionTemplateDecl::getInstantiatedFromMemberTemplate().
Referenced by clang::Sema::ActOnStartOfFunctionDef(), clang::Sema::InstantiateFunctionDefinition(), and clang::Sema::MergeCXXFunctionDecl().
|
inline |
Whether this function is "trivial" in some specialized C++ senses.
Can only be true for default constructors, copy constructors, copy assignment operators, and destructors. Not meaningful until the class has been fully built by Sema.
Definition at line 2302 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::CXXRecordDecl::addedEligibleSpecialMemberFunction(), clang::Sema::BuildExceptionDeclaration(), buildSingleCopyAssignRecursively(), clang::Sema::checkClassLevelDLLAttribute(), clang::Sema::CheckCXXThrowOperand(), checkMoveAssignmentForRepeatedMove(), CheckTrivialDefaultConstructor(), findTrivialSpecialMember(), GetDiagForGotoScopeDecl(), HandleDestructionImpl(), HandleFunctionCall(), clang::Expr::HasSideEffects(), clang::Expr::isConstantInitializer(), clang::SemaCUDA::isEmptyConstructor(), clang::SemaCUDA::isEmptyDestructor(), isTrivialObjectAssignment(), clang::Sema::MergeFunctionDecl(), clang::interp::runRecordDestructor(), ShouldDiagnoseUnusedDecl(), clang::CodeGen::ConstantEmitter::tryEmitPrivateForVarInit(), clang::interp::Compiler< Emitter >::VisitCXXConstructExpr(), and clang::interp::Compiler< Emitter >::VisitCXXInheritedCtorInitExpr().
|
inline |
Definition at line 2305 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::CXXRecordDecl::addedEligibleSpecialMemberFunction(), and findTrivialSpecialMember().
|
inline |
True if this method is user-declared and was not deleted or defaulted on its first declaration.
Definition at line 2335 of file Decl.h.
References getTemplateInstantiationPattern().
Referenced by clang::CXXRecordDecl::addedEligibleSpecialMemberFunction(), basicGVALinkageForFunction(), checkTrivialSubobjectCall(), diagnoseDeprecatedCopyOperation(), EvaluateUnaryTypeTrait(), findTrivialSpecialMember(), clang::Sema::RequireLiteralType(), and clang::Sema::SpecialMemberIsTrivial().
bool FunctionDecl::isVariadic | ( | ) | const |
Whether this function is variadic.
Definition at line 3077 of file Decl.cpp.
References clang::ValueDecl::getType().
Referenced by clang::Sema::ActOnFunctionDeclarator(), clang::Sema::BuildBlockForLambdaConversion(), canEmitDelegateCallArgs(), clang::Sema::CheckCallingConvAttr(), clang::Sema::CheckExplicitlyDefaultedSpecialMember(), checkVAStartIsInVariadicFunction(), compareOverloads(), clang::CodeCompletionResult::createCodeCompletionStringForDecl(), clang::comments::DeclInfo::fill(), clang::Sema::FindAllocationFunctions(), clang::CXXConstructorDecl::isConvertingConstructor(), clang::SemaCUDA::maybeAddHostDeviceAttrs(), sameFunctionParameterTypeLists(), clang::Sema::SpecialMemberIsTrivial(), and clang::JSONNodeDumper::VisitFunctionDecl().
|
inline |
Whether this function is marked as virtual explicitly.
Definition at line 2276 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::CheckConstexprFunctionDefinition(), clang::ODRDiagsEmitter::diagnoseMismatch(), clang::TemplateDeclInstantiator::InitMethodInstantiation(), clang::Sema::InstantiateClass(), clang::CXXMethodDecl::isVirtual(), and clang::JSONNodeDumper::VisitFunctionDecl().
|
inline |
Definition at line 2658 of file Decl.h.
References parameters().
Referenced by checkAddressOfFunctionIsAvailable(), clang::Sema::CheckLiteralOperatorDeclaration(), clang::interp::ByteCodeEmitter::compileFunc(), clang::CodeCompletionResult::createCodeCompletionStringForDecl(), createOverloadsForFixedParams(), clang::Sema::DiagnoseAlwaysNonNullPointer(), and hasIdenticalPassObjectSizeAttrs().
|
inline |
Definition at line 2660 of file Decl.h.
References parameters().
|
inline |
Definition at line 2657 of file Decl.h.
References parameters().
Referenced by clang::interp::ByteCodeEmitter::compileFunc(), and methodHasName().
|
inline |
Definition at line 2659 of file Decl.h.
References parameters().
Referenced by checkAddressOfFunctionIsAvailable(), clang::CodeCompletionResult::createCodeCompletionStringForDecl(), clang::Sema::DiagnoseAlwaysNonNullPointer(), and hasIdenticalPassObjectSizeAttrs().
|
inline |
Definition at line 2661 of file Decl.h.
References parameters().
|
inline |
Definition at line 2662 of file Decl.h.
References parameters().
Referenced by clang::Sema::BuildResolvedCallExpr(), clang::ento::RetainSummaryManager::canEval(), clang::Sema::CheckLiteralOperatorDeclaration(), clang::CodeCompletionResult::createCodeCompletionStringForDecl(), clang::ODRDiagsEmitter::diagnoseMismatch(), clang::Sema::FindAllocationFunctions(), and clang::Sema::getMoreSpecializedTemplate().
|
inline |
Definition at line 2649 of file Decl.h.
References getNumParams().
|
inline |
Definition at line 2646 of file Decl.h.
References getNumParams().
Referenced by clang::Sema::ActOnFinishFunctionBody(), clang::Sema::ActOnFunctionDeclarator(), clang::Sema::ActOnStartOfFunctionDef(), addFunctionPointerConversion(), canEmitDelegateCallArgs(), checkAddressOfFunctionIsAvailable(), clang::Sema::CheckAddressOfOperand(), CheckCompleteParameterTypesForMangler(), clang::SemaHLSL::CheckEntryPoint(), clang::Sema::CheckExplicitlyDefaultedComparison(), clang::Sema::CheckFunctionDeclaration(), clang::Sema::CheckLiteralOperatorDeclaration(), CheckNonNullArguments(), clang::Sema::CheckOverloadedOperatorDeclaration(), checkVAStartIsInVariadicFunction(), collectPlacementArgs(), compareOverloads(), clang::interp::ByteCodeEmitter::compileFunc(), clang::Sema::CompleteLambdaCallOperator(), clang::Sema::DeclareImplicitDeductionGuides(), clang::Sema::DiagnoseAlwaysNonNullPointer(), clang::CodeGen::CGOpenMPRuntime::emitDeclareSimdFunction(), clang::comments::DeclInfo::fill(), functionDeclHasDefaultArgument(), functionHasPassObjectSizeParams(), clang::CXXMethodDecl::getFunctionObjectParameterReferenceType(), getMinRequiredArguments(), clang::Sema::getMoreSpecializedTemplate(), getPackIndexForParam(), handleCallbackAttr(), hasNonTrivialConstructorCall(), hasOneParamOrDefaultArgs(), clang::ASTNodeImporter::ImportDeclParts(), clang::dataflow::Environment::initialize(), isOSObjectRelated(), MaybeAddOverrideCalls(), param_begin(), param_empty(), param_end(), param_size(), ProcessAPINotes(), clang::TreeTransform< Derived >::RebuildLambdaExpr(), setPrototype(), SubstituteConstraintExpressionWithoutSatisfaction(), and clang::interp::Compiler< Emitter >::VisitCXXInheritedCtorInitExpr().
void FunctionDecl::setBody | ( | Stmt * | B | ) |
Definition at line 3236 of file Decl.cpp.
References Body, clang::DeclContext::FunctionDeclBits, and clang::Stmt::getEndLoc().
Referenced by clang::Sema::ActOnFinishFunctionBody(), clang::Sema::DefineDefaultedComparison(), clang::Sema::DefineImplicitCopyAssignment(), clang::Sema::DefineImplicitLambdaToBlockPointerConversion(), clang::Sema::DefineImplicitLambdaToFunctionPointerConversion(), clang::Sema::DefineImplicitMoveAssignment(), and clang::ASTNodeImporter::ImportFunctionDeclBody().
|
inline |
Definition at line 2411 of file Decl.h.
References clang::DeclContext::FunctionDeclBits, and clang::Set.
Referenced by clang::Sema::CheckImmediateEscalatingFunctionDefinition().
|
inline |
Definition at line 2398 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::ActOnFunctionDeclarator(), clang::Sema::ActOnStartOfLambdaDefinition(), clang::Sema::BuildLambdaExpr(), clang::Sema::CheckExplicitlyDefaultedComparison(), clang::Sema::CheckExplicitlyDefaultedSpecialMember(), clang::Sema::CheckMain(), clang::Sema::CompleteLambdaCallOperator(), and clang::ASTDeclReader::VisitFunctionDecl().
|
inline |
Definition at line 2311 of file Decl.h.
References D, and clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::ActOnFunctionDeclarator(), clang::Sema::DeclareImplicitDefaultConstructor(), clang::ASTNodeImporter::VisitFunctionDecl(), and clang::ASTDeclReader::VisitFunctionDecl().
void FunctionDecl::setDefaultedOrDeletedInfo | ( | DefaultedOrDeletedFunctionInfo * | Info | ) |
Definition at line 3105 of file Decl.cpp.
References Body, DefaultedOrDeletedInfo, and clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::CheckExplicitlyDefaultedComparison(), setDeletedAsWritten(), clang::TemplateDeclInstantiator::SubstDefaultedFunction(), clang::ASTNodeImporter::VisitFunctionDecl(), and clang::ASTDeclReader::VisitFunctionDecl().
|
inline |
Definition at line 2327 of file Decl.h.
References isExplicitlyDefaulted(), and clang::SourceLocation::isInvalid().
Referenced by clang::ASTNodeImporter::VisitFunctionDecl(), and clang::ASTDeclReader::VisitFunctionDecl().
void FunctionDecl::setDeletedAsWritten | ( | bool | D = true , |
StringLiteral * | Message = nullptr |
||
) |
Definition at line 3114 of file Decl.cpp.
References clang::FunctionDecl::DefaultedOrDeletedFunctionInfo::Create(), D, DefaultedOrDeletedInfo, clang::DeclContext::FunctionDeclBits, clang::Decl::getASTContext(), isDeletedAsWritten(), setDefaultedOrDeletedInfo(), and clang::FunctionDecl::DefaultedOrDeletedFunctionInfo::setDeletedMessage().
Referenced by clang::Sema::ActOnFunctionDeclarator(), clang::Sema::CheckMemberSpecialization(), clang::ASTNodeImporter::VisitFunctionDecl(), and clang::ASTDeclReader::VisitFunctionDecl().
void FunctionDecl::setDependentTemplateSpecialization | ( | ASTContext & | Context, |
const UnresolvedSetImpl & | Templates, | ||
const TemplateArgumentListInfo * | TemplateArgs | ||
) |
Specifies that this function declaration is actually a dependent function template specialization.
Definition at line 4212 of file Decl.cpp.
References clang::DependentFunctionTemplateSpecializationInfo::Create().
Referenced by clang::Sema::CheckDependentFunctionTemplateSpecialization(), clang::ASTNodeImporter::ImportTemplateInformation(), and clang::ASTDeclReader::VisitFunctionDecl().
void FunctionDecl::setDescribedFunctionTemplate | ( | FunctionTemplateDecl * | Template | ) |
Definition at line 4033 of file Decl.cpp.
Referenced by clang::Sema::ActOnFunctionDeclarator(), addFunctionPointerConversion(), clang::Sema::AddTemplateParametersToLambdaCallOperator(), clang::TemplateDeclInstantiator::VisitCXXMethodDecl(), clang::ASTDeclReader::VisitFunctionDecl(), and clang::ASTNodeImporter::VisitFunctionTemplateDecl().
State that this function is explicitly defaulted.
Definition at line 2319 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::ASTNodeImporter::VisitFunctionDecl(), and clang::ASTDeclReader::VisitFunctionDecl().
Definition at line 2574 of file Decl.h.
References clang::DeclContext::FunctionDeclBits, getCanonicalDecl(), and V.
Referenced by clang::Sema::ActOnFunctionDeclarator(), clang::ASTNodeImporter::VisitFunctionDecl(), and clang::ASTDeclReader::VisitFunctionDecl().
|
inline |
Specify that this function declaration is actually a function template specialization.
Template | the function template that this function template specialization specializes. |
TemplateArgs | the template arguments that produced this function template specialization from the template. |
InsertPos | If non-NULL, the position in the function template specialization set where the function template specialization data will be inserted. |
TSK | the kind of template specialization this is. |
TemplateArgsAsWritten | location info of template arguments. |
PointOfInstantiation | point at which the function template specialization was first instantiated. |
Definition at line 2946 of file Decl.h.
References clang::Decl::getASTContext().
Referenced by clang::TemplateDeclInstantiator::VisitCXXMethodDecl().
|
inline |
State that falling off this function implicitly returns null/zero.
If a more specific implicit return value is required, front-ends should synthesize the appropriate return statements.
Definition at line 2360 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::CheckMain(), clang::Sema::CheckMSVCRTEntryPoint(), and clang::ASTDeclReader::VisitFunctionDecl().
State that this function inherited its prototype from a previous declaration.
Definition at line 2390 of file Decl.h.
References clang::DeclContext::FunctionDeclBits, and P.
Referenced by clang::Sema::MergeFunctionDecl(), and clang::ASTDeclReader::VisitFunctionDecl().
Definition at line 2553 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::ActOnSkippedFunctionBody(), and clang::ASTDeclReader::VisitFunctionDecl().
State that this function has a written prototype.
Definition at line 2378 of file Decl.h.
References clang::DeclContext::FunctionDeclBits, and P.
Referenced by Create(), and clang::ASTDeclReader::VisitFunctionDecl().
Flag that this function is implicitly inline.
Definition at line 2788 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::ActOnFunctionDeclarator(), setPreviousDeclaration(), clang::ASTDeclReader::UpdateDecl(), clang::TemplateDeclInstantiator::VisitCXXMethodDecl(), and clang::ASTDeclReader::VisitFunctionDecl().
|
inline |
Definition at line 2346 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::CXXRecordDecl::addedSelectedDestructor(), CreateNewFunctionDecl(), SetEligibleMethods(), clang::TemplateDeclInstantiator::VisitCXXMethodDecl(), and clang::ASTDeclReader::VisitFunctionDecl().
|
inline |
Set whether the "inline" keyword was specified for this function.
Definition at line 2774 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::ASTDeclReader::VisitFunctionDecl().
void FunctionDecl::setInstantiatedFromDecl | ( | FunctionDecl * | FD | ) |
Specify that this function declaration was instantiated from a FunctionDecl FD.
This is only used if this is a function declaration declared locally inside of a function template.
Definition at line 4046 of file Decl.cpp.
Referenced by clang::ASTNodeImporter::ImportTemplateInformation(), and clang::ASTDeclReader::VisitFunctionDecl().
|
inline |
State that the instantiation of this function is pending.
(see instantiationIsPending)
Definition at line 2438 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::PerformPendingInstantiations().
|
inline |
Specify that this record is an instantiation of the member function FD.
Definition at line 2846 of file Decl.h.
References clang::Decl::getASTContext().
Referenced by clang::TemplateDeclInstantiator::VisitCXXMethodDecl().
Sets the multiversion state for this declaration and all of its redeclarations.
Definition at line 2568 of file Decl.h.
References clang::DeclContext::FunctionDeclBits, getCanonicalDecl(), and V.
Referenced by CheckDeclarationCausesMultiVersioning(), CheckMultiVersionAdditionalDecl(), CheckMultiVersionFirstFunction(), CheckMultiVersionFunction(), handleCPUSpecificAttr(), and clang::ASTDeclReader::VisitFunctionDecl().
Definition at line 3243 of file Decl.cpp.
References clang::DeclContext::FunctionDeclBits, clang::Decl::getDeclContext(), P, and Parent.
Referenced by clang::Sema::ActOnFunctionDeclarator(), clang::Sema::CheckPureMethod(), clang::Sema::MergeCompatibleFunctionDecls(), clang::ASTNodeImporter::VisitFunctionDecl(), and clang::ASTDeclReader::VisitFunctionDecl().
State that this templated function will be late parsed.
Definition at line 2294 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::MarkAsLateParsedTemplate(), clang::Sema::UnmarkAsLateParsedTemplate(), and clang::ASTDeclReader::VisitFunctionDecl().
|
inline |
Definition at line 2264 of file Decl.h.
References Body, and clang::DeclContext::FunctionDeclBits.
|
inline |
Definition at line 2677 of file Decl.h.
References clang::Decl::getASTContext().
Referenced by addFunctionPointerConversion(), clang::Sema::CompleteLambdaCallOperator(), clang::Sema::findInheritingConstructor(), and clang::TemplateDeclInstantiator::VisitCXXMethodDecl().
void FunctionDecl::setPreviousDeclaration | ( | FunctionDecl * | PrevDecl | ) |
Definition at line 3589 of file Decl.cpp.
References getDescribedFunctionTemplate(), isInlined(), setImplicitlyInline(), and clang::Redeclarable< FunctionDecl >::setPreviousDecl().
Referenced by clang::Sema::CheckFunctionDeclaration().
|
inline |
Definition at line 2150 of file Decl.h.
References E.
Referenced by clang::Sema::ActOnFunctionDeclarator(), clang::Sema::CheckPureMethod(), clang::CXXMethodDecl::CXXMethodDecl(), clang::TemplateDeclInstantiator::VisitCXXMethodDecl(), and clang::ASTNodeImporter::VisitFunctionDecl().
|
inline |
Sets the storage class as written in the source.
Definition at line 2765 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::CompleteLambdaCallOperator(), and clang::ASTDeclReader::VisitFunctionDecl().
void FunctionDecl::setTemplateSpecializationKind | ( | TemplateSpecializationKind | TSK, |
SourceLocation | PointOfInstantiation = SourceLocation() |
||
) |
Determine what kind of template instantiation this function represents.
Definition at line 4319 of file Decl.cpp.
References clang::Decl::getASTContext(), clang::Decl::getASTMutationListener(), clang::SourceLocation::isValid(), and clang::TSK_ExplicitSpecialization.
|
inline |
Definition at line 2303 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::DeclareImplicitDefaultConstructor(), clang::Sema::MergeFunctionDecl(), clang::ASTNodeImporter::VisitFunctionDecl(), and clang::ASTDeclReader::VisitFunctionDecl().
|
inline |
Definition at line 2306 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::ASTDeclReader::VisitFunctionDecl().
|
inline |
Set whether the function was declared in source context that requires constrained FP intrinsics.
Definition at line 2785 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
|
inline |
Definition at line 2444 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::ActOnSEHTryBlock(), and clang::ASTDeclReader::VisitFunctionDecl().
|
inline |
State that this function is marked as virtual explicitly.
Definition at line 2281 of file Decl.h.
References clang::DeclContext::FunctionDeclBits, and V.
Referenced by clang::Sema::ActOnFunctionDeclarator(), clang::TemplateDeclInstantiator::InitMethodInstantiation(), clang::ASTNodeImporter::VisitFunctionDecl(), and clang::ASTDeclReader::VisitFunctionDecl().
Definition at line 2559 of file Decl.h.
References clang::DeclContext::FunctionDeclBits, and V.
Referenced by clang::Sema::ActOnFinishFunctionBody(), and clang::Sema::ActOnStartOfFunctionDef().
|
inline |
Determine whether the function was declared in source context that requires constrained FP intrinsics.
Definition at line 2781 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::CXXDestructorDecl::Create(), clang::CXXConversionDecl::Create(), clang::CXXConstructorDecl::Create(), clang::CXXMethodDecl::Create(), Create(), and FunctionDecl().
|
inline |
Indicates the function uses __try.
Definition at line 2443 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::CodeGen::EHPersonality::get().
|
inline |
True if this function will eventually have a body, once it's fully parsed.
Definition at line 2558 of file Decl.h.
References clang::DeclContext::FunctionDeclBits.
Referenced by clang::Sema::ActOnStartOfFunctionDef(), clang::Sema::BuildOverloadedCallExpr(), clang::interp::ByteCodeEmitter::compileFunc(), clang::Sema::DefineDefaultedComparison(), clang::Sema::DefineImplicitCopyAssignment(), clang::Sema::DefineImplicitMoveAssignment(), clang::CXXMethodDecl::hasInlineBody(), clang::Sema::InstantiateFunctionDefinition(), isInlineDefinitionExternallyVisible(), and isThisDeclarationADefinition().
|
friend |
|
friend |
LazyDeclStmtPtr clang::FunctionDecl::Body |
The body of the function.
Definition at line 1998 of file Decl.h.
Referenced by doesThisDeclarationHaveABody(), setBody(), setDefaultedOrDeletedInfo(), and setLazyBody().
DefaultedOrDeletedFunctionInfo* clang::FunctionDecl::DefaultedOrDeletedInfo |
Information about a future defaulted function definition.
Definition at line 2000 of file Decl.h.
Referenced by getDefalutedOrDeletedInfo(), getDeletedMessage(), setDefaultedOrDeletedInfo(), and setDeletedAsWritten().