Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- Sema.h - Semantic Analysis & AST Building --------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines the Sema class, which performs semantic analysis and |
| 11 | // builds ASTs. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #ifndef LLVM_CLANG_AST_SEMA_H |
| 16 | #define LLVM_CLANG_AST_SEMA_H |
| 17 | |
Chris Lattner | 7f925cc | 2008-04-11 07:00:53 +0000 | [diff] [blame] | 18 | #include "IdentifierResolver.h" |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 19 | #include "CXXFieldCollector.h" |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 20 | #include "SemaOverload.h" |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 21 | #include "SemaTemplate.h" |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 22 | #include "clang/AST/Attr.h" |
Douglas Gregor | eb11cd0 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 23 | #include "clang/AST/DeclBase.h" |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 24 | #include "clang/AST/Decl.h" |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 25 | #include "clang/AST/DeclObjC.h" |
Anders Carlsson | 1c5976e | 2009-06-05 03:43:12 +0000 | [diff] [blame] | 26 | #include "clang/AST/DeclTemplate.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 27 | #include "clang/Parse/Action.h" |
Chris Lattner | 500d329 | 2009-01-29 05:15:15 +0000 | [diff] [blame] | 28 | #include "clang/Sema/SemaDiagnostic.h" |
Anders Carlsson | c1fcb77 | 2007-07-22 07:07:56 +0000 | [diff] [blame] | 29 | #include "llvm/ADT/SmallVector.h" |
Fariborz Jahanian | 85ff264 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 30 | #include "llvm/ADT/DenseSet.h" |
Chris Lattner | f387668 | 2007-10-07 01:13:46 +0000 | [diff] [blame] | 31 | #include "llvm/ADT/SmallPtrSet.h" |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 32 | #include "llvm/ADT/OwningPtr.h" |
Douglas Gregor | b33fe2f | 2009-06-30 17:20:14 +0000 | [diff] [blame] | 33 | #include <deque> |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 34 | #include <list> |
Douglas Gregor | 4dc6b1c | 2009-01-16 00:38:09 +0000 | [diff] [blame] | 35 | #include <string> |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 36 | #include <vector> |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 37 | |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 38 | namespace llvm { |
| 39 | class APSInt; |
| 40 | } |
| 41 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 42 | namespace clang { |
| 43 | class ASTContext; |
Chris Lattner | 2ae34ed | 2008-02-06 00:46:58 +0000 | [diff] [blame] | 44 | class ASTConsumer; |
Douglas Gregor | 81b747b | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 45 | class CodeCompleteConsumer; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 46 | class Preprocessor; |
| 47 | class Decl; |
Chris Lattner | b048c98 | 2008-04-06 04:47:34 +0000 | [diff] [blame] | 48 | class DeclContext; |
Daniel Dunbar | 12bc692 | 2008-08-11 03:27:53 +0000 | [diff] [blame] | 49 | class DeclSpec; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 50 | class ExternalSemaSource; |
Steve Naroff | e8043c3 | 2008-04-01 23:04:06 +0000 | [diff] [blame] | 51 | class NamedDecl; |
Sebastian Redl | 798d119 | 2008-12-13 16:23:55 +0000 | [diff] [blame] | 52 | class Stmt; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 53 | class Expr; |
Steve Naroff | 6f9f307 | 2007-09-02 15:34:30 +0000 | [diff] [blame] | 54 | class InitListExpr; |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 55 | class ParenListExpr; |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 56 | class DesignatedInitExpr; |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 57 | class CallExpr; |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 58 | class DeclRefExpr; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 59 | class VarDecl; |
| 60 | class ParmVarDecl; |
| 61 | class TypedefDecl; |
| 62 | class FunctionDecl; |
| 63 | class QualType; |
Sebastian Redl | 43af76e | 2009-03-07 12:16:37 +0000 | [diff] [blame] | 64 | class LangOptions; |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 65 | class Token; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 66 | class IntegerLiteral; |
Steve Naroff | a49e1fa | 2008-01-22 00:55:40 +0000 | [diff] [blame] | 67 | class StringLiteral; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 68 | class ArrayType; |
| 69 | class LabelStmt; |
Anders Carlsson | c1fcb77 | 2007-07-22 07:07:56 +0000 | [diff] [blame] | 70 | class SwitchStmt; |
Sebastian Redl | 13e8854 | 2009-04-27 21:33:24 +0000 | [diff] [blame] | 71 | class CXXTryStmt; |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 72 | class ExtVectorType; |
Steve Naroff | bea0b34 | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 73 | class TypedefDecl; |
Douglas Gregor | aaba5e3 | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 74 | class TemplateDecl; |
Douglas Gregor | 3e00bad | 2009-02-17 01:05:43 +0000 | [diff] [blame] | 75 | class TemplateArgument; |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 76 | class TemplateArgumentLoc; |
Douglas Gregor | 7e06390 | 2009-05-11 23:53:27 +0000 | [diff] [blame] | 77 | class TemplateArgumentList; |
Douglas Gregor | ddc29e1 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 78 | class TemplateParameterList; |
Douglas Gregor | c15cb38 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 79 | class TemplateTemplateParmDecl; |
Douglas Gregor | c8ab256 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 80 | class ClassTemplatePartialSpecializationDecl; |
Douglas Gregor | 88b7094 | 2009-02-25 22:02:03 +0000 | [diff] [blame] | 81 | class ClassTemplateDecl; |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 82 | class ObjCInterfaceDecl; |
Steve Naroff | e8043c3 | 2008-04-01 23:04:06 +0000 | [diff] [blame] | 83 | class ObjCCompatibleAliasDecl; |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 84 | class ObjCProtocolDecl; |
Chris Lattner | cddc888 | 2009-03-01 00:56:52 +0000 | [diff] [blame] | 85 | class ObjCImplDecl; |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 86 | class ObjCImplementationDecl; |
| 87 | class ObjCCategoryImplDecl; |
| 88 | class ObjCCategoryDecl; |
| 89 | class ObjCIvarDecl; |
| 90 | class ObjCMethodDecl; |
Fariborz Jahanian | 02edb98 | 2008-05-01 00:03:38 +0000 | [diff] [blame] | 91 | class ObjCPropertyDecl; |
Steve Naroff | 0701bbb | 2009-01-08 17:28:14 +0000 | [diff] [blame] | 92 | class ObjCContainerDecl; |
Sebastian Redl | 4994d2d | 2009-07-04 11:39:00 +0000 | [diff] [blame] | 93 | class FunctionProtoType; |
Douglas Gregor | a8f32e0 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 94 | class CXXBasePaths; |
Anders Carlsson | ff6b3d6 | 2009-05-30 21:05:25 +0000 | [diff] [blame] | 95 | class CXXTemporary; |
Steve Naroff | bea0b34 | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 96 | |
Chris Lattner | ea29a3a | 2009-04-18 20:01:55 +0000 | [diff] [blame] | 97 | /// BlockSemaInfo - When a block is being parsed, this contains information |
| 98 | /// about the block. It is pointed to from Sema::CurBlock. |
| 99 | struct BlockSemaInfo { |
| 100 | llvm::SmallVector<ParmVarDecl*, 8> Params; |
| 101 | bool hasPrototype; |
| 102 | bool isVariadic; |
| 103 | bool hasBlockDeclRefExprs; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 104 | |
Chris Lattner | ea29a3a | 2009-04-18 20:01:55 +0000 | [diff] [blame] | 105 | BlockDecl *TheDecl; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 106 | |
Chris Lattner | ea29a3a | 2009-04-18 20:01:55 +0000 | [diff] [blame] | 107 | /// TheScope - This is the scope for the block itself, which contains |
| 108 | /// arguments etc. |
| 109 | Scope *TheScope; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 110 | |
Chris Lattner | ea29a3a | 2009-04-18 20:01:55 +0000 | [diff] [blame] | 111 | /// ReturnType - This will get set to block result type, by looking at |
| 112 | /// return types, if any, in the block body. |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 113 | QualType ReturnType; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 114 | |
Chris Lattner | ea29a3a | 2009-04-18 20:01:55 +0000 | [diff] [blame] | 115 | /// LabelMap - This is a mapping from label identifiers to the LabelStmt for |
| 116 | /// it (which acts like the label decl in some ways). Forward referenced |
| 117 | /// labels have a LabelStmt created for them with a null location & SubStmt. |
| 118 | llvm::DenseMap<IdentifierInfo*, LabelStmt*> LabelMap; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 119 | |
Chris Lattner | bcfce66 | 2009-04-18 20:10:59 +0000 | [diff] [blame] | 120 | /// SwitchStack - This is the current set of active switch statements in the |
| 121 | /// block. |
| 122 | llvm::SmallVector<SwitchStmt*, 8> SwitchStack; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 123 | |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 124 | /// SavedFunctionNeedsScopeChecking - This is the value of |
| 125 | /// CurFunctionNeedsScopeChecking at the point when the block started. |
| 126 | bool SavedFunctionNeedsScopeChecking; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 127 | |
Chris Lattner | ea29a3a | 2009-04-18 20:01:55 +0000 | [diff] [blame] | 128 | /// PrevBlockInfo - If this is nested inside another block, this points |
| 129 | /// to the outer block. |
| 130 | BlockSemaInfo *PrevBlockInfo; |
| 131 | }; |
| 132 | |
Argyrios Kyrtzidis | 1bb8a45 | 2009-08-19 01:28:17 +0000 | [diff] [blame] | 133 | /// \brief Holds a QualType and a DeclaratorInfo* that came out of a declarator |
| 134 | /// parsing. |
| 135 | /// |
| 136 | /// LocInfoType is a "transient" type, only needed for passing to/from Parser |
| 137 | /// and Sema, when we want to preserve type source info for a parsed type. |
| 138 | /// It will not participate in the type system semantics in any way. |
| 139 | class LocInfoType : public Type { |
| 140 | enum { |
| 141 | // The last number that can fit in Type's TC. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 142 | // Avoids conflict with an existing Type class. |
Argyrios Kyrtzidis | 1bb8a45 | 2009-08-19 01:28:17 +0000 | [diff] [blame] | 143 | LocInfo = (1 << TypeClassBitSize) - 1 |
| 144 | }; |
| 145 | |
| 146 | DeclaratorInfo *DeclInfo; |
| 147 | |
| 148 | LocInfoType(QualType ty, DeclaratorInfo *DInfo) |
| 149 | : Type((TypeClass)LocInfo, ty, ty->isDependentType()), DeclInfo(DInfo) { |
| 150 | assert(getTypeClass() == (TypeClass)LocInfo && "LocInfo didn't fit in TC?"); |
| 151 | } |
| 152 | friend class Sema; |
| 153 | |
| 154 | public: |
| 155 | QualType getType() const { return getCanonicalTypeInternal(); } |
| 156 | DeclaratorInfo *getDeclaratorInfo() const { return DeclInfo; } |
| 157 | |
| 158 | virtual void getAsStringInternal(std::string &Str, |
| 159 | const PrintingPolicy &Policy) const; |
| 160 | |
| 161 | static bool classof(const Type *T) { |
| 162 | return T->getTypeClass() == (TypeClass)LocInfo; |
| 163 | } |
| 164 | static bool classof(const LocInfoType *) { return true; } |
| 165 | }; |
| 166 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 167 | /// Sema - This implements semantic analysis and AST building for C. |
| 168 | class Sema : public Action { |
Chris Lattner | f50adff | 2009-02-17 00:58:30 +0000 | [diff] [blame] | 169 | Sema(const Sema&); // DO NOT IMPLEMENT |
| 170 | void operator=(const Sema&); // DO NOT IMPLEMENT |
Chris Lattner | 0b2f4da | 2008-06-29 00:28:59 +0000 | [diff] [blame] | 171 | public: |
Chris Lattner | 53ebff3 | 2009-01-22 19:21:44 +0000 | [diff] [blame] | 172 | const LangOptions &LangOpts; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 173 | Preprocessor &PP; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 174 | ASTContext &Context; |
Chris Lattner | 2ae34ed | 2008-02-06 00:46:58 +0000 | [diff] [blame] | 175 | ASTConsumer &Consumer; |
Chris Lattner | 3cfa928 | 2008-11-22 08:28:49 +0000 | [diff] [blame] | 176 | Diagnostic &Diags; |
| 177 | SourceManager &SourceMgr; |
Steve Naroff | 0330071 | 2007-11-12 13:56:41 +0000 | [diff] [blame] | 178 | |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 179 | /// \brief Source of additional semantic information. |
| 180 | ExternalSemaSource *ExternalSource; |
| 181 | |
Douglas Gregor | 81b747b | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 182 | /// \brief Code-completion consumer. |
| 183 | CodeCompleteConsumer *CodeCompleter; |
| 184 | |
Argyrios Kyrtzidis | 53d0ea5 | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 185 | /// CurContext - This is the current declaration context of parsing. |
Chris Lattner | b048c98 | 2008-04-06 04:47:34 +0000 | [diff] [blame] | 186 | DeclContext *CurContext; |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 187 | |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 188 | /// PreDeclaratorDC - Keeps the declaration context before switching to the |
| 189 | /// context of a declarator's nested-name-specifier. |
| 190 | DeclContext *PreDeclaratorDC; |
| 191 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 192 | /// CurBlock - If inside of a block definition, this contains a pointer to |
| 193 | /// the active block object that represents it. |
| 194 | BlockSemaInfo *CurBlock; |
| 195 | |
Daniel Dunbar | 4cde927 | 2008-10-14 05:35:18 +0000 | [diff] [blame] | 196 | /// PackContext - Manages the stack for #pragma pack. An alignment |
| 197 | /// of 0 indicates default alignment. |
Chris Lattner | 574aa40 | 2009-02-17 01:09:29 +0000 | [diff] [blame] | 198 | void *PackContext; // Really a "PragmaPackStack*" |
Daniel Dunbar | 4cde927 | 2008-10-14 05:35:18 +0000 | [diff] [blame] | 199 | |
Chris Lattner | ea29a3a | 2009-04-18 20:01:55 +0000 | [diff] [blame] | 200 | /// FunctionLabelMap - This is a mapping from label identifiers to the |
| 201 | /// LabelStmt for it (which acts like the label decl in some ways). Forward |
| 202 | /// referenced labels have a LabelStmt created for them with a null location & |
| 203 | /// SubStmt. |
| 204 | /// |
| 205 | /// Note that this should always be accessed through getLabelMap() in order |
| 206 | /// to handle blocks properly. |
| 207 | llvm::DenseMap<IdentifierInfo*, LabelStmt*> FunctionLabelMap; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 208 | |
Chris Lattner | bcfce66 | 2009-04-18 20:10:59 +0000 | [diff] [blame] | 209 | /// FunctionSwitchStack - This is the current set of active switch statements |
| 210 | /// in the top level function. Clients should always use getSwitchStack() to |
| 211 | /// handle the case when they are in a block. |
| 212 | llvm::SmallVector<SwitchStmt*, 8> FunctionSwitchStack; |
Anders Carlsson | 165a0a0 | 2009-05-17 18:41:29 +0000 | [diff] [blame] | 213 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 214 | /// ExprTemporaries - This is the stack of temporaries that are created by |
Anders Carlsson | 165a0a0 | 2009-05-17 18:41:29 +0000 | [diff] [blame] | 215 | /// the current full expression. |
Anders Carlsson | ff6b3d6 | 2009-05-30 21:05:25 +0000 | [diff] [blame] | 216 | llvm::SmallVector<CXXTemporary*, 8> ExprTemporaries; |
Anders Carlsson | 165a0a0 | 2009-05-17 18:41:29 +0000 | [diff] [blame] | 217 | |
Chris Lattner | 38c5ebd | 2009-04-19 05:21:20 +0000 | [diff] [blame] | 218 | /// CurFunctionNeedsScopeChecking - This is set to true when a function or |
| 219 | /// ObjC method body contains a VLA or an ObjC try block, which introduce |
| 220 | /// scopes that need to be checked for goto conditions. If a function does |
| 221 | /// not contain this, then it need not have the jump checker run on it. |
| 222 | bool CurFunctionNeedsScopeChecking; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 223 | |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 224 | /// ExtVectorDecls - This is a list all the extended vector types. This allows |
| 225 | /// us to associate a raw vector type with one of the ext_vector type names. |
Steve Naroff | bea0b34 | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 226 | /// This is only necessary for issuing pretty diagnostics. |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 227 | llvm::SmallVector<TypedefDecl*, 24> ExtVectorDecls; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 228 | |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 229 | /// FieldCollector - Collects CXXFieldDecls during parsing of C++ classes. |
| 230 | llvm::OwningPtr<CXXFieldCollector> FieldCollector; |
| 231 | |
Anders Carlsson | 4681ebd | 2009-03-22 20:18:17 +0000 | [diff] [blame] | 232 | typedef llvm::SmallPtrSet<const CXXRecordDecl*, 8> RecordDeclSetTy; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 233 | |
| 234 | /// PureVirtualClassDiagSet - a set of class declarations which we have |
Anders Carlsson | 4681ebd | 2009-03-22 20:18:17 +0000 | [diff] [blame] | 235 | /// emitted a list of pure virtual functions. Used to prevent emitting the |
| 236 | /// same list more than once. |
| 237 | llvm::OwningPtr<RecordDeclSetTy> PureVirtualClassDiagSet; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 238 | |
Douglas Gregor | 6393519 | 2009-03-02 00:19:53 +0000 | [diff] [blame] | 239 | /// \brief A mapping from external names to the most recent |
| 240 | /// locally-scoped external declaration with that name. |
| 241 | /// |
| 242 | /// This map contains external declarations introduced in local |
| 243 | /// scoped, e.g., |
| 244 | /// |
| 245 | /// \code |
| 246 | /// void f() { |
| 247 | /// void foo(int, int); |
| 248 | /// } |
| 249 | /// \endcode |
| 250 | /// |
| 251 | /// Here, the name "foo" will be associated with the declaration on |
| 252 | /// "foo" within f. This name is not visible outside of |
| 253 | /// "f". However, we still find it in two cases: |
| 254 | /// |
| 255 | /// - If we are declaring another external with the name "foo", we |
| 256 | /// can find "foo" as a previous declaration, so that the types |
| 257 | /// of this external declaration can be checked for |
| 258 | /// compatibility. |
| 259 | /// |
| 260 | /// - If we would implicitly declare "foo" (e.g., due to a call to |
| 261 | /// "foo" in C when no prototype or definition is visible), then |
| 262 | /// we find this declaration of "foo" and complain that it is |
| 263 | /// not visible. |
| 264 | llvm::DenseMap<DeclarationName, NamedDecl *> LocallyScopedExternalDecls; |
| 265 | |
Douglas Gregor | b6c8c8b | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 266 | /// \brief The set of tentative declarations seen so far in this |
| 267 | /// translation unit for which no definition has been seen. |
| 268 | /// |
| 269 | /// The tentative declarations are indexed by the name of the |
| 270 | /// declaration, and only the most recent tentative declaration for |
| 271 | /// a given variable will be recorded here. |
| 272 | llvm::DenseMap<DeclarationName, VarDecl *> TentativeDefinitions; |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 273 | std::vector<DeclarationName> TentativeDefinitionList; |
Douglas Gregor | b6c8c8b | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 274 | |
John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 275 | /// \brief The collection of delayed deprecation warnings. |
| 276 | llvm::SmallVector<std::pair<SourceLocation,NamedDecl*>, 8> |
| 277 | DelayedDeprecationWarnings; |
| 278 | |
| 279 | /// \brief The depth of the current ParsingDeclaration stack. |
| 280 | /// If nonzero, we are currently parsing a declaration (and |
| 281 | /// hence should delay deprecation warnings). |
| 282 | unsigned ParsingDeclDepth; |
| 283 | |
Ryan Flynn | e25ff83 | 2009-07-30 03:15:39 +0000 | [diff] [blame] | 284 | /// WeakUndeclaredIdentifiers - Identifiers contained in |
| 285 | /// #pragma weak before declared. rare. may alias another |
| 286 | /// identifier, declared or undeclared |
| 287 | class WeakInfo { |
| 288 | IdentifierInfo *alias; // alias (optional) |
| 289 | SourceLocation loc; // for diagnostics |
| 290 | bool used; // identifier later declared? |
| 291 | public: |
| 292 | WeakInfo() |
| 293 | : alias(0), loc(SourceLocation()), used(false) {} |
| 294 | WeakInfo(IdentifierInfo *Alias, SourceLocation Loc) |
| 295 | : alias(Alias), loc(Loc), used(false) {} |
| 296 | inline IdentifierInfo * getAlias() const { return alias; } |
| 297 | inline SourceLocation getLocation() const { return loc; } |
| 298 | void setUsed(bool Used=true) { used = Used; } |
| 299 | inline bool getUsed() { return used; } |
| 300 | bool operator==(WeakInfo RHS) const { |
| 301 | return alias == RHS.getAlias() && loc == RHS.getLocation(); |
| 302 | } |
| 303 | bool operator!=(WeakInfo RHS) const { return !(*this == RHS); } |
| 304 | }; |
| 305 | llvm::DenseMap<IdentifierInfo*,WeakInfo> WeakUndeclaredIdentifiers; |
| 306 | |
Ryan Flynn | 7b1fdbd | 2009-07-31 02:52:19 +0000 | [diff] [blame] | 307 | /// WeakTopLevelDecl - Translation-unit scoped declarations generated by |
| 308 | /// #pragma weak during processing of other Decls. |
| 309 | /// I couldn't figure out a clean way to generate these in-line, so |
| 310 | /// we store them here and handle separately -- which is a hack. |
| 311 | /// It would be best to refactor this. |
| 312 | llvm::SmallVector<Decl*,2> WeakTopLevelDecl; |
| 313 | |
Chris Lattner | 7f925cc | 2008-04-11 07:00:53 +0000 | [diff] [blame] | 314 | IdentifierResolver IdResolver; |
| 315 | |
Steve Naroff | e440eb8 | 2007-10-10 17:32:04 +0000 | [diff] [blame] | 316 | /// Translation Unit Scope - useful to Objective-C actions that need |
| 317 | /// to lookup file scope declarations in the "ordinary" C decl namespace. |
| 318 | /// For example, user-defined classes, built-in "id" type, etc. |
Steve Naroff | b216c88 | 2007-10-09 22:01:59 +0000 | [diff] [blame] | 319 | Scope *TUScope; |
Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 320 | |
Douglas Gregor | 7adb10f | 2009-09-15 22:30:29 +0000 | [diff] [blame] | 321 | /// \brief The C++ "std" namespace, where the standard library resides. |
Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 322 | NamespaceDecl *StdNamespace; |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 323 | |
Douglas Gregor | 7adb10f | 2009-09-15 22:30:29 +0000 | [diff] [blame] | 324 | /// \brief The C++ "std::bad_alloc" class, which is defined by the C++ |
| 325 | /// standard library. |
| 326 | CXXRecordDecl *StdBadAlloc; |
| 327 | |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 328 | /// A flag to remember whether the implicit forms of operator new and delete |
| 329 | /// have been declared. |
| 330 | bool GlobalNewDeleteDeclared; |
Douglas Gregor | f807fe0 | 2009-04-14 16:27:31 +0000 | [diff] [blame] | 331 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 332 | /// The current expression evaluation context. |
| 333 | ExpressionEvaluationContext ExprEvalContext; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 334 | |
| 335 | typedef std::vector<std::pair<SourceLocation, Decl *> > |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 336 | PotentiallyReferencedDecls; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 337 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 338 | /// A stack of declarations, each element of which is a set of declarations |
| 339 | /// that will be marked as referenced if the corresponding potentially |
| 340 | /// potentially evaluated expression is potentially evaluated. Each element |
| 341 | /// in the stack corresponds to a PotentiallyPotentiallyEvaluated expression |
| 342 | /// evaluation context. |
| 343 | std::list<PotentiallyReferencedDecls> PotentiallyReferencedDeclStack; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 344 | |
Douglas Gregor | f807fe0 | 2009-04-14 16:27:31 +0000 | [diff] [blame] | 345 | /// \brief Whether the code handled by Sema should be considered a |
| 346 | /// complete translation unit or not. |
| 347 | /// |
| 348 | /// When true (which is generally the case), Sema will perform |
| 349 | /// end-of-translation-unit semantic tasks (such as creating |
| 350 | /// initializers for tentative definitions in C) once parsing has |
| 351 | /// completed. This flag will be false when building PCH files, |
| 352 | /// since a PCH file is by definition not a complete translation |
| 353 | /// unit. |
| 354 | bool CompleteTranslationUnit; |
| 355 | |
Argyrios Kyrtzidis | 1bb8a45 | 2009-08-19 01:28:17 +0000 | [diff] [blame] | 356 | llvm::BumpPtrAllocator BumpAlloc; |
| 357 | |
Douglas Gregor | bb26041 | 2009-06-14 08:02:22 +0000 | [diff] [blame] | 358 | /// \brief The number of SFINAE diagnostics that have been trapped. |
| 359 | unsigned NumSFINAEErrors; |
| 360 | |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 361 | typedef llvm::DenseMap<Selector, ObjCMethodList> MethodPool; |
| 362 | |
Steve Naroff | 58ff9e8 | 2007-10-14 00:58:41 +0000 | [diff] [blame] | 363 | /// Instance/Factory Method Pools - allows efficient lookup when typechecking |
| 364 | /// messages to "id". We need to maintain a list, since selectors can have |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 365 | /// differing signatures across classes. In Cocoa, this happens to be |
Steve Naroff | 58ff9e8 | 2007-10-14 00:58:41 +0000 | [diff] [blame] | 366 | /// extremely uncommon (only 1% of selectors are "overloaded"). |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 367 | MethodPool InstanceMethodPool; |
| 368 | MethodPool FactoryMethodPool; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 369 | |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 370 | MethodPool::iterator ReadMethodPool(Selector Sel, bool isInstance); |
| 371 | |
Steve Naroff | 6b9dfd4 | 2009-03-04 15:11:40 +0000 | [diff] [blame] | 372 | /// Private Helper predicate to check for 'self'. |
| 373 | bool isSelfExpr(Expr *RExpr); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 374 | public: |
Douglas Gregor | f807fe0 | 2009-04-14 16:27:31 +0000 | [diff] [blame] | 375 | Sema(Preprocessor &pp, ASTContext &ctxt, ASTConsumer &consumer, |
| 376 | bool CompleteTranslationUnit = true); |
Chris Lattner | 574aa40 | 2009-02-17 01:09:29 +0000 | [diff] [blame] | 377 | ~Sema() { |
| 378 | if (PackContext) FreePackedContext(); |
| 379 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 380 | |
Chris Lattner | 53ebff3 | 2009-01-22 19:21:44 +0000 | [diff] [blame] | 381 | const LangOptions &getLangOptions() const { return LangOpts; } |
Chris Lattner | 3cfa928 | 2008-11-22 08:28:49 +0000 | [diff] [blame] | 382 | Diagnostic &getDiagnostics() const { return Diags; } |
| 383 | SourceManager &getSourceManager() const { return SourceMgr; } |
| 384 | |
Douglas Gregor | 25a88bb | 2009-03-20 22:48:49 +0000 | [diff] [blame] | 385 | /// \brief Helper class that creates diagnostics with optional |
| 386 | /// template instantiation stacks. |
| 387 | /// |
| 388 | /// This class provides a wrapper around the basic DiagnosticBuilder |
| 389 | /// class that emits diagnostics. SemaDiagnosticBuilder is |
| 390 | /// responsible for emitting the diagnostic (as DiagnosticBuilder |
| 391 | /// does) and, if the diagnostic comes from inside a template |
| 392 | /// instantiation, printing the template instantiation stack as |
| 393 | /// well. |
| 394 | class SemaDiagnosticBuilder : public DiagnosticBuilder { |
| 395 | Sema &SemaRef; |
| 396 | unsigned DiagID; |
| 397 | |
| 398 | public: |
| 399 | SemaDiagnosticBuilder(DiagnosticBuilder &DB, Sema &SemaRef, unsigned DiagID) |
| 400 | : DiagnosticBuilder(DB), SemaRef(SemaRef), DiagID(DiagID) { } |
| 401 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 402 | explicit SemaDiagnosticBuilder(Sema &SemaRef) |
Douglas Gregor | 5e9f35c | 2009-06-14 07:33:30 +0000 | [diff] [blame] | 403 | : DiagnosticBuilder(DiagnosticBuilder::Suppress), SemaRef(SemaRef) { } |
| 404 | |
Douglas Gregor | 25a88bb | 2009-03-20 22:48:49 +0000 | [diff] [blame] | 405 | ~SemaDiagnosticBuilder(); |
| 406 | }; |
| 407 | |
| 408 | /// \brief Emit a diagnostic. |
| 409 | SemaDiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID) { |
Douglas Gregor | 5e9f35c | 2009-06-14 07:33:30 +0000 | [diff] [blame] | 410 | if (isSFINAEContext() && Diagnostic::isBuiltinSFINAEDiag(DiagID)) { |
| 411 | // If we encountered an error during template argument |
| 412 | // deduction, and that error is one of the SFINAE errors, |
Douglas Gregor | bb26041 | 2009-06-14 08:02:22 +0000 | [diff] [blame] | 413 | // suppress the diagnostic. |
Douglas Gregor | 8439fac | 2009-06-15 16:52:15 +0000 | [diff] [blame] | 414 | ++NumSFINAEErrors; |
Douglas Gregor | 0b60d9e | 2009-09-25 23:53:26 +0000 | [diff] [blame] | 415 | Diags.setLastDiagnosticIgnored(); |
Douglas Gregor | 8439fac | 2009-06-15 16:52:15 +0000 | [diff] [blame] | 416 | return SemaDiagnosticBuilder(*this); |
Douglas Gregor | 5e9f35c | 2009-06-14 07:33:30 +0000 | [diff] [blame] | 417 | } |
| 418 | |
Douglas Gregor | ee1828a | 2009-03-10 18:03:33 +0000 | [diff] [blame] | 419 | DiagnosticBuilder DB = Diags.Report(FullSourceLoc(Loc, SourceMgr), DiagID); |
Douglas Gregor | 25a88bb | 2009-03-20 22:48:49 +0000 | [diff] [blame] | 420 | return SemaDiagnosticBuilder(DB, *this, DiagID); |
Chris Lattner | 3cfa928 | 2008-11-22 08:28:49 +0000 | [diff] [blame] | 421 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 422 | |
Anders Carlsson | 91a0cc9 | 2009-08-26 22:33:56 +0000 | [diff] [blame] | 423 | /// \brief Emit a partial diagnostic. |
| 424 | SemaDiagnosticBuilder Diag(SourceLocation Loc, const PartialDiagnostic& PD); |
| 425 | |
Chris Lattner | 394a3fd | 2007-08-31 04:53:24 +0000 | [diff] [blame] | 426 | virtual void DeleteExpr(ExprTy *E); |
| 427 | virtual void DeleteStmt(StmtTy *S); |
| 428 | |
Sebastian Redl | 798d119 | 2008-12-13 16:23:55 +0000 | [diff] [blame] | 429 | OwningExprResult Owned(Expr* E) { return OwningExprResult(*this, E); } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 430 | OwningExprResult Owned(ExprResult R) { |
Douglas Gregor | 5ac8aff | 2009-01-26 22:44:13 +0000 | [diff] [blame] | 431 | if (R.isInvalid()) |
Steve Naroff | 872b9ac | 2009-01-21 22:32:33 +0000 | [diff] [blame] | 432 | return ExprError(); |
Douglas Gregor | 5ac8aff | 2009-01-26 22:44:13 +0000 | [diff] [blame] | 433 | return OwningExprResult(*this, R.get()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 434 | } |
Sebastian Redl | 798d119 | 2008-12-13 16:23:55 +0000 | [diff] [blame] | 435 | OwningStmtResult Owned(Stmt* S) { return OwningStmtResult(*this, S); } |
| 436 | |
Chris Lattner | 9299f3f | 2008-08-23 03:19:52 +0000 | [diff] [blame] | 437 | virtual void ActOnEndOfTranslationUnit(); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 438 | |
Chris Lattner | ea29a3a | 2009-04-18 20:01:55 +0000 | [diff] [blame] | 439 | /// getLabelMap() - Return the current label map. If we're in a block, we |
| 440 | /// return it. |
| 441 | llvm::DenseMap<IdentifierInfo*, LabelStmt*> &getLabelMap() { |
| 442 | return CurBlock ? CurBlock->LabelMap : FunctionLabelMap; |
| 443 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 444 | |
Chris Lattner | bcfce66 | 2009-04-18 20:10:59 +0000 | [diff] [blame] | 445 | /// getSwitchStack - This is returns the switch stack for the current block or |
| 446 | /// function. |
| 447 | llvm::SmallVector<SwitchStmt*,8> &getSwitchStack() { |
| 448 | return CurBlock ? CurBlock->SwitchStack : FunctionSwitchStack; |
| 449 | } |
Ryan Flynn | 7b1fdbd | 2009-07-31 02:52:19 +0000 | [diff] [blame] | 450 | |
| 451 | /// WeakTopLevelDeclDecls - access to #pragma weak-generated Decls |
| 452 | llvm::SmallVector<Decl*,2> &WeakTopLevelDecls() { return WeakTopLevelDecl; } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 453 | |
Douglas Gregor | 2e22253 | 2009-07-02 17:08:52 +0000 | [diff] [blame] | 454 | virtual void ActOnComment(SourceRange Comment); |
| 455 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 456 | //===--------------------------------------------------------------------===// |
| 457 | // Type Analysis / Processing: SemaType.cpp. |
| 458 | // |
Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 459 | QualType adjustParameterType(QualType T); |
Chris Lattner | c9b346d | 2008-06-29 00:50:08 +0000 | [diff] [blame] | 460 | void ProcessTypeAttributeList(QualType &Result, const AttributeList *AL); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 461 | QualType BuildPointerType(QualType T, unsigned Quals, |
Douglas Gregor | cd281c3 | 2009-02-28 00:25:32 +0000 | [diff] [blame] | 462 | SourceLocation Loc, DeclarationName Entity); |
Sebastian Redl | 7c80bd6 | 2009-03-16 23:22:08 +0000 | [diff] [blame] | 463 | QualType BuildReferenceType(QualType T, bool LValueRef, unsigned Quals, |
Douglas Gregor | cd281c3 | 2009-02-28 00:25:32 +0000 | [diff] [blame] | 464 | SourceLocation Loc, DeclarationName Entity); |
| 465 | QualType BuildArrayType(QualType T, ArrayType::ArraySizeModifier ASM, |
| 466 | Expr *ArraySize, unsigned Quals, |
Douglas Gregor | 7e7eb3d | 2009-07-06 15:59:29 +0000 | [diff] [blame] | 467 | SourceRange Brackets, DeclarationName Entity); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 468 | QualType BuildExtVectorType(QualType T, ExprArg ArraySize, |
Douglas Gregor | 9cdda0c | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 469 | SourceLocation AttrLoc); |
Douglas Gregor | 724651c | 2009-02-28 01:04:19 +0000 | [diff] [blame] | 470 | QualType BuildFunctionType(QualType T, |
| 471 | QualType *ParamTypes, unsigned NumParamTypes, |
| 472 | bool Variadic, unsigned Quals, |
| 473 | SourceLocation Loc, DeclarationName Entity); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 474 | QualType BuildMemberPointerType(QualType T, QualType Class, |
| 475 | unsigned Quals, SourceLocation Loc, |
Douglas Gregor | 949bf69 | 2009-06-09 22:17:39 +0000 | [diff] [blame] | 476 | DeclarationName Entity); |
Anders Carlsson | 9a917e4 | 2009-06-12 22:56:54 +0000 | [diff] [blame] | 477 | QualType BuildBlockPointerType(QualType T, unsigned Quals, |
| 478 | SourceLocation Loc, DeclarationName Entity); |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 479 | QualType GetTypeForDeclarator(Declarator &D, Scope *S, |
| 480 | DeclaratorInfo **DInfo = 0, |
Sebastian Redl | 8ce35b0 | 2009-10-25 21:45:37 +0000 | [diff] [blame] | 481 | TagDecl **OwnedDecl = 0); |
| 482 | DeclaratorInfo *GetDeclaratorInfoForDeclarator(Declarator &D, QualType T); |
Argyrios Kyrtzidis | 1bb8a45 | 2009-08-19 01:28:17 +0000 | [diff] [blame] | 483 | /// \brief Create a LocInfoType to hold the given QualType and DeclaratorInfo. |
| 484 | QualType CreateLocInfoType(QualType T, DeclaratorInfo *DInfo); |
Douglas Gregor | 10bd368 | 2008-11-17 22:58:34 +0000 | [diff] [blame] | 485 | DeclarationName GetNameForDeclarator(Declarator &D); |
Douglas Gregor | 02a24ee | 2009-11-03 16:56:39 +0000 | [diff] [blame] | 486 | DeclarationName GetNameFromUnqualifiedId(UnqualifiedId &Name); |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 487 | static QualType GetTypeFromParser(TypeTy *Ty, DeclaratorInfo **DInfo = 0); |
Sebastian Redl | ef65f06 | 2009-05-29 18:02:33 +0000 | [diff] [blame] | 488 | bool CheckSpecifiedExceptionType(QualType T, const SourceRange &Range); |
Sebastian Redl | 6a7330c | 2009-05-29 15:01:05 +0000 | [diff] [blame] | 489 | bool CheckDistantExceptionSpec(QualType T); |
Sebastian Redl | 4994d2d | 2009-07-04 11:39:00 +0000 | [diff] [blame] | 490 | bool CheckEquivalentExceptionSpec( |
| 491 | const FunctionProtoType *Old, SourceLocation OldLoc, |
| 492 | const FunctionProtoType *New, SourceLocation NewLoc); |
Sebastian Redl | 37c38ec | 2009-10-14 16:09:29 +0000 | [diff] [blame] | 493 | bool CheckEquivalentExceptionSpec( |
| 494 | const PartialDiagnostic &DiagID, const PartialDiagnostic & NoteID, |
Sebastian Redl | dced226 | 2009-10-11 09:03:14 +0000 | [diff] [blame] | 495 | const FunctionProtoType *Old, SourceLocation OldLoc, |
| 496 | const FunctionProtoType *New, SourceLocation NewLoc); |
Sebastian Redl | 37c38ec | 2009-10-14 16:09:29 +0000 | [diff] [blame] | 497 | bool CheckExceptionSpecSubset( |
| 498 | const PartialDiagnostic &DiagID, const PartialDiagnostic & NoteID, |
Sebastian Redl | 23c7d06 | 2009-07-07 20:29:57 +0000 | [diff] [blame] | 499 | const FunctionProtoType *Superset, SourceLocation SuperLoc, |
| 500 | const FunctionProtoType *Subset, SourceLocation SubLoc); |
Sebastian Redl | 37c38ec | 2009-10-14 16:09:29 +0000 | [diff] [blame] | 501 | bool CheckParamExceptionSpec(const PartialDiagnostic & NoteID, |
Sebastian Redl | dced226 | 2009-10-11 09:03:14 +0000 | [diff] [blame] | 502 | const FunctionProtoType *Target, SourceLocation TargetLoc, |
| 503 | const FunctionProtoType *Source, SourceLocation SourceLoc); |
Douglas Gregor | 10bd368 | 2008-11-17 22:58:34 +0000 | [diff] [blame] | 504 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 505 | QualType ObjCGetTypeForMethodDefinition(DeclPtrTy D); |
Fariborz Jahanian | 306d68f | 2007-11-08 23:49:49 +0000 | [diff] [blame] | 506 | |
Douglas Gregor | 5737326 | 2008-10-22 14:17:15 +0000 | [diff] [blame] | 507 | bool UnwrapSimilarPointerTypes(QualType& T1, QualType& T2); |
| 508 | |
Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 509 | virtual TypeResult ActOnTypeName(Scope *S, Declarator &D); |
Sebastian Redl | 37d6de3 | 2008-11-08 13:00:26 +0000 | [diff] [blame] | 510 | |
Anders Carlsson | 91a0cc9 | 2009-08-26 22:33:56 +0000 | [diff] [blame] | 511 | bool RequireCompleteType(SourceLocation Loc, QualType T, |
Anders Carlsson | 8c8d919 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 512 | const PartialDiagnostic &PD, |
| 513 | std::pair<SourceLocation, |
| 514 | PartialDiagnostic> Note = |
| 515 | std::make_pair(SourceLocation(), PDiag())); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 516 | |
Douglas Gregor | e625893 | 2009-03-19 00:39:20 +0000 | [diff] [blame] | 517 | QualType getQualifiedNameType(const CXXScopeSpec &SS, QualType T); |
| 518 | |
Anders Carlsson | af017e6 | 2009-06-29 22:58:55 +0000 | [diff] [blame] | 519 | QualType BuildTypeofExprType(Expr *E); |
| 520 | QualType BuildDecltypeType(Expr *E); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 521 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 522 | //===--------------------------------------------------------------------===// |
| 523 | // Symbol table / Decl tracking callbacks: SemaDecl.cpp. |
| 524 | // |
Chris Lattner | 21ff9c9 | 2009-03-05 01:25:28 +0000 | [diff] [blame] | 525 | |
| 526 | /// getDeclName - Return a pretty name for the specified decl if possible, or |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 527 | /// an empty string if not. This is used for pretty crash reporting. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 528 | virtual std::string getDeclName(DeclPtrTy D); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 529 | |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 530 | DeclGroupPtrTy ConvertDeclToDeclGroup(DeclPtrTy Ptr); |
| 531 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 532 | virtual TypeTy *getTypeName(IdentifierInfo &II, SourceLocation NameLoc, |
Douglas Gregor | 42c39f3 | 2009-08-26 18:27:52 +0000 | [diff] [blame] | 533 | Scope *S, const CXXScopeSpec *SS, |
| 534 | bool isClassName = false); |
Chris Lattner | 4c97d76 | 2009-04-12 21:49:30 +0000 | [diff] [blame] | 535 | virtual DeclSpec::TST isTagName(IdentifierInfo &II, Scope *S); |
Douglas Gregor | a786fdb | 2009-10-13 23:27:22 +0000 | [diff] [blame] | 536 | virtual bool DiagnoseUnknownTypeName(const IdentifierInfo &II, |
| 537 | SourceLocation IILoc, |
| 538 | Scope *S, |
| 539 | const CXXScopeSpec *SS, |
| 540 | TypeTy *&SuggestedType); |
| 541 | |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 542 | virtual DeclPtrTy ActOnDeclarator(Scope *S, Declarator &D) { |
Douglas Gregor | e542c86 | 2009-06-23 23:11:28 +0000 | [diff] [blame] | 543 | return HandleDeclarator(S, D, MultiTemplateParamsArg(*this), false); |
Douglas Gregor | 584049d | 2008-12-15 23:53:10 +0000 | [diff] [blame] | 544 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 545 | |
| 546 | DeclPtrTy HandleDeclarator(Scope *S, Declarator &D, |
Douglas Gregor | e542c86 | 2009-06-23 23:11:28 +0000 | [diff] [blame] | 547 | MultiTemplateParamsArg TemplateParameterLists, |
| 548 | bool IsFunctionDefinition); |
Douglas Gregor | 6393519 | 2009-03-02 00:19:53 +0000 | [diff] [blame] | 549 | void RegisterLocallyScopedExternCDecl(NamedDecl *ND, NamedDecl *PrevDecl, |
| 550 | Scope *S); |
Eli Friedman | 85a5319 | 2009-04-07 19:37:57 +0000 | [diff] [blame] | 551 | void DiagnoseFunctionSpecifiers(Declarator& D); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 552 | NamedDecl* ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC, |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 553 | QualType R, DeclaratorInfo *DInfo, |
Douglas Gregor | 2531c2d | 2009-09-28 00:47:05 +0000 | [diff] [blame] | 554 | NamedDecl* PrevDecl, bool &Redeclaration); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 555 | NamedDecl* ActOnVariableDeclarator(Scope* S, Declarator& D, DeclContext* DC, |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 556 | QualType R, DeclaratorInfo *DInfo, |
| 557 | NamedDecl* PrevDecl, |
Douglas Gregor | dfe3f2d | 2009-07-22 17:18:37 +0000 | [diff] [blame] | 558 | MultiTemplateParamsArg TemplateParamLists, |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 559 | bool &Redeclaration); |
Chris Lattner | eaaebc7 | 2009-04-25 08:06:05 +0000 | [diff] [blame] | 560 | void CheckVariableDeclaration(VarDecl *NewVD, NamedDecl *PrevDecl, |
Douglas Gregor | 3d7a12a | 2009-03-25 23:32:15 +0000 | [diff] [blame] | 561 | bool &Redeclaration); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 562 | NamedDecl* ActOnFunctionDeclarator(Scope* S, Declarator& D, DeclContext* DC, |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 563 | QualType R, DeclaratorInfo *DInfo, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 564 | NamedDecl* PrevDecl, |
Douglas Gregor | e542c86 | 2009-06-23 23:11:28 +0000 | [diff] [blame] | 565 | MultiTemplateParamsArg TemplateParamLists, |
Douglas Gregor | 04495c8 | 2009-02-24 01:23:02 +0000 | [diff] [blame] | 566 | bool IsFunctionDefinition, |
Chris Lattner | eaaebc7 | 2009-04-25 08:06:05 +0000 | [diff] [blame] | 567 | bool &Redeclaration); |
| 568 | void CheckFunctionDeclaration(FunctionDecl *NewFD, NamedDecl *&PrevDecl, |
Douglas Gregor | fd056bc | 2009-10-13 16:30:37 +0000 | [diff] [blame] | 569 | bool IsExplicitSpecialization, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 570 | bool &Redeclaration, |
Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 571 | bool &OverloadableAttrRequired); |
John McCall | 8c4859a | 2009-07-24 03:03:21 +0000 | [diff] [blame] | 572 | void CheckMain(FunctionDecl *FD); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 573 | virtual DeclPtrTy ActOnParamDeclarator(Scope *S, Declarator &D); |
| 574 | virtual void ActOnParamDefaultArgument(DeclPtrTy param, |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 575 | SourceLocation EqualLoc, |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 576 | ExprArg defarg); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 577 | virtual void ActOnParamUnparsedDefaultArgument(DeclPtrTy param, |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 578 | SourceLocation EqualLoc, |
| 579 | SourceLocation ArgLoc); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 580 | virtual void ActOnParamDefaultArgumentError(DeclPtrTy param); |
Anders Carlsson | ed961f9 | 2009-08-25 02:29:20 +0000 | [diff] [blame] | 581 | bool SetParamDefaultArgument(ParmVarDecl *Param, ExprArg DefaultArg, |
| 582 | SourceLocation EqualLoc); |
| 583 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 584 | |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 585 | // Contains the locations of the beginning of unparsed default |
| 586 | // argument locations. |
| 587 | llvm::DenseMap<ParmVarDecl *,SourceLocation> UnparsedDefaultArgLocs; |
| 588 | |
Anders Carlsson | 9abf2ae | 2009-08-16 05:13:48 +0000 | [diff] [blame] | 589 | virtual void AddInitializerToDecl(DeclPtrTy dcl, ExprArg init); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 590 | void AddInitializerToDecl(DeclPtrTy dcl, ExprArg init, bool DirectInit); |
Anders Carlsson | 6a75cd9 | 2009-07-11 00:34:39 +0000 | [diff] [blame] | 591 | void ActOnUninitializedDecl(DeclPtrTy dcl, bool TypeContainsUndeducedAuto); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 592 | virtual void SetDeclDeleted(DeclPtrTy dcl, SourceLocation DelLoc); |
Eli Friedman | c1dc653 | 2009-05-29 01:49:24 +0000 | [diff] [blame] | 593 | virtual DeclGroupPtrTy FinalizeDeclaratorGroup(Scope *S, const DeclSpec &DS, |
| 594 | DeclPtrTy *Group, |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 595 | unsigned NumDecls); |
Douglas Gregor | a3a8351 | 2009-04-01 23:51:29 +0000 | [diff] [blame] | 596 | virtual void ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D, |
| 597 | SourceLocation LocAfterDecls); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 598 | virtual DeclPtrTy ActOnStartOfFunctionDef(Scope *S, Declarator &D); |
| 599 | virtual DeclPtrTy ActOnStartOfFunctionDef(Scope *S, DeclPtrTy D); |
| 600 | virtual void ActOnStartOfObjCMethodDef(Scope *S, DeclPtrTy D); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 601 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 602 | virtual DeclPtrTy ActOnFinishFunctionBody(DeclPtrTy Decl, StmtArg Body); |
Douglas Gregor | e2c31ff | 2009-05-15 17:59:04 +0000 | [diff] [blame] | 603 | DeclPtrTy ActOnFinishFunctionBody(DeclPtrTy Decl, StmtArg Body, |
| 604 | bool IsInstantiation); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 605 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 606 | /// \brief Diagnose any unused parameters in the given sequence of |
| 607 | /// ParmVarDecl pointers. |
| 608 | template<typename InputIterator> |
| 609 | void DiagnoseUnusedParameters(InputIterator Param, InputIterator ParamEnd) { |
| 610 | for (; Param != ParamEnd; ++Param) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 611 | if (!(*Param)->isUsed() && (*Param)->getDeclName() && |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 612 | !(*Param)->template hasAttr<UnusedAttr>()) |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 613 | Diag((*Param)->getLocation(), diag::warn_unused_parameter) |
| 614 | << (*Param)->getDeclName(); |
| 615 | } |
| 616 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 617 | |
Chris Lattner | 5af280c | 2009-04-19 04:46:21 +0000 | [diff] [blame] | 618 | void DiagnoseInvalidJumps(Stmt *Body); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 619 | virtual DeclPtrTy ActOnFileScopeAsmDecl(SourceLocation Loc, ExprArg expr); |
Anders Carlsson | dfab6cb | 2008-02-08 00:33:21 +0000 | [diff] [blame] | 620 | |
Steve Naroff | b216c88 | 2007-10-09 22:01:59 +0000 | [diff] [blame] | 621 | /// Scope actions. |
| 622 | virtual void ActOnPopScope(SourceLocation Loc, Scope *S); |
| 623 | virtual void ActOnTranslationUnitScope(SourceLocation Loc, Scope *S); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 624 | |
| 625 | /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with |
| 626 | /// no declarator (e.g. "struct foo;") is parsed. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 627 | virtual DeclPtrTy ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 628 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 629 | bool InjectAnonymousStructOrUnionMembers(Scope *S, DeclContext *Owner, |
| 630 | RecordDecl *AnonRecord); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 631 | virtual DeclPtrTy BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 632 | RecordDecl *Record); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 633 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 634 | bool isAcceptableTagRedeclaration(const TagDecl *Previous, |
Douglas Gregor | 501c5ce | 2009-05-14 16:41:31 +0000 | [diff] [blame] | 635 | TagDecl::TagKind NewTag, |
| 636 | SourceLocation NewTagLoc, |
| 637 | const IdentifierInfo &Name); |
Douglas Gregor | ed4ec8f | 2009-05-03 17:18:57 +0000 | [diff] [blame] | 638 | |
John McCall | 0f434ec | 2009-07-31 02:45:11 +0000 | [diff] [blame] | 639 | virtual DeclPtrTy ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 640 | SourceLocation KWLoc, const CXXScopeSpec &SS, |
| 641 | IdentifierInfo *Name, SourceLocation NameLoc, |
Douglas Gregor | 402abb5 | 2009-05-28 23:31:59 +0000 | [diff] [blame] | 642 | AttributeList *Attr, AccessSpecifier AS, |
Douglas Gregor | 7cdbc58 | 2009-07-22 23:48:44 +0000 | [diff] [blame] | 643 | MultiTemplateParamsArg TemplateParameterLists, |
John McCall | c4e7019 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 644 | bool &OwnedDecl, bool &IsDependent); |
| 645 | |
| 646 | virtual TypeResult ActOnDependentTag(Scope *S, |
| 647 | unsigned TagSpec, |
| 648 | TagUseKind TUK, |
| 649 | const CXXScopeSpec &SS, |
| 650 | IdentifierInfo *Name, |
| 651 | SourceLocation TagLoc, |
| 652 | SourceLocation NameLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 653 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 654 | virtual void ActOnDefs(Scope *S, DeclPtrTy TagD, SourceLocation DeclStart, |
Chris Lattner | 06f5485 | 2008-08-23 02:00:52 +0000 | [diff] [blame] | 655 | IdentifierInfo *ClassName, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 656 | llvm::SmallVectorImpl<DeclPtrTy> &Decls); |
| 657 | virtual DeclPtrTy ActOnField(Scope *S, DeclPtrTy TagD, |
| 658 | SourceLocation DeclStart, |
| 659 | Declarator &D, ExprTy *BitfieldWidth); |
Chris Lattner | 2479366 | 2009-03-05 22:45:59 +0000 | [diff] [blame] | 660 | |
| 661 | FieldDecl *HandleField(Scope *S, RecordDecl *TagD, SourceLocation DeclStart, |
Douglas Gregor | 4dd55f5 | 2009-03-11 20:50:30 +0000 | [diff] [blame] | 662 | Declarator &D, Expr *BitfieldWidth, |
| 663 | AccessSpecifier AS); |
Chris Lattner | 2479366 | 2009-03-05 22:45:59 +0000 | [diff] [blame] | 664 | |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 665 | FieldDecl *CheckFieldDecl(DeclarationName Name, QualType T, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 666 | DeclaratorInfo *DInfo, |
Douglas Gregor | 3cf538d | 2009-03-11 18:59:21 +0000 | [diff] [blame] | 667 | RecordDecl *Record, SourceLocation Loc, |
| 668 | bool Mutable, Expr *BitfieldWidth, |
Steve Naroff | ea218b8 | 2009-07-14 14:58:18 +0000 | [diff] [blame] | 669 | SourceLocation TSSL, |
Douglas Gregor | 4dd55f5 | 2009-03-11 20:50:30 +0000 | [diff] [blame] | 670 | AccessSpecifier AS, NamedDecl *PrevDecl, |
Douglas Gregor | 3cf538d | 2009-03-11 18:59:21 +0000 | [diff] [blame] | 671 | Declarator *D = 0); |
Douglas Gregor | 1f2023a | 2009-07-22 18:25:24 +0000 | [diff] [blame] | 672 | |
| 673 | enum CXXSpecialMember { |
| 674 | CXXDefaultConstructor = 0, |
| 675 | CXXCopyConstructor = 1, |
| 676 | CXXCopyAssignment = 2, |
| 677 | CXXDestructor = 3 |
| 678 | }; |
| 679 | void DiagnoseNontrivial(const RecordType* Record, CXXSpecialMember mem); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 680 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 681 | virtual DeclPtrTy ActOnIvar(Scope *S, SourceLocation DeclStart, |
Fariborz Jahanian | 496b5a8 | 2009-06-05 18:16:35 +0000 | [diff] [blame] | 682 | DeclPtrTy IntfDecl, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 683 | Declarator &D, ExprTy *BitfieldWidth, |
| 684 | tok::ObjCKeywordKind visibility); |
Fariborz Jahanian | 1d78cc4 | 2008-04-10 23:32:45 +0000 | [diff] [blame] | 685 | |
Steve Naroff | f13271f | 2007-09-14 23:09:53 +0000 | [diff] [blame] | 686 | // This is used for both record definitions and ObjC interface declarations. |
Fariborz Jahanian | 9d048ff | 2007-09-29 00:54:24 +0000 | [diff] [blame] | 687 | virtual void ActOnFields(Scope* S, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 688 | SourceLocation RecLoc, DeclPtrTy TagDecl, |
| 689 | DeclPtrTy *Fields, unsigned NumFields, |
Daniel Dunbar | 1bfe1c2 | 2008-10-03 02:03:53 +0000 | [diff] [blame] | 690 | SourceLocation LBrac, SourceLocation RBrac, |
| 691 | AttributeList *AttrList); |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 692 | |
| 693 | /// ActOnTagStartDefinition - Invoked when we have entered the |
| 694 | /// scope of a tag's definition (e.g., for an enumeration, class, |
| 695 | /// struct, or union). |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 696 | virtual void ActOnTagStartDefinition(Scope *S, DeclPtrTy TagDecl); |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 697 | |
| 698 | /// ActOnTagFinishDefinition - Invoked once we have finished parsing |
| 699 | /// the definition of a tag (enumeration, class, struct, or union). |
Argyrios Kyrtzidis | 07a5b28 | 2009-07-14 03:17:52 +0000 | [diff] [blame] | 700 | virtual void ActOnTagFinishDefinition(Scope *S, DeclPtrTy TagDecl, |
| 701 | SourceLocation RBraceLoc); |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 702 | |
Douglas Gregor | 879fd49 | 2009-03-17 19:05:46 +0000 | [diff] [blame] | 703 | EnumConstantDecl *CheckEnumConstant(EnumDecl *Enum, |
| 704 | EnumConstantDecl *LastEnumConst, |
| 705 | SourceLocation IdLoc, |
| 706 | IdentifierInfo *Id, |
| 707 | ExprArg val); |
| 708 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 709 | virtual DeclPtrTy ActOnEnumConstant(Scope *S, DeclPtrTy EnumDecl, |
| 710 | DeclPtrTy LastEnumConstant, |
| 711 | SourceLocation IdLoc, IdentifierInfo *Id, |
| 712 | SourceLocation EqualLoc, ExprTy *Val); |
Mike Stump | c6e35aa | 2009-05-16 07:06:02 +0000 | [diff] [blame] | 713 | virtual void ActOnEnumBody(SourceLocation EnumLoc, SourceLocation LBraceLoc, |
| 714 | SourceLocation RBraceLoc, DeclPtrTy EnumDecl, |
Edward O'Callaghan | fee1381 | 2009-08-08 14:36:57 +0000 | [diff] [blame] | 715 | DeclPtrTy *Elements, unsigned NumElements, |
| 716 | Scope *S, AttributeList *Attr); |
Sebastian Redl | 37d6de3 | 2008-11-08 13:00:26 +0000 | [diff] [blame] | 717 | |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 718 | DeclContext *getContainingDC(DeclContext *DC); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 719 | |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 720 | /// Set the current declaration context until it gets popped. |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 721 | void PushDeclContext(Scope *S, DeclContext *DC); |
Chris Lattner | b048c98 | 2008-04-06 04:47:34 +0000 | [diff] [blame] | 722 | void PopDeclContext(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 723 | |
Argyrios Kyrtzidis | 1d17553 | 2009-06-17 23:15:40 +0000 | [diff] [blame] | 724 | /// EnterDeclaratorContext - Used when we must lookup names in the context |
| 725 | /// of a declarator's nested name specifier. |
| 726 | void EnterDeclaratorContext(Scope *S, DeclContext *DC); |
| 727 | void ExitDeclaratorContext(Scope *S); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 728 | |
Anders Carlsson | 8517d9b | 2009-08-08 17:45:02 +0000 | [diff] [blame] | 729 | DeclContext *getFunctionLevelDeclContext(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 730 | |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 731 | /// getCurFunctionDecl - If inside of a function body, this returns a pointer |
| 732 | /// to the function decl for the function being parsed. If we're currently |
| 733 | /// in a 'block', this returns the containing context. |
| 734 | FunctionDecl *getCurFunctionDecl(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 735 | |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 736 | /// getCurMethodDecl - If inside of a method body, this returns a pointer to |
| 737 | /// the method decl for the method being parsed. If we're currently |
| 738 | /// in a 'block', this returns the containing context. |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 739 | ObjCMethodDecl *getCurMethodDecl(); |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 740 | |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 741 | /// getCurFunctionOrMethodDecl - Return the Decl for the current ObjC method |
| 742 | /// or C function we're in, otherwise return null. If we're currently |
| 743 | /// in a 'block', this returns the containing context. |
| 744 | NamedDecl *getCurFunctionOrMethodDecl(); |
| 745 | |
Argyrios Kyrtzidis | 87f3ff0 | 2008-04-12 00:47:19 +0000 | [diff] [blame] | 746 | /// Add this decl to the scope shadowed decl chains. |
John McCall | ab88d97 | 2009-08-31 22:39:49 +0000 | [diff] [blame] | 747 | void PushOnScopeChains(NamedDecl *D, Scope *S, bool AddToContext = true); |
Argyrios Kyrtzidis | 87f3ff0 | 2008-04-12 00:47:19 +0000 | [diff] [blame] | 748 | |
Argyrios Kyrtzidis | 15a12d0 | 2008-09-09 21:18:04 +0000 | [diff] [blame] | 749 | /// isDeclInScope - If 'Ctx' is a function/method, isDeclInScope returns true |
| 750 | /// if 'D' is in Scope 'S', otherwise 'S' is ignored and isDeclInScope returns |
| 751 | /// true if 'D' belongs to the given declaration context. |
Douglas Gregor | 2531c2d | 2009-09-28 00:47:05 +0000 | [diff] [blame] | 752 | bool isDeclInScope(NamedDecl *&D, DeclContext *Ctx, Scope *S = 0); |
Argyrios Kyrtzidis | 15a12d0 | 2008-09-09 21:18:04 +0000 | [diff] [blame] | 753 | |
John McCall | ab88d97 | 2009-08-31 22:39:49 +0000 | [diff] [blame] | 754 | /// Finds the scope corresponding to the given decl context, if it |
| 755 | /// happens to be an enclosing scope. Otherwise return NULL. |
| 756 | Scope *getScopeForDeclContext(Scope *S, DeclContext *DC) { |
John McCall | 1a26c27 | 2009-09-02 01:07:03 +0000 | [diff] [blame] | 757 | DeclContext *TargetDC = DC->getPrimaryContext(); |
John McCall | ab88d97 | 2009-08-31 22:39:49 +0000 | [diff] [blame] | 758 | do { |
John McCall | 1a26c27 | 2009-09-02 01:07:03 +0000 | [diff] [blame] | 759 | if (DeclContext *ScopeDC = (DeclContext*) S->getEntity()) |
| 760 | if (ScopeDC->getPrimaryContext() == TargetDC) |
| 761 | return S; |
John McCall | ab88d97 | 2009-08-31 22:39:49 +0000 | [diff] [blame] | 762 | } while ((S = S->getParent())); |
| 763 | |
| 764 | return NULL; |
| 765 | } |
| 766 | |
Fariborz Jahanian | 34acd3e | 2009-09-15 19:12:21 +0000 | [diff] [blame] | 767 | /// OverloadingResult - Capture the result of performing overload |
| 768 | /// resolution. |
| 769 | enum OverloadingResult { |
| 770 | OR_Success, ///< Overload resolution succeeded. |
| 771 | OR_No_Viable_Function, ///< No viable function found. |
| 772 | OR_Ambiguous, ///< Ambiguous candidates found. |
| 773 | OR_Deleted ///< Overload resoltuion refers to a deleted function. |
| 774 | }; |
| 775 | |
Eli Friedman | 8f17b66 | 2009-02-28 05:41:13 +0000 | [diff] [blame] | 776 | |
Chris Lattner | f1d705c | 2008-02-21 01:07:18 +0000 | [diff] [blame] | 777 | /// Subroutines of ActOnDeclarator(). |
John McCall | ba6a9bd | 2009-10-24 08:00:42 +0000 | [diff] [blame] | 778 | TypedefDecl *ParseTypedefDecl(Scope *S, Declarator &D, QualType T, |
| 779 | DeclaratorInfo *DInfo); |
Chris Lattner | eaaebc7 | 2009-04-25 08:06:05 +0000 | [diff] [blame] | 780 | void MergeTypeDefDecl(TypedefDecl *New, Decl *Old); |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 781 | bool MergeFunctionDecl(FunctionDecl *New, Decl *Old); |
Douglas Gregor | 04495c8 | 2009-02-24 01:23:02 +0000 | [diff] [blame] | 782 | bool MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDecl *Old); |
Chris Lattner | eaaebc7 | 2009-04-25 08:06:05 +0000 | [diff] [blame] | 783 | void MergeVarDecl(VarDecl *New, Decl *Old); |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 784 | bool MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old); |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 785 | |
| 786 | /// C++ Overloading. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 787 | bool IsOverload(FunctionDecl *New, Decl* OldD, |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 788 | OverloadedFunctionDecl::function_iterator &MatchedDecl); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 789 | ImplicitConversionSequence |
Anders Carlsson | 2974b5c | 2009-08-27 17:14:02 +0000 | [diff] [blame] | 790 | TryImplicitConversion(Expr* From, QualType ToType, |
Anders Carlsson | da7a18b | 2009-08-27 17:24:15 +0000 | [diff] [blame] | 791 | bool SuppressUserConversions, |
| 792 | bool AllowExplicit, |
Anders Carlsson | 0897292 | 2009-08-28 15:33:32 +0000 | [diff] [blame] | 793 | bool ForceRValue, |
Fariborz Jahanian | 249cead | 2009-10-01 20:39:51 +0000 | [diff] [blame] | 794 | bool InOverloadResolution, |
| 795 | bool UserCast = false); |
Anders Carlsson | 0897292 | 2009-08-28 15:33:32 +0000 | [diff] [blame] | 796 | bool IsStandardConversion(Expr *From, QualType ToType, |
| 797 | bool InOverloadResolution, |
Douglas Gregor | 60d62c2 | 2008-10-31 16:23:19 +0000 | [diff] [blame] | 798 | StandardConversionSequence& SCS); |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 799 | bool IsIntegralPromotion(Expr *From, QualType FromType, QualType ToType); |
| 800 | bool IsFloatingPointPromotion(QualType FromType, QualType ToType); |
Douglas Gregor | 5cdf821 | 2009-02-12 00:15:05 +0000 | [diff] [blame] | 801 | bool IsComplexPromotion(QualType FromType, QualType ToType); |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 802 | bool IsPointerConversion(Expr *From, QualType FromType, QualType ToType, |
Anders Carlsson | 0897292 | 2009-08-28 15:33:32 +0000 | [diff] [blame] | 803 | bool InOverloadResolution, |
Douglas Gregor | 45920e8 | 2008-12-19 17:40:08 +0000 | [diff] [blame] | 804 | QualType& ConvertedType, bool &IncompatibleObjC); |
Douglas Gregor | c788751 | 2008-12-19 19:13:09 +0000 | [diff] [blame] | 805 | bool isObjCPointerConversion(QualType FromType, QualType ToType, |
| 806 | QualType& ConvertedType, bool &IncompatibleObjC); |
Anders Carlsson | 61faec1 | 2009-09-12 04:46:44 +0000 | [diff] [blame] | 807 | bool CheckPointerConversion(Expr *From, QualType ToType, |
| 808 | CastExpr::CastKind &Kind); |
Sebastian Redl | 4433aaf | 2009-01-25 19:43:20 +0000 | [diff] [blame] | 809 | bool IsMemberPointerConversion(Expr *From, QualType FromType, QualType ToType, |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 810 | bool InOverloadResolution, |
Sebastian Redl | 4433aaf | 2009-01-25 19:43:20 +0000 | [diff] [blame] | 811 | QualType &ConvertedType); |
Anders Carlsson | 27a5b9b | 2009-08-22 23:33:40 +0000 | [diff] [blame] | 812 | bool CheckMemberPointerConversion(Expr *From, QualType ToType, |
| 813 | CastExpr::CastKind &Kind); |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 814 | bool IsQualificationConversion(QualType FromType, QualType ToType); |
Fariborz Jahanian | 34acd3e | 2009-09-15 19:12:21 +0000 | [diff] [blame] | 815 | OverloadingResult IsUserDefinedConversion(Expr *From, QualType ToType, |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 816 | UserDefinedConversionSequence& User, |
Fariborz Jahanian | 78cf9a2 | 2009-09-15 00:10:11 +0000 | [diff] [blame] | 817 | OverloadCandidateSet& Conversions, |
Douglas Gregor | 734d986 | 2009-01-30 23:27:23 +0000 | [diff] [blame] | 818 | bool AllowConversionFunctions, |
Fariborz Jahanian | 249cead | 2009-10-01 20:39:51 +0000 | [diff] [blame] | 819 | bool AllowExplicit, bool ForceRValue, |
| 820 | bool UserCast = false); |
Fariborz Jahanian | 17c7a5d | 2009-09-22 20:24:30 +0000 | [diff] [blame] | 821 | bool DiagnoseAmbiguousUserDefinedConversion(Expr *From, QualType ToType); |
| 822 | |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 823 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 824 | ImplicitConversionSequence::CompareKind |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 825 | CompareImplicitConversionSequences(const ImplicitConversionSequence& ICS1, |
| 826 | const ImplicitConversionSequence& ICS2); |
| 827 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 828 | ImplicitConversionSequence::CompareKind |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 829 | CompareStandardConversionSequences(const StandardConversionSequence& SCS1, |
| 830 | const StandardConversionSequence& SCS2); |
| 831 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 832 | ImplicitConversionSequence::CompareKind |
Douglas Gregor | 5737326 | 2008-10-22 14:17:15 +0000 | [diff] [blame] | 833 | CompareQualificationConversions(const StandardConversionSequence& SCS1, |
| 834 | const StandardConversionSequence& SCS2); |
| 835 | |
Douglas Gregor | bc0805a | 2008-10-23 00:40:37 +0000 | [diff] [blame] | 836 | ImplicitConversionSequence::CompareKind |
| 837 | CompareDerivedToBaseConversions(const StandardConversionSequence& SCS1, |
| 838 | const StandardConversionSequence& SCS2); |
| 839 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 840 | ImplicitConversionSequence |
Douglas Gregor | 225c41e | 2008-11-03 19:09:14 +0000 | [diff] [blame] | 841 | TryCopyInitialization(Expr* From, QualType ToType, |
Anders Carlsson | 7b361b5 | 2009-08-27 17:37:39 +0000 | [diff] [blame] | 842 | bool SuppressUserConversions, bool ForceRValue, |
| 843 | bool InOverloadResolution); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 844 | bool PerformCopyInitialization(Expr *&From, QualType ToType, |
Sebastian Redl | e2b6833 | 2009-04-12 17:16:29 +0000 | [diff] [blame] | 845 | const char *Flavor, bool Elidable = false); |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 846 | |
Douglas Gregor | 96176b3 | 2008-11-18 23:14:02 +0000 | [diff] [blame] | 847 | ImplicitConversionSequence |
| 848 | TryObjectArgumentInitialization(Expr *From, CXXMethodDecl *Method); |
| 849 | bool PerformObjectArgumentInitialization(Expr *&From, CXXMethodDecl *Method); |
| 850 | |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 851 | ImplicitConversionSequence TryContextuallyConvertToBool(Expr *From); |
| 852 | bool PerformContextuallyConvertToBool(Expr *&From); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 853 | |
Fariborz Jahanian | f3e53d3 | 2009-07-29 19:40:11 +0000 | [diff] [blame] | 854 | bool PerformObjectMemberConversion(Expr *&From, NamedDecl *Member); |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 855 | |
John McCall | 6ff0785 | 2009-08-07 22:18:02 +0000 | [diff] [blame] | 856 | // Members have to be NamespaceDecl* or TranslationUnitDecl*. |
| 857 | // TODO: make this is a typesafe union. |
| 858 | typedef llvm::SmallPtrSet<DeclContext *, 16> AssociatedNamespaceSet; |
| 859 | |
Douglas Gregor | 364e021 | 2009-06-27 21:05:07 +0000 | [diff] [blame] | 860 | typedef llvm::SmallPtrSet<AnyFunctionDecl, 16> FunctionSet; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 861 | typedef llvm::SmallPtrSet<CXXRecordDecl *, 16> AssociatedClassSet; |
| 862 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 863 | void AddOverloadCandidate(FunctionDecl *Function, |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 864 | Expr **Args, unsigned NumArgs, |
Douglas Gregor | 225c41e | 2008-11-03 19:09:14 +0000 | [diff] [blame] | 865 | OverloadCandidateSet& CandidateSet, |
Sebastian Redl | e2b6833 | 2009-04-12 17:16:29 +0000 | [diff] [blame] | 866 | bool SuppressUserConversions = false, |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 867 | bool ForceRValue = false, |
| 868 | bool PartialOverloading = false); |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 869 | void AddFunctionCandidates(const FunctionSet &Functions, |
| 870 | Expr **Args, unsigned NumArgs, |
| 871 | OverloadCandidateSet& CandidateSet, |
| 872 | bool SuppressUserConversions = false); |
Douglas Gregor | 96176b3 | 2008-11-18 23:14:02 +0000 | [diff] [blame] | 873 | void AddMethodCandidate(CXXMethodDecl *Method, |
| 874 | Expr *Object, Expr **Args, unsigned NumArgs, |
| 875 | OverloadCandidateSet& CandidateSet, |
Sebastian Redl | e2b6833 | 2009-04-12 17:16:29 +0000 | [diff] [blame] | 876 | bool SuppressUserConversions = false, |
| 877 | bool ForceRValue = false); |
Douglas Gregor | 6b90686 | 2009-08-21 00:16:32 +0000 | [diff] [blame] | 878 | void AddMethodTemplateCandidate(FunctionTemplateDecl *MethodTmpl, |
| 879 | bool HasExplicitTemplateArgs, |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 880 | const TemplateArgumentLoc *ExplicitTemplateArgs, |
Douglas Gregor | 6b90686 | 2009-08-21 00:16:32 +0000 | [diff] [blame] | 881 | unsigned NumExplicitTemplateArgs, |
| 882 | Expr *Object, Expr **Args, unsigned NumArgs, |
| 883 | OverloadCandidateSet& CandidateSet, |
| 884 | bool SuppressUserConversions = false, |
| 885 | bool ForceRValue = false); |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 886 | void AddTemplateOverloadCandidate(FunctionTemplateDecl *FunctionTemplate, |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 887 | bool HasExplicitTemplateArgs, |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 888 | const TemplateArgumentLoc *ExplicitTemplateArgs, |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 889 | unsigned NumExplicitTemplateArgs, |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 890 | Expr **Args, unsigned NumArgs, |
| 891 | OverloadCandidateSet& CandidateSet, |
| 892 | bool SuppressUserConversions = false, |
| 893 | bool ForceRValue = false); |
Douglas Gregor | f1991ea | 2008-11-07 22:36:19 +0000 | [diff] [blame] | 894 | void AddConversionCandidate(CXXConversionDecl *Conversion, |
| 895 | Expr *From, QualType ToType, |
| 896 | OverloadCandidateSet& CandidateSet); |
Douglas Gregor | 65ec1fd | 2009-08-21 23:19:43 +0000 | [diff] [blame] | 897 | void AddTemplateConversionCandidate(FunctionTemplateDecl *FunctionTemplate, |
| 898 | Expr *From, QualType ToType, |
| 899 | OverloadCandidateSet &CandidateSet); |
Douglas Gregor | 106c6eb | 2008-11-19 22:57:39 +0000 | [diff] [blame] | 900 | void AddSurrogateCandidate(CXXConversionDecl *Conversion, |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 901 | const FunctionProtoType *Proto, |
Douglas Gregor | 106c6eb | 2008-11-19 22:57:39 +0000 | [diff] [blame] | 902 | Expr *Object, Expr **Args, unsigned NumArgs, |
| 903 | OverloadCandidateSet& CandidateSet); |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 904 | void AddOperatorCandidates(OverloadedOperatorKind Op, Scope *S, |
Douglas Gregor | f680a0f | 2009-02-04 16:44:47 +0000 | [diff] [blame] | 905 | SourceLocation OpLoc, |
Douglas Gregor | 96176b3 | 2008-11-18 23:14:02 +0000 | [diff] [blame] | 906 | Expr **Args, unsigned NumArgs, |
Douglas Gregor | f680a0f | 2009-02-04 16:44:47 +0000 | [diff] [blame] | 907 | OverloadCandidateSet& CandidateSet, |
| 908 | SourceRange OpRange = SourceRange()); |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 909 | void AddMemberOperatorCandidates(OverloadedOperatorKind Op, |
| 910 | SourceLocation OpLoc, |
| 911 | Expr **Args, unsigned NumArgs, |
| 912 | OverloadCandidateSet& CandidateSet, |
| 913 | SourceRange OpRange = SourceRange()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 914 | void AddBuiltinCandidate(QualType ResultTy, QualType *ParamTys, |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 915 | Expr **Args, unsigned NumArgs, |
Douglas Gregor | 88b4bf2 | 2009-01-13 00:52:54 +0000 | [diff] [blame] | 916 | OverloadCandidateSet& CandidateSet, |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 917 | bool IsAssignmentOperator = false, |
| 918 | unsigned NumContextualBoolArguments = 0); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 919 | void AddBuiltinOperatorCandidates(OverloadedOperatorKind Op, |
Douglas Gregor | 573d9c3 | 2009-10-21 23:19:44 +0000 | [diff] [blame] | 920 | SourceLocation OpLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 921 | Expr **Args, unsigned NumArgs, |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 922 | OverloadCandidateSet& CandidateSet); |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 923 | void AddArgumentDependentLookupCandidates(DeclarationName Name, |
| 924 | Expr **Args, unsigned NumArgs, |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 925 | bool HasExplicitTemplateArgs, |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 926 | const TemplateArgumentLoc *ExplicitTemplateArgs, |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 927 | unsigned NumExplicitTemplateArgs, |
| 928 | OverloadCandidateSet& CandidateSet, |
| 929 | bool PartialOverloading = false); |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 930 | bool isBetterOverloadCandidate(const OverloadCandidate& Cand1, |
| 931 | const OverloadCandidate& Cand2); |
| 932 | OverloadingResult BestViableFunction(OverloadCandidateSet& CandidateSet, |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 933 | SourceLocation Loc, |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 934 | OverloadCandidateSet::iterator& Best); |
| 935 | void PrintOverloadCandidates(OverloadCandidateSet& CandidateSet, |
Fariborz Jahanian | 16a5eac | 2009-10-09 00:13:15 +0000 | [diff] [blame] | 936 | bool OnlyViable, |
Fariborz Jahanian | 2ebe7eb | 2009-10-12 20:11:40 +0000 | [diff] [blame] | 937 | const char *Opc=0, |
Fariborz Jahanian | 16a5eac | 2009-10-09 00:13:15 +0000 | [diff] [blame] | 938 | SourceLocation Loc=SourceLocation()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 939 | |
Douglas Gregor | 904eed3 | 2008-11-10 20:40:00 +0000 | [diff] [blame] | 940 | FunctionDecl *ResolveAddressOfOverloadedFunction(Expr *From, QualType ToType, |
| 941 | bool Complain); |
Anders Carlsson | 96ad533 | 2009-10-21 17:16:23 +0000 | [diff] [blame] | 942 | Expr *FixOverloadedFunctionReference(Expr *E, FunctionDecl *Fn); |
Douglas Gregor | 904eed3 | 2008-11-10 20:40:00 +0000 | [diff] [blame] | 943 | |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 944 | void AddOverloadedCallCandidates(NamedDecl *Callee, |
| 945 | DeclarationName &UnqualifiedName, |
| 946 | bool &ArgumentDependentLookup, |
| 947 | bool HasExplicitTemplateArgs, |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 948 | const TemplateArgumentLoc *ExplicitTemplateArgs, |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 949 | unsigned NumExplicitTemplateArgs, |
| 950 | Expr **Args, unsigned NumArgs, |
| 951 | OverloadCandidateSet &CandidateSet, |
| 952 | bool PartialOverloading = false); |
| 953 | |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 954 | FunctionDecl *ResolveOverloadedCallFn(Expr *Fn, NamedDecl *Callee, |
| 955 | DeclarationName UnqualifiedName, |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 956 | bool HasExplicitTemplateArgs, |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 957 | const TemplateArgumentLoc *ExplicitTemplateArgs, |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 958 | unsigned NumExplicitTemplateArgs, |
Douglas Gregor | 0a39668 | 2008-11-26 06:01:48 +0000 | [diff] [blame] | 959 | SourceLocation LParenLoc, |
| 960 | Expr **Args, unsigned NumArgs, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 961 | SourceLocation *CommaLocs, |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 962 | SourceLocation RParenLoc, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 963 | bool &ArgumentDependentLookup); |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 964 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 965 | OwningExprResult CreateOverloadedUnaryOp(SourceLocation OpLoc, |
| 966 | unsigned Opc, |
| 967 | FunctionSet &Functions, |
| 968 | ExprArg input); |
| 969 | |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 970 | OwningExprResult CreateOverloadedBinOp(SourceLocation OpLoc, |
| 971 | unsigned Opc, |
| 972 | FunctionSet &Functions, |
| 973 | Expr *LHS, Expr *RHS); |
| 974 | |
Sebastian Redl | f322ed6 | 2009-10-29 20:17:01 +0000 | [diff] [blame] | 975 | OwningExprResult CreateOverloadedArraySubscriptExpr(SourceLocation LLoc, |
| 976 | SourceLocation RLoc, |
| 977 | ExprArg Base,ExprArg Idx); |
| 978 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 979 | ExprResult |
| 980 | BuildCallToMemberFunction(Scope *S, Expr *MemExpr, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 981 | SourceLocation LParenLoc, Expr **Args, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 982 | unsigned NumArgs, SourceLocation *CommaLocs, |
| 983 | SourceLocation RParenLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 984 | ExprResult |
Douglas Gregor | 5c37de7 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 985 | BuildCallToObjectOfClassType(Scope *S, Expr *Object, SourceLocation LParenLoc, |
Douglas Gregor | f9eb905 | 2008-11-19 21:05:33 +0000 | [diff] [blame] | 986 | Expr **Args, unsigned NumArgs, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 987 | SourceLocation *CommaLocs, |
Douglas Gregor | f9eb905 | 2008-11-19 21:05:33 +0000 | [diff] [blame] | 988 | SourceLocation RParenLoc); |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 989 | |
Douglas Gregor | fe85ced | 2009-08-06 03:17:00 +0000 | [diff] [blame] | 990 | OwningExprResult BuildOverloadedArrowExpr(Scope *S, ExprArg Base, |
| 991 | SourceLocation OpLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 992 | |
Anders Carlsson | 8c8d919 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 993 | /// CheckCallReturnType - Checks that a call expression's return type is |
| 994 | /// complete. Returns true on failure. The location passed in is the location |
| 995 | /// that best represents the call. |
| 996 | bool CheckCallReturnType(QualType ReturnType, SourceLocation Loc, |
| 997 | CallExpr *CE, FunctionDecl *FD); |
| 998 | |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 999 | /// Helpers for dealing with blocks and functions. |
Mike Stump | b1682c5 | 2009-07-22 23:56:57 +0000 | [diff] [blame] | 1000 | void CheckFallThroughForFunctionDef(Decl *D, Stmt *Body); |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 1001 | void CheckFallThroughForBlock(QualType BlockTy, Stmt *Body); |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 1002 | bool CheckParmsForFunctionDef(FunctionDecl *FD); |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 1003 | void CheckCXXDefaultArguments(FunctionDecl *FD); |
Douglas Gregor | 6d6eb57 | 2008-05-07 04:49:29 +0000 | [diff] [blame] | 1004 | void CheckExtraCXXDefaultArguments(Declarator &D); |
Mike Stump | b1682c5 | 2009-07-22 23:56:57 +0000 | [diff] [blame] | 1005 | enum ControlFlowKind { NeverFallThrough = 0, MaybeFallThrough = 1, |
Mike Stump | 1d7e767 | 2009-10-27 01:59:05 +0000 | [diff] [blame] | 1006 | AlwaysFallThrough = 2, NeverFallThroughOrReturn = 3 }; |
Mike Stump | b1682c5 | 2009-07-22 23:56:57 +0000 | [diff] [blame] | 1007 | ControlFlowKind CheckFallThrough(Stmt *); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1008 | |
Douglas Gregor | 1a0d31a | 2009-01-12 18:45:55 +0000 | [diff] [blame] | 1009 | Scope *getNonFieldDeclScope(Scope *S); |
| 1010 | |
Douglas Gregor | eb11cd0 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1011 | /// \name Name lookup |
| 1012 | /// |
| 1013 | /// These routines provide name lookup that is used during semantic |
| 1014 | /// analysis to resolve the various kinds of names (identifiers, |
| 1015 | /// overloaded operator names, constructor names, etc.) into zero or |
| 1016 | /// more declarations within a particular scope. The major entry |
| 1017 | /// points are LookupName, which performs unqualified name lookup, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1018 | /// and LookupQualifiedName, which performs qualified name lookup. |
Douglas Gregor | eb11cd0 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1019 | /// |
| 1020 | /// All name lookup is performed based on some specific criteria, |
| 1021 | /// which specify what names will be visible to name lookup and how |
| 1022 | /// far name lookup should work. These criteria are important both |
| 1023 | /// for capturing language semantics (certain lookups will ignore |
| 1024 | /// certain names, for example) and for performance, since name |
| 1025 | /// lookup is often a bottleneck in the compilation of C++. Name |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1026 | /// lookup criteria is specified via the LookupCriteria enumeration. |
Douglas Gregor | eb11cd0 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1027 | /// |
| 1028 | /// The results of name lookup can vary based on the kind of name |
| 1029 | /// lookup performed, the current language, and the translation |
| 1030 | /// unit. In C, for example, name lookup will either return nothing |
| 1031 | /// (no entity found) or a single declaration. In C++, name lookup |
| 1032 | /// can additionally refer to a set of overloaded functions or |
| 1033 | /// result in an ambiguity. All of the possible results of name |
| 1034 | /// lookup are captured by the LookupResult class, which provides |
| 1035 | /// the ability to distinguish among them. |
| 1036 | //@{ |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 1037 | |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1038 | /// @brief Describes the kind of name lookup to perform. |
| 1039 | enum LookupNameKind { |
| 1040 | /// Ordinary name lookup, which finds ordinary names (functions, |
| 1041 | /// variables, typedefs, etc.) in C and most kinds of names |
| 1042 | /// (functions, variables, members, types, etc.) in C++. |
| 1043 | LookupOrdinaryName = 0, |
| 1044 | /// Tag name lookup, which finds the names of enums, classes, |
| 1045 | /// structs, and unions. |
| 1046 | LookupTagName, |
| 1047 | /// Member name lookup, which finds the names of |
| 1048 | /// class/struct/union members. |
| 1049 | LookupMemberName, |
Douglas Gregor | f680a0f | 2009-02-04 16:44:47 +0000 | [diff] [blame] | 1050 | // Look up of an operator name (e.g., operator+) for use with |
| 1051 | // operator overloading. This lookup is similar to ordinary name |
| 1052 | // lookup, but will ignore any declarations that are class |
| 1053 | // members. |
| 1054 | LookupOperatorName, |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1055 | /// Look up of a name that precedes the '::' scope resolution |
| 1056 | /// operator in C++. This lookup completely ignores operator, |
| 1057 | /// function, and enumerator names (C++ [basic.lookup.qual]p1). |
| 1058 | LookupNestedNameSpecifierName, |
| 1059 | /// Look up a namespace name within a C++ using directive or |
| 1060 | /// namespace alias definition, ignoring non-namespace names (C++ |
| 1061 | /// [basic.lookup.udir]p1). |
Douglas Gregor | d6f7e9d | 2009-02-24 20:03:32 +0000 | [diff] [blame] | 1062 | LookupNamespaceName, |
Douglas Gregor | 6e378de | 2009-04-23 23:18:26 +0000 | [diff] [blame] | 1063 | /// Look up an ordinary name that is going to be redeclared as a |
| 1064 | /// name with linkage. This lookup ignores any declarations that |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1065 | /// are outside of the current scope unless they have linkage. See |
Douglas Gregor | 6e378de | 2009-04-23 23:18:26 +0000 | [diff] [blame] | 1066 | /// C99 6.2.2p4-5 and C++ [basic.link]p6. |
| 1067 | LookupRedeclarationWithLinkage, |
| 1068 | /// Look up the name of an Objective-C protocol. |
Douglas Gregor | 8fc463a | 2009-04-24 00:11:27 +0000 | [diff] [blame] | 1069 | LookupObjCProtocolName, |
| 1070 | /// Look up the name of an Objective-C implementation |
| 1071 | LookupObjCImplementationName, |
| 1072 | /// Look up the name of an Objective-C category implementation |
| 1073 | LookupObjCCategoryImplName |
Douglas Gregor | eb11cd0 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1074 | }; |
| 1075 | |
| 1076 | /// @brief Represents the results of name lookup. |
| 1077 | /// |
| 1078 | /// An instance of the LookupResult class captures the results of a |
| 1079 | /// single name lookup, which can return no result (nothing found), |
| 1080 | /// a single declaration, a set of overloaded functions, or an |
| 1081 | /// ambiguity. Use the getKind() method to determine which of these |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1082 | /// results occurred for a given lookup. |
Douglas Gregor | eb11cd0 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1083 | /// |
| 1084 | /// Any non-ambiguous lookup can be converted into a single |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1085 | /// (possibly NULL) @c NamedDecl* via the getAsSingleDecl() method. |
| 1086 | /// This permits the common-case usage in C and Objective-C where |
| 1087 | /// name lookup will always return a single declaration. Use of |
| 1088 | /// this is largely deprecated; callers should handle the possibility |
| 1089 | /// of multiple declarations. |
| 1090 | class LookupResult { |
| 1091 | public: |
Douglas Gregor | eb11cd0 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1092 | enum LookupKind { |
| 1093 | /// @brief No entity found met the criteria. |
| 1094 | NotFound = 0, |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 1095 | |
Douglas Gregor | eb11cd0 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1096 | /// @brief Name lookup found a single declaration that met the |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 1097 | /// criteria. getAsDecl will return this declaration. |
Douglas Gregor | eb11cd0 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1098 | Found, |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 1099 | |
Douglas Gregor | eb11cd0 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1100 | /// @brief Name lookup found a set of overloaded functions that |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 1101 | /// met the criteria. getAsDecl will turn this set of overloaded |
| 1102 | /// functions into an OverloadedFunctionDecl. |
Douglas Gregor | eb11cd0 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1103 | FoundOverloaded, |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 1104 | |
John McCall | 6e24726 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1105 | /// @brief Name lookup results in an ambiguity; use |
| 1106 | /// getAmbiguityKind to figure out what kind of ambiguity |
| 1107 | /// we have. |
| 1108 | Ambiguous |
| 1109 | }; |
| 1110 | |
| 1111 | enum AmbiguityKind { |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 1112 | /// Name lookup results in an ambiguity because multiple |
| 1113 | /// entities that meet the lookup criteria were found in |
| 1114 | /// subobjects of different types. For example: |
| 1115 | /// @code |
| 1116 | /// struct A { void f(int); } |
| 1117 | /// struct B { void f(double); } |
| 1118 | /// struct C : A, B { }; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1119 | /// void test(C c) { |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 1120 | /// c.f(0); // error: A::f and B::f come from subobjects of different |
| 1121 | /// // types. overload resolution is not performed. |
| 1122 | /// } |
| 1123 | /// @endcode |
| 1124 | AmbiguousBaseSubobjectTypes, |
| 1125 | |
| 1126 | /// Name lookup results in an ambiguity because multiple |
| 1127 | /// nonstatic entities that meet the lookup criteria were found |
| 1128 | /// in different subobjects of the same type. For example: |
| 1129 | /// @code |
| 1130 | /// struct A { int x; }; |
| 1131 | /// struct B : A { }; |
| 1132 | /// struct C : A { }; |
| 1133 | /// struct D : B, C { }; |
| 1134 | /// int test(D d) { |
| 1135 | /// return d.x; // error: 'x' is found in two A subobjects (of B and C) |
| 1136 | /// } |
| 1137 | /// @endcode |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1138 | AmbiguousBaseSubobjects, |
| 1139 | |
| 1140 | /// Name lookup results in an ambiguity because multiple definitions |
| 1141 | /// of entity that meet the lookup criteria were found in different |
| 1142 | /// declaration contexts. |
| 1143 | /// @code |
| 1144 | /// namespace A { |
| 1145 | /// int i; |
| 1146 | /// namespace B { int i; } |
| 1147 | /// int test() { |
| 1148 | /// using namespace B; |
| 1149 | /// return i; // error 'i' is found in namespace A and A::B |
| 1150 | /// } |
| 1151 | /// } |
| 1152 | /// @endcode |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1153 | AmbiguousReference, |
| 1154 | |
John McCall | 6e24726 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1155 | /// Name lookup results in an ambiguity because an entity with a |
| 1156 | /// tag name was hidden by an entity with an ordinary name from |
| 1157 | /// a different context. |
| 1158 | /// @code |
| 1159 | /// namespace A { struct Foo {}; } |
| 1160 | /// namespace B { void Foo(); } |
| 1161 | /// namespace C { |
| 1162 | /// using namespace A; |
| 1163 | /// using namespace B; |
| 1164 | /// } |
| 1165 | /// void test() { |
| 1166 | /// C::Foo(); // error: tag 'A::Foo' is hidden by an object in a |
| 1167 | /// // different namespace |
| 1168 | /// } |
| 1169 | /// @endcode |
| 1170 | AmbiguousTagHiding |
Douglas Gregor | eb11cd0 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1171 | }; |
| 1172 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1173 | typedef llvm::SmallVector<NamedDecl*, 4> DeclsTy; |
| 1174 | typedef DeclsTy::const_iterator iterator; |
Douglas Gregor | 4bb64e7 | 2009-01-15 02:19:31 +0000 | [diff] [blame] | 1175 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1176 | LookupResult() |
| 1177 | : Kind(NotFound), |
| 1178 | Paths(0) |
| 1179 | {} |
| 1180 | ~LookupResult() { |
| 1181 | if (Paths) deletePaths(Paths); |
Douglas Gregor | 69d993a | 2009-01-17 01:13:24 +0000 | [diff] [blame] | 1182 | } |
Douglas Gregor | 4bb64e7 | 2009-01-15 02:19:31 +0000 | [diff] [blame] | 1183 | |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1184 | bool isAmbiguous() const { |
John McCall | 6e24726 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1185 | return getKind() == Ambiguous; |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1186 | } |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 1187 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1188 | LookupKind getKind() const { |
| 1189 | sanity(); |
| 1190 | return Kind; |
| 1191 | } |
Douglas Gregor | eb11cd0 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1192 | |
John McCall | 6e24726 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1193 | AmbiguityKind getAmbiguityKind() const { |
| 1194 | assert(isAmbiguous()); |
| 1195 | return Ambiguity; |
| 1196 | } |
| 1197 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1198 | iterator begin() const { return Decls.begin(); } |
| 1199 | iterator end() const { return Decls.end(); } |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 1200 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1201 | /// \brief Return true if no decls were found |
| 1202 | bool empty() const { return Decls.empty(); } |
Douglas Gregor | d863517 | 2009-02-02 21:35:47 +0000 | [diff] [blame] | 1203 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1204 | /// \brief Return the base paths structure that's associated with |
| 1205 | /// these results, or null if none is. |
| 1206 | CXXBasePaths *getBasePaths() const { |
| 1207 | return Paths; |
| 1208 | } |
| 1209 | |
| 1210 | /// \brief Add a declaration to these results. |
| 1211 | void addDecl(NamedDecl *D) { |
| 1212 | Decls.push_back(D->getUnderlyingDecl()); |
| 1213 | Kind = Found; |
| 1214 | } |
| 1215 | |
John McCall | 6e24726 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1216 | /// \brief Add all the declarations from another set of lookup |
| 1217 | /// results. |
| 1218 | void addAllDecls(const LookupResult &Other) { |
| 1219 | Decls.append(Other.begin(), Other.end()); |
| 1220 | Kind = Found; |
| 1221 | } |
| 1222 | |
| 1223 | /// \brief Hides a set of declarations. |
| 1224 | template <class NamedDeclSet> void hideDecls(const NamedDeclSet &Set) { |
| 1225 | unsigned I = 0, N = Decls.size(); |
| 1226 | while (I < N) { |
| 1227 | if (Set.count(Decls[I])) |
| 1228 | Decls[I] = Decls[--N]; |
| 1229 | else |
| 1230 | I++; |
| 1231 | } |
| 1232 | Decls.set_size(N); |
| 1233 | } |
| 1234 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1235 | /// \brief Resolves the kind of the lookup, possibly hiding decls. |
Douglas Gregor | d863517 | 2009-02-02 21:35:47 +0000 | [diff] [blame] | 1236 | /// |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1237 | /// This should be called in any environment where lookup might |
| 1238 | /// generate multiple lookup results. |
| 1239 | void resolveKind(); |
Douglas Gregor | d863517 | 2009-02-02 21:35:47 +0000 | [diff] [blame] | 1240 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1241 | /// \brief Fetch this as an unambiguous single declaration |
| 1242 | /// (possibly an overloaded one). |
| 1243 | /// |
| 1244 | /// This is deprecated; users should be written to handle |
| 1245 | /// ambiguous and overloaded lookups. |
| 1246 | NamedDecl *getAsSingleDecl(ASTContext &Context) const; |
Douglas Gregor | d863517 | 2009-02-02 21:35:47 +0000 | [diff] [blame] | 1247 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1248 | /// \brief Fetch the unique decl found by this lookup. Asserts |
| 1249 | /// that one was found. |
| 1250 | /// |
| 1251 | /// This is intended for users who have examined the result kind |
| 1252 | /// and are certain that there is only one result. |
| 1253 | NamedDecl *getFoundDecl() const { |
| 1254 | assert(getKind() == Found && "getFoundDecl called on non-unique result"); |
| 1255 | return *Decls.begin(); |
| 1256 | } |
Douglas Gregor | d863517 | 2009-02-02 21:35:47 +0000 | [diff] [blame] | 1257 | |
John McCall | 6e24726 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1258 | /// \brief Asks if the result is a single tag decl. |
| 1259 | bool isSingleTagDecl() const { |
| 1260 | return getKind() == Found && isa<TagDecl>(getFoundDecl()); |
| 1261 | } |
| 1262 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1263 | /// \brief Make these results show that the name was found in |
| 1264 | /// base classes of different types. |
| 1265 | /// |
| 1266 | /// The given paths object is copied and invalidated. |
| 1267 | void setAmbiguousBaseSubobjectTypes(CXXBasePaths &P); |
Douglas Gregor | d863517 | 2009-02-02 21:35:47 +0000 | [diff] [blame] | 1268 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1269 | /// \brief Make these results show that the name was found in |
| 1270 | /// distinct base classes of the same type. |
| 1271 | /// |
| 1272 | /// The given paths object is copied and invalidated. |
| 1273 | void setAmbiguousBaseSubobjects(CXXBasePaths &P); |
Douglas Gregor | d863517 | 2009-02-02 21:35:47 +0000 | [diff] [blame] | 1274 | |
John McCall | 6e24726 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1275 | /// \brief Make these results show that the name was found in |
| 1276 | /// different contexts and a tag decl was hidden by an ordinary |
| 1277 | /// decl in a different context. |
| 1278 | void setAmbiguousQualifiedTagHiding() { |
| 1279 | setAmbiguous(AmbiguousTagHiding); |
| 1280 | } |
| 1281 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1282 | /// \brief Clears out any current state. |
| 1283 | void clear() { |
| 1284 | Kind = NotFound; |
| 1285 | Decls.clear(); |
| 1286 | if (Paths) deletePaths(Paths); |
| 1287 | Paths = NULL; |
| 1288 | } |
Douglas Gregor | d863517 | 2009-02-02 21:35:47 +0000 | [diff] [blame] | 1289 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1290 | void print(llvm::raw_ostream &); |
Douglas Gregor | d863517 | 2009-02-02 21:35:47 +0000 | [diff] [blame] | 1291 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1292 | private: |
John McCall | 6e24726 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1293 | void setAmbiguous(AmbiguityKind AK) { |
| 1294 | Kind = Ambiguous; |
| 1295 | Ambiguity = AK; |
| 1296 | } |
| 1297 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1298 | void addDeclsFromBasePaths(const CXXBasePaths &P); |
Douglas Gregor | d863517 | 2009-02-02 21:35:47 +0000 | [diff] [blame] | 1299 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1300 | // Sanity checks. |
| 1301 | void sanity() const { |
| 1302 | assert(Kind != NotFound || Decls.size() == 0); |
| 1303 | assert(Kind != Found || Decls.size() == 1); |
| 1304 | assert(Kind == NotFound || Kind == Found || |
John McCall | 6e24726 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1305 | (Kind == Ambiguous && Ambiguity == AmbiguousBaseSubobjects) |
| 1306 | || Decls.size() > 1); |
| 1307 | assert((Paths != NULL) == (Kind == Ambiguous && |
| 1308 | (Ambiguity == AmbiguousBaseSubobjectTypes || |
| 1309 | Ambiguity == AmbiguousBaseSubobjects))); |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1310 | } |
Douglas Gregor | d863517 | 2009-02-02 21:35:47 +0000 | [diff] [blame] | 1311 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1312 | static void deletePaths(CXXBasePaths *); |
Douglas Gregor | d863517 | 2009-02-02 21:35:47 +0000 | [diff] [blame] | 1313 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1314 | LookupKind Kind; |
John McCall | 6e24726 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1315 | AmbiguityKind Ambiguity; // ill-defined unless ambiguous |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1316 | DeclsTy Decls; |
| 1317 | CXXBasePaths *Paths; |
Douglas Gregor | eb11cd0 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1318 | }; |
| 1319 | |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1320 | private: |
| 1321 | typedef llvm::SmallVector<LookupResult, 3> LookupResultsVecTy; |
| 1322 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1323 | bool CppLookupName(LookupResult &R, Scope *S, DeclarationName Name, |
| 1324 | LookupNameKind NameKind, bool RedeclarationOnly); |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1325 | public: |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1326 | /// Determines whether D is a suitable lookup result according to the |
| 1327 | /// lookup criteria. |
Douglas Gregor | d6f7e9d | 2009-02-24 20:03:32 +0000 | [diff] [blame] | 1328 | static bool isAcceptableLookupResult(NamedDecl *D, LookupNameKind NameKind, |
Douglas Gregor | 7dda67d | 2009-02-05 19:25:20 +0000 | [diff] [blame] | 1329 | unsigned IDNS) { |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1330 | switch (NameKind) { |
| 1331 | case Sema::LookupOrdinaryName: |
| 1332 | case Sema::LookupTagName: |
| 1333 | case Sema::LookupMemberName: |
Douglas Gregor | d6f7e9d | 2009-02-24 20:03:32 +0000 | [diff] [blame] | 1334 | case Sema::LookupRedeclarationWithLinkage: // FIXME: check linkage, scoping |
Douglas Gregor | 8fc463a | 2009-04-24 00:11:27 +0000 | [diff] [blame] | 1335 | case Sema::LookupObjCProtocolName: |
| 1336 | case Sema::LookupObjCImplementationName: |
| 1337 | case Sema::LookupObjCCategoryImplName: |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1338 | return D->isInIdentifierNamespace(IDNS); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1339 | |
Douglas Gregor | f680a0f | 2009-02-04 16:44:47 +0000 | [diff] [blame] | 1340 | case Sema::LookupOperatorName: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1341 | return D->isInIdentifierNamespace(IDNS) && |
Douglas Gregor | f680a0f | 2009-02-04 16:44:47 +0000 | [diff] [blame] | 1342 | !D->getDeclContext()->isRecord(); |
| 1343 | |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1344 | case Sema::LookupNestedNameSpecifierName: |
| 1345 | return isa<TypedefDecl>(D) || D->isInIdentifierNamespace(Decl::IDNS_Tag); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1346 | |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1347 | case Sema::LookupNamespaceName: |
Anders Carlsson | 81c85c4 | 2009-03-28 23:53:49 +0000 | [diff] [blame] | 1348 | return isa<NamespaceDecl>(D) || isa<NamespaceAliasDecl>(D); |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1349 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1350 | |
| 1351 | assert(false && |
Douglas Gregor | 7dda67d | 2009-02-05 19:25:20 +0000 | [diff] [blame] | 1352 | "isAcceptableLookupResult always returns before this point"); |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1353 | return false; |
| 1354 | } |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 1355 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1356 | /// \brief Look up a name, looking for a single declaration. Return |
| 1357 | /// null if no unambiguous results were found. |
| 1358 | /// |
| 1359 | /// It is preferable to use the elaborated form and explicitly handle |
| 1360 | /// ambiguity and overloaded. |
| 1361 | NamedDecl *LookupSingleName(Scope *S, DeclarationName Name, |
| 1362 | LookupNameKind NameKind, |
| 1363 | bool RedeclarationOnly = false) { |
| 1364 | LookupResult R; |
| 1365 | LookupName(R, S, Name, NameKind, RedeclarationOnly); |
| 1366 | return R.getAsSingleDecl(Context); |
| 1367 | } |
| 1368 | bool LookupName(LookupResult &R, Scope *S, |
| 1369 | DeclarationName Name, |
| 1370 | LookupNameKind NameKind, |
| 1371 | bool RedeclarationOnly = false, |
| 1372 | bool AllowBuiltinCreation = false, |
| 1373 | SourceLocation Loc = SourceLocation()); |
| 1374 | bool LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx, |
| 1375 | DeclarationName Name, |
| 1376 | LookupNameKind NameKind, |
| 1377 | bool RedeclarationOnly = false); |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1378 | bool LookupParsedName(LookupResult &R, Scope *S, const CXXScopeSpec *SS, |
| 1379 | DeclarationName Name, |
| 1380 | LookupNameKind NameKind, |
| 1381 | bool RedeclarationOnly = false, |
| 1382 | bool AllowBuiltinCreation = false, |
| 1383 | SourceLocation Loc = SourceLocation(), |
| 1384 | bool EnteringContext = false); |
Douglas Gregor | 3fd95ce | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 1385 | |
Douglas Gregor | 6e378de | 2009-04-23 23:18:26 +0000 | [diff] [blame] | 1386 | ObjCProtocolDecl *LookupProtocol(IdentifierInfo *II); |
Douglas Gregor | 8fc463a | 2009-04-24 00:11:27 +0000 | [diff] [blame] | 1387 | ObjCCategoryImplDecl *LookupObjCCategoryImpl(IdentifierInfo *II); |
Douglas Gregor | 6e378de | 2009-04-23 23:18:26 +0000 | [diff] [blame] | 1388 | |
Douglas Gregor | 3fd95ce | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 1389 | void LookupOverloadedOperatorName(OverloadedOperatorKind Op, Scope *S, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1390 | QualType T1, QualType T2, |
Douglas Gregor | 3fd95ce | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 1391 | FunctionSet &Functions); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1392 | |
Sebastian Redl | 644be85 | 2009-10-23 19:23:15 +0000 | [diff] [blame] | 1393 | void ArgumentDependentLookup(DeclarationName Name, bool Operator, |
Douglas Gregor | 3fd95ce | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 1394 | Expr **Args, unsigned NumArgs, |
| 1395 | FunctionSet &Functions); |
| 1396 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 1397 | void FindAssociatedClassesAndNamespaces(Expr **Args, unsigned NumArgs, |
| 1398 | AssociatedNamespaceSet &AssociatedNamespaces, |
John McCall | 6ff0785 | 2009-08-07 22:18:02 +0000 | [diff] [blame] | 1399 | AssociatedClassSet &AssociatedClasses); |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 1400 | |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 1401 | bool DiagnoseAmbiguousLookup(LookupResult &Result, DeclarationName Name, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1402 | SourceLocation NameLoc, |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 1403 | SourceRange LookupRange = SourceRange()); |
Douglas Gregor | eb11cd0 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1404 | //@} |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1405 | |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1406 | ObjCInterfaceDecl *getObjCInterfaceDecl(IdentifierInfo *Id); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1407 | NamedDecl *LazilyCreateBuiltin(IdentifierInfo *II, unsigned ID, |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 1408 | Scope *S, bool ForRedeclaration, |
| 1409 | SourceLocation Loc); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1410 | NamedDecl *ImplicitlyDefineFunction(SourceLocation Loc, IdentifierInfo &II, |
| 1411 | Scope *S); |
Douglas Gregor | 3c385e5 | 2009-02-14 18:57:46 +0000 | [diff] [blame] | 1412 | void AddKnownFunctionAttributes(FunctionDecl *FD); |
Douglas Gregor | eb11cd0 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1413 | |
| 1414 | // More parsing and symbol table subroutines. |
| 1415 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1416 | // Decl attributes - this routine is the top level dispatcher. |
Douglas Gregor | 9cdda0c | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 1417 | void ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD); |
| 1418 | void ProcessDeclAttributeList(Scope *S, Decl *D, const AttributeList *AttrList); |
Christopher Lamb | ebb97e9 | 2008-02-04 02:31:56 +0000 | [diff] [blame] | 1419 | |
Steve Naroff | 3c2eb66 | 2008-02-10 21:38:56 +0000 | [diff] [blame] | 1420 | void WarnUndefinedMethod(SourceLocation ImpLoc, ObjCMethodDecl *method, |
| 1421 | bool &IncompleteImpl); |
Fariborz Jahanian | 8daab97 | 2008-12-05 18:18:52 +0000 | [diff] [blame] | 1422 | void WarnConflictingTypedMethods(ObjCMethodDecl *ImpMethod, |
| 1423 | ObjCMethodDecl *IntfMethod); |
Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 1424 | |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 1425 | bool isPropertyReadonly(ObjCPropertyDecl *PropertyDecl, |
Steve Naroff | 22dc0b0 | 2009-02-26 19:11:32 +0000 | [diff] [blame] | 1426 | ObjCInterfaceDecl *IDecl); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1427 | |
Chris Lattner | 823c44e | 2009-01-06 07:27:21 +0000 | [diff] [blame] | 1428 | /// CheckProtocolMethodDefs - This routine checks unimplemented |
Daniel Dunbar | 7ad1b1f | 2008-09-04 20:01:15 +0000 | [diff] [blame] | 1429 | /// methods declared in protocol, and those referenced by it. |
| 1430 | /// \param IDecl - Used for checking for methods which may have been |
| 1431 | /// inherited. |
Steve Naroff | efe7f36 | 2008-02-08 22:06:17 +0000 | [diff] [blame] | 1432 | void CheckProtocolMethodDefs(SourceLocation ImpLoc, |
| 1433 | ObjCProtocolDecl *PDecl, |
Fariborz Jahanian | ca3adf7 | 2007-10-02 20:06:01 +0000 | [diff] [blame] | 1434 | bool& IncompleteImpl, |
Steve Naroff | eefc418 | 2007-10-08 21:05:34 +0000 | [diff] [blame] | 1435 | const llvm::DenseSet<Selector> &InsMap, |
Daniel Dunbar | 7ad1b1f | 2008-09-04 20:01:15 +0000 | [diff] [blame] | 1436 | const llvm::DenseSet<Selector> &ClsMap, |
| 1437 | ObjCInterfaceDecl *IDecl); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1438 | |
Steve Naroff | a5997c4 | 2007-10-02 21:43:37 +0000 | [diff] [blame] | 1439 | /// CheckImplementationIvars - This routine checks if the instance variables |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1440 | /// listed in the implelementation match those listed in the interface. |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1441 | void CheckImplementationIvars(ObjCImplementationDecl *ImpDecl, |
| 1442 | ObjCIvarDecl **Fields, unsigned nIvars, |
Steve Naroff | 3c2eb66 | 2008-02-10 21:38:56 +0000 | [diff] [blame] | 1443 | SourceLocation Loc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1444 | |
Fariborz Jahanian | 8c74fa4 | 2007-09-29 17:14:55 +0000 | [diff] [blame] | 1445 | /// ImplMethodsVsClassMethods - This is main routine to warn if any method |
Chris Lattner | cddc888 | 2009-03-01 00:56:52 +0000 | [diff] [blame] | 1446 | /// remains unimplemented in the class or category @implementation. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1447 | void ImplMethodsVsClassMethods(ObjCImplDecl* IMPDecl, |
| 1448 | ObjCContainerDecl* IDecl, |
Chris Lattner | cddc888 | 2009-03-01 00:56:52 +0000 | [diff] [blame] | 1449 | bool IncompleteImpl = false); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1450 | |
Fariborz Jahanian | 85ff264 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 1451 | /// MatchTwoMethodDeclarations - Checks if two methods' type match and returns |
| 1452 | /// true, or false, accordingly. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1453 | bool MatchTwoMethodDeclarations(const ObjCMethodDecl *Method, |
Steve Naroff | fe6b0dc | 2008-10-21 10:37:50 +0000 | [diff] [blame] | 1454 | const ObjCMethodDecl *PrevMethod, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1455 | bool matchBasedOnSizeAndAlignment = false); |
Steve Naroff | 3b95017 | 2007-10-10 21:53:07 +0000 | [diff] [blame] | 1456 | |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 1457 | /// MatchAllMethodDeclarations - Check methods declaraed in interface or |
| 1458 | /// or protocol against those declared in their implementations. |
| 1459 | void MatchAllMethodDeclarations(const llvm::DenseSet<Selector> &InsMap, |
| 1460 | const llvm::DenseSet<Selector> &ClsMap, |
| 1461 | llvm::DenseSet<Selector> &InsMapSeen, |
| 1462 | llvm::DenseSet<Selector> &ClsMapSeen, |
| 1463 | ObjCImplDecl* IMPDecl, |
| 1464 | ObjCContainerDecl* IDecl, |
| 1465 | bool &IncompleteImpl, |
| 1466 | bool ImmediateClass); |
| 1467 | |
Steve Naroff | 58ff9e8 | 2007-10-14 00:58:41 +0000 | [diff] [blame] | 1468 | /// AddInstanceMethodToGlobalPool - All instance methods in a translation |
| 1469 | /// unit are added to a global pool. This allows us to efficiently associate |
| 1470 | /// a selector with a method declaraation for purposes of typechecking |
| 1471 | /// messages sent to "id" (where the class of the object is unknown). |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1472 | void AddInstanceMethodToGlobalPool(ObjCMethodDecl *Method); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1473 | |
Steve Naroff | 037cda5 | 2008-09-30 14:38:43 +0000 | [diff] [blame] | 1474 | /// LookupInstanceMethodInGlobalPool - Returns the method and warns if |
| 1475 | /// there are multiple signatures. |
Fariborz Jahanian | 835ed7f | 2009-08-22 21:13:55 +0000 | [diff] [blame] | 1476 | ObjCMethodDecl *LookupInstanceMethodInGlobalPool(Selector Sel, SourceRange R, |
| 1477 | bool warn=true); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1478 | |
| 1479 | /// LookupFactoryMethodInGlobalPool - Returns the method and warns if |
| 1480 | /// there are multiple signatures. |
| 1481 | ObjCMethodDecl *LookupFactoryMethodInGlobalPool(Selector Sel, SourceRange R); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1482 | |
Steve Naroff | 58ff9e8 | 2007-10-14 00:58:41 +0000 | [diff] [blame] | 1483 | /// AddFactoryMethodToGlobalPool - Same as above, but for factory methods. |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1484 | void AddFactoryMethodToGlobalPool(ObjCMethodDecl *Method); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1485 | //===--------------------------------------------------------------------===// |
| 1486 | // Statement Parsing Callbacks: SemaStmt.cpp. |
| 1487 | public: |
Anders Carlsson | 6b1d283 | 2009-05-17 21:11:30 +0000 | [diff] [blame] | 1488 | virtual OwningStmtResult ActOnExprStmt(FullExprArg Expr); |
Sebastian Redl | a60528c | 2008-12-21 12:04:03 +0000 | [diff] [blame] | 1489 | |
| 1490 | virtual OwningStmtResult ActOnNullStmt(SourceLocation SemiLoc); |
| 1491 | virtual OwningStmtResult ActOnCompoundStmt(SourceLocation L, SourceLocation R, |
| 1492 | MultiStmtArg Elts, |
| 1493 | bool isStmtExpr); |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 1494 | virtual OwningStmtResult ActOnDeclStmt(DeclGroupPtrTy Decl, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1495 | SourceLocation StartLoc, |
Sebastian Redl | a60528c | 2008-12-21 12:04:03 +0000 | [diff] [blame] | 1496 | SourceLocation EndLoc); |
Sebastian Redl | 117054a | 2008-12-28 16:13:43 +0000 | [diff] [blame] | 1497 | virtual OwningStmtResult ActOnCaseStmt(SourceLocation CaseLoc, ExprArg LHSVal, |
| 1498 | SourceLocation DotDotDotLoc, ExprArg RHSVal, |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 1499 | SourceLocation ColonLoc); |
| 1500 | virtual void ActOnCaseStmtBody(StmtTy *CaseStmt, StmtArg SubStmt); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1501 | |
Sebastian Redl | 117054a | 2008-12-28 16:13:43 +0000 | [diff] [blame] | 1502 | virtual OwningStmtResult ActOnDefaultStmt(SourceLocation DefaultLoc, |
| 1503 | SourceLocation ColonLoc, |
| 1504 | StmtArg SubStmt, Scope *CurScope); |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 1505 | virtual OwningStmtResult ActOnLabelStmt(SourceLocation IdentLoc, |
| 1506 | IdentifierInfo *II, |
| 1507 | SourceLocation ColonLoc, |
| 1508 | StmtArg SubStmt); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1509 | virtual OwningStmtResult ActOnIfStmt(SourceLocation IfLoc, |
| 1510 | FullExprArg CondVal, StmtArg ThenVal, |
Anders Carlsson | a99fad8 | 2009-05-17 18:26:53 +0000 | [diff] [blame] | 1511 | SourceLocation ElseLoc, StmtArg ElseVal); |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 1512 | virtual OwningStmtResult ActOnStartOfSwitchStmt(ExprArg Cond); |
| 1513 | virtual OwningStmtResult ActOnFinishSwitchStmt(SourceLocation SwitchLoc, |
| 1514 | StmtArg Switch, StmtArg Body); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1515 | virtual OwningStmtResult ActOnWhileStmt(SourceLocation WhileLoc, |
Anders Carlsson | 7f537c1 | 2009-05-17 21:22:26 +0000 | [diff] [blame] | 1516 | FullExprArg Cond, StmtArg Body); |
Sebastian Redl | f05b152 | 2009-01-16 23:28:06 +0000 | [diff] [blame] | 1517 | virtual OwningStmtResult ActOnDoStmt(SourceLocation DoLoc, StmtArg Body, |
Chris Lattner | 9891359 | 2009-06-12 23:04:47 +0000 | [diff] [blame] | 1518 | SourceLocation WhileLoc, |
| 1519 | SourceLocation CondLParen, ExprArg Cond, |
| 1520 | SourceLocation CondRParen); |
Sebastian Redl | f05b152 | 2009-01-16 23:28:06 +0000 | [diff] [blame] | 1521 | |
| 1522 | virtual OwningStmtResult ActOnForStmt(SourceLocation ForLoc, |
| 1523 | SourceLocation LParenLoc, |
| 1524 | StmtArg First, ExprArg Second, |
| 1525 | ExprArg Third, SourceLocation RParenLoc, |
| 1526 | StmtArg Body); |
| 1527 | virtual OwningStmtResult ActOnObjCForCollectionStmt(SourceLocation ForColLoc, |
| 1528 | SourceLocation LParenLoc, |
| 1529 | StmtArg First, ExprArg Second, |
| 1530 | SourceLocation RParenLoc, StmtArg Body); |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 1531 | |
| 1532 | virtual OwningStmtResult ActOnGotoStmt(SourceLocation GotoLoc, |
| 1533 | SourceLocation LabelLoc, |
| 1534 | IdentifierInfo *LabelII); |
| 1535 | virtual OwningStmtResult ActOnIndirectGotoStmt(SourceLocation GotoLoc, |
| 1536 | SourceLocation StarLoc, |
| 1537 | ExprArg DestExp); |
| 1538 | virtual OwningStmtResult ActOnContinueStmt(SourceLocation ContinueLoc, |
| 1539 | Scope *CurScope); |
| 1540 | virtual OwningStmtResult ActOnBreakStmt(SourceLocation GotoLoc, |
| 1541 | Scope *CurScope); |
| 1542 | |
| 1543 | virtual OwningStmtResult ActOnReturnStmt(SourceLocation ReturnLoc, |
Anders Carlsson | f53b443 | 2009-08-18 16:11:00 +0000 | [diff] [blame] | 1544 | ExprArg RetValExp); |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 1545 | OwningStmtResult ActOnBlockReturnStmt(SourceLocation ReturnLoc, |
| 1546 | Expr *RetValExp); |
| 1547 | |
Sebastian Redl | 3037ed0 | 2009-01-18 16:53:17 +0000 | [diff] [blame] | 1548 | virtual OwningStmtResult ActOnAsmStmt(SourceLocation AsmLoc, |
| 1549 | bool IsSimple, |
| 1550 | bool IsVolatile, |
| 1551 | unsigned NumOutputs, |
| 1552 | unsigned NumInputs, |
| 1553 | std::string *Names, |
| 1554 | MultiExprArg Constraints, |
| 1555 | MultiExprArg Exprs, |
| 1556 | ExprArg AsmString, |
| 1557 | MultiExprArg Clobbers, |
| 1558 | SourceLocation RParenLoc); |
Sebastian Redl | 431e90e | 2009-01-18 17:43:11 +0000 | [diff] [blame] | 1559 | |
| 1560 | virtual OwningStmtResult ActOnObjCAtCatchStmt(SourceLocation AtLoc, |
| 1561 | SourceLocation RParen, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1562 | DeclPtrTy Parm, StmtArg Body, |
Sebastian Redl | 431e90e | 2009-01-18 17:43:11 +0000 | [diff] [blame] | 1563 | StmtArg CatchList); |
| 1564 | |
| 1565 | virtual OwningStmtResult ActOnObjCAtFinallyStmt(SourceLocation AtLoc, |
| 1566 | StmtArg Body); |
| 1567 | |
| 1568 | virtual OwningStmtResult ActOnObjCAtTryStmt(SourceLocation AtLoc, |
| 1569 | StmtArg Try, |
| 1570 | StmtArg Catch, StmtArg Finally); |
| 1571 | |
| 1572 | virtual OwningStmtResult ActOnObjCAtThrowStmt(SourceLocation AtLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1573 | ExprArg Throw, |
Steve Naroff | e21dd6f | 2009-02-11 20:05:44 +0000 | [diff] [blame] | 1574 | Scope *CurScope); |
Sebastian Redl | 431e90e | 2009-01-18 17:43:11 +0000 | [diff] [blame] | 1575 | virtual OwningStmtResult ActOnObjCAtSynchronizedStmt(SourceLocation AtLoc, |
| 1576 | ExprArg SynchExpr, |
| 1577 | StmtArg SynchBody); |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 1578 | |
Douglas Gregor | d308e62 | 2009-05-18 20:51:54 +0000 | [diff] [blame] | 1579 | VarDecl *BuildExceptionDeclaration(Scope *S, QualType ExDeclType, |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 1580 | DeclaratorInfo *DInfo, |
Douglas Gregor | d308e62 | 2009-05-18 20:51:54 +0000 | [diff] [blame] | 1581 | IdentifierInfo *Name, |
| 1582 | SourceLocation Loc, |
| 1583 | SourceRange Range); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1584 | virtual DeclPtrTy ActOnExceptionDeclarator(Scope *S, Declarator &D); |
Douglas Gregor | d308e62 | 2009-05-18 20:51:54 +0000 | [diff] [blame] | 1585 | |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 1586 | virtual OwningStmtResult ActOnCXXCatchBlock(SourceLocation CatchLoc, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1587 | DeclPtrTy ExDecl, |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 1588 | StmtArg HandlerBlock); |
Sebastian Redl | 8351da0 | 2008-12-22 21:35:02 +0000 | [diff] [blame] | 1589 | virtual OwningStmtResult ActOnCXXTryBlock(SourceLocation TryLoc, |
| 1590 | StmtArg TryBlock, |
| 1591 | MultiStmtArg Handlers); |
Sebastian Redl | 13e8854 | 2009-04-27 21:33:24 +0000 | [diff] [blame] | 1592 | void DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock); |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 1593 | |
Anders Carlsson | 636463e | 2009-07-30 22:17:18 +0000 | [diff] [blame] | 1594 | /// DiagnoseUnusedExprResult - If the statement passed in is an expression |
| 1595 | /// whose result is unused, warn. |
| 1596 | void DiagnoseUnusedExprResult(const Stmt *S); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1597 | |
John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 1598 | ParsingDeclStackState PushParsingDeclaration(); |
| 1599 | void PopParsingDeclaration(ParsingDeclStackState S, DeclPtrTy D); |
| 1600 | void EmitDeprecationWarning(NamedDecl *D, SourceLocation Loc); |
| 1601 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1602 | //===--------------------------------------------------------------------===// |
| 1603 | // Expression Parsing Callbacks: SemaExpr.cpp. |
| 1604 | |
John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 1605 | bool DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1606 | bool DiagnosePropertyAccessorMismatch(ObjCPropertyDecl *PD, |
Fariborz Jahanian | c001e89 | 2009-05-08 20:20:55 +0000 | [diff] [blame] | 1607 | ObjCMethodDecl *Getter, |
| 1608 | SourceLocation Loc); |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 1609 | void DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc, |
| 1610 | Expr **Args, unsigned NumArgs); |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 1611 | |
John McCall | b13c87f | 2009-11-05 09:23:39 +0000 | [diff] [blame] | 1612 | void CheckSignCompare(Expr *LHS, Expr *RHS, SourceLocation Loc, |
John McCall | 5dbad3d | 2009-11-06 08:49:08 +0000 | [diff] [blame^] | 1613 | const PartialDiagnostic &PD, |
| 1614 | bool Equality = false); |
John McCall | b13c87f | 2009-11-05 09:23:39 +0000 | [diff] [blame] | 1615 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1616 | virtual ExpressionEvaluationContext |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 1617 | PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1618 | |
| 1619 | virtual void |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 1620 | PopExpressionEvaluationContext(ExpressionEvaluationContext OldContext, |
| 1621 | ExpressionEvaluationContext NewContext); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1622 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1623 | void MarkDeclarationReferenced(SourceLocation Loc, Decl *D); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1624 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1625 | // Primary Expressions. |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 1626 | virtual SourceRange getExprRange(ExprTy *E) const; |
| 1627 | |
Douglas Gregor | 02a24ee | 2009-11-03 16:56:39 +0000 | [diff] [blame] | 1628 | virtual OwningExprResult ActOnIdExpression(Scope *S, |
| 1629 | const CXXScopeSpec &SS, |
| 1630 | UnqualifiedId &Name, |
| 1631 | bool HasTrailingLParen, |
| 1632 | bool IsAddressOfOperand); |
| 1633 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1634 | OwningExprResult BuildDeclRefExpr(NamedDecl *D, QualType Ty, |
| 1635 | SourceLocation Loc, bool TypeDependent, |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 1636 | bool ValueDependent, |
| 1637 | const CXXScopeSpec *SS = 0); |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1638 | VarDecl *BuildAnonymousStructUnionMemberPath(FieldDecl *Field, |
| 1639 | llvm::SmallVectorImpl<FieldDecl *> &Path); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1640 | OwningExprResult |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1641 | BuildAnonymousStructUnionMemberReference(SourceLocation Loc, |
| 1642 | FieldDecl *Field, |
| 1643 | Expr *BaseObjectExpr = 0, |
| 1644 | SourceLocation OpLoc = SourceLocation()); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1645 | OwningExprResult ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc, |
| 1646 | DeclarationName Name, |
| 1647 | bool HasTrailingLParen, |
| 1648 | const CXXScopeSpec *SS, |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 1649 | bool isAddressOfOperand = false); |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 1650 | OwningExprResult BuildDeclarationNameExpr(SourceLocation Loc, NamedDecl *D, |
| 1651 | bool HasTrailingLParen, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1652 | const CXXScopeSpec *SS, |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 1653 | bool isAddressOfOperand); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1654 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1655 | virtual OwningExprResult ActOnPredefinedExpr(SourceLocation Loc, |
| 1656 | tok::TokenKind Kind); |
| 1657 | virtual OwningExprResult ActOnNumericConstant(const Token &); |
| 1658 | virtual OwningExprResult ActOnCharacterConstant(const Token &); |
| 1659 | virtual OwningExprResult ActOnParenExpr(SourceLocation L, SourceLocation R, |
| 1660 | ExprArg Val); |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 1661 | virtual OwningExprResult ActOnParenListExpr(SourceLocation L, |
| 1662 | SourceLocation R, |
| 1663 | MultiExprArg Val); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1664 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 1665 | /// ActOnStringLiteral - The specified tokens were lexed as pasted string |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1666 | /// fragments (e.g. "foo" "bar" L"baz"). |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1667 | virtual OwningExprResult ActOnStringLiteral(const Token *Toks, |
| 1668 | unsigned NumToks); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1669 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1670 | // Binary/Unary Operators. 'Tok' is the token for the operator. |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 1671 | OwningExprResult CreateBuiltinUnaryOp(SourceLocation OpLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1672 | unsigned OpcIn, |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 1673 | ExprArg InputArg); |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 1674 | OwningExprResult BuildUnaryOp(Scope *S, SourceLocation OpLoc, |
| 1675 | UnaryOperator::Opcode Opc, ExprArg input); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1676 | virtual OwningExprResult ActOnUnaryOp(Scope *S, SourceLocation OpLoc, |
| 1677 | tok::TokenKind Op, ExprArg Input); |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1678 | |
John McCall | 5ab7517 | 2009-11-04 07:28:41 +0000 | [diff] [blame] | 1679 | OwningExprResult CreateSizeOfAlignOfExpr(DeclaratorInfo *T, |
| 1680 | SourceLocation OpLoc, |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1681 | bool isSizeOf, SourceRange R); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1682 | OwningExprResult CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc, |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1683 | bool isSizeOf, SourceRange R); |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 1684 | virtual OwningExprResult |
| 1685 | ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType, |
| 1686 | void *TyOrEx, const SourceRange &ArgRange); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1687 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1688 | bool CheckAlignOfExpr(Expr *E, SourceLocation OpLoc, const SourceRange &R); |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1689 | bool CheckSizeOfAlignOfOperand(QualType type, SourceLocation OpLoc, |
| 1690 | const SourceRange &R, bool isSizeof); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1691 | |
| 1692 | virtual OwningExprResult ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc, |
| 1693 | tok::TokenKind Kind, |
| 1694 | ExprArg Input); |
| 1695 | |
| 1696 | virtual OwningExprResult ActOnArraySubscriptExpr(Scope *S, ExprArg Base, |
| 1697 | SourceLocation LLoc, |
| 1698 | ExprArg Idx, |
| 1699 | SourceLocation RLoc); |
Sebastian Redl | f322ed6 | 2009-10-29 20:17:01 +0000 | [diff] [blame] | 1700 | OwningExprResult CreateBuiltinArraySubscriptExpr(ExprArg Base, |
| 1701 | SourceLocation LLoc, |
| 1702 | ExprArg Idx, |
| 1703 | SourceLocation RLoc); |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 1704 | |
| 1705 | OwningExprResult BuildMemberReferenceExpr(Scope *S, ExprArg Base, |
| 1706 | SourceLocation OpLoc, |
| 1707 | tok::TokenKind OpKind, |
| 1708 | SourceLocation MemberLoc, |
| 1709 | DeclarationName MemberName, |
| 1710 | DeclPtrTy ImplDecl, |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 1711 | const CXXScopeSpec *SS = 0, |
| 1712 | NamedDecl *FirstQualifierInScope = 0) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1713 | // FIXME: Temporary helper while we migrate existing calls to |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 1714 | // BuildMemberReferenceExpr to support explicitly-specified template |
| 1715 | // arguments. |
| 1716 | return BuildMemberReferenceExpr(S, move(Base), OpLoc, OpKind, MemberLoc, |
| 1717 | MemberName, false, SourceLocation(), 0, 0, |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 1718 | SourceLocation(), ImplDecl, SS, |
| 1719 | FirstQualifierInScope); |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 1720 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1721 | |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1722 | OwningExprResult BuildMemberReferenceExpr(Scope *S, ExprArg Base, |
| 1723 | SourceLocation OpLoc, |
| 1724 | tok::TokenKind OpKind, |
| 1725 | SourceLocation MemberLoc, |
| 1726 | DeclarationName MemberName, |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 1727 | bool HasExplicitTemplateArgs, |
| 1728 | SourceLocation LAngleLoc, |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 1729 | const TemplateArgumentLoc *ExplicitTemplateArgs, |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 1730 | unsigned NumExplicitTemplateArgs, |
| 1731 | SourceLocation RAngleLoc, |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1732 | DeclPtrTy ImplDecl, |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 1733 | const CXXScopeSpec *SS, |
| 1734 | NamedDecl *FirstQualifierInScope = 0); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1735 | |
Douglas Gregor | 2d1c214 | 2009-11-03 19:44:04 +0000 | [diff] [blame] | 1736 | virtual OwningExprResult ActOnMemberAccessExpr(Scope *S, ExprArg Base, |
| 1737 | SourceLocation OpLoc, |
| 1738 | tok::TokenKind OpKind, |
| 1739 | const CXXScopeSpec &SS, |
| 1740 | UnqualifiedId &Member, |
| 1741 | DeclPtrTy ObjCImpDecl, |
| 1742 | bool HasTrailingLParen); |
| 1743 | |
Fariborz Jahanian | 393612e | 2009-07-21 22:36:06 +0000 | [diff] [blame] | 1744 | virtual void ActOnDefaultCtorInitializers(DeclPtrTy CDtorDecl); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1745 | bool ConvertArgumentsForCall(CallExpr *Call, Expr *Fn, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1746 | FunctionDecl *FDecl, |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 1747 | const FunctionProtoType *Proto, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1748 | Expr **Args, unsigned NumArgs, |
| 1749 | SourceLocation RParenLoc); |
Fariborz Jahanian | 87595e4 | 2009-07-23 23:32:59 +0000 | [diff] [blame] | 1750 | void BuildBaseOrMemberInitializers(ASTContext &C, |
| 1751 | CXXConstructorDecl *Constructor, |
| 1752 | CXXBaseOrMemberInitializer **Initializers, |
| 1753 | unsigned NumInitializers |
| 1754 | ); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1755 | |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 1756 | void DeconstructCallFunction(Expr *FnExpr, |
| 1757 | NamedDecl *&Function, |
| 1758 | DeclarationName &Name, |
| 1759 | NestedNameSpecifier *&Qualifier, |
| 1760 | SourceRange &QualifierRange, |
| 1761 | bool &ArgumentDependentLookup, |
| 1762 | bool &HasExplicitTemplateArguments, |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 1763 | const TemplateArgumentLoc *&ExplicitTemplateArgs, |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 1764 | unsigned &NumExplicitTemplateArgs); |
| 1765 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 1766 | /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1767 | /// This provides the location of the left/right parens and a list of comma |
| 1768 | /// locations. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1769 | virtual OwningExprResult ActOnCallExpr(Scope *S, ExprArg Fn, |
| 1770 | SourceLocation LParenLoc, |
| 1771 | MultiExprArg Args, |
| 1772 | SourceLocation *CommaLocs, |
| 1773 | SourceLocation RParenLoc); |
| 1774 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 1775 | virtual OwningExprResult ActOnCastExpr(Scope *S, SourceLocation LParenLoc, |
| 1776 | TypeTy *Ty, SourceLocation RParenLoc, |
| 1777 | ExprArg Op); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1778 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 1779 | OwningExprResult MaybeConvertParenListExprToParenExpr(Scope *S, ExprArg ME); |
| 1780 | OwningExprResult ActOnCastOfParenListExpr(Scope *S, SourceLocation LParenLoc, |
| 1781 | SourceLocation RParenLoc, ExprArg E, |
| 1782 | QualType Ty); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 1783 | |
| 1784 | virtual OwningExprResult ActOnCompoundLiteral(SourceLocation LParenLoc, |
| 1785 | TypeTy *Ty, |
| 1786 | SourceLocation RParenLoc, |
| 1787 | ExprArg Op); |
| 1788 | |
| 1789 | virtual OwningExprResult ActOnInitList(SourceLocation LParenLoc, |
| 1790 | MultiExprArg InitList, |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 1791 | SourceLocation RParenLoc); |
| 1792 | |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1793 | virtual OwningExprResult ActOnDesignatedInitializer(Designation &Desig, |
| 1794 | SourceLocation Loc, |
Douglas Gregor | eeae8f0 | 2009-03-28 00:41:23 +0000 | [diff] [blame] | 1795 | bool GNUSyntax, |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1796 | OwningExprResult Init); |
| 1797 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 1798 | virtual OwningExprResult ActOnBinOp(Scope *S, SourceLocation TokLoc, |
| 1799 | tok::TokenKind Kind, |
| 1800 | ExprArg LHS, ExprArg RHS); |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 1801 | OwningExprResult BuildBinOp(Scope *S, SourceLocation OpLoc, |
| 1802 | BinaryOperator::Opcode Opc, |
| 1803 | Expr *lhs, Expr *rhs); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 1804 | OwningExprResult CreateBuiltinBinOp(SourceLocation TokLoc, |
| 1805 | unsigned Opc, Expr *lhs, Expr *rhs); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 1806 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 1807 | /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1808 | /// in the case of a the GNU conditional expr extension. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 1809 | virtual OwningExprResult ActOnConditionalOp(SourceLocation QuestionLoc, |
| 1810 | SourceLocation ColonLoc, |
| 1811 | ExprArg Cond, ExprArg LHS, |
| 1812 | ExprArg RHS); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1813 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 1814 | /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 1815 | virtual OwningExprResult ActOnAddrLabel(SourceLocation OpLoc, |
| 1816 | SourceLocation LabLoc, |
| 1817 | IdentifierInfo *LabelII); |
| 1818 | |
| 1819 | virtual OwningExprResult ActOnStmtExpr(SourceLocation LPLoc, StmtArg SubStmt, |
| 1820 | SourceLocation RPLoc); // "({..})" |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 1821 | |
| 1822 | /// __builtin_offsetof(type, a.b[123][456].c) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 1823 | virtual OwningExprResult ActOnBuiltinOffsetOf(Scope *S, |
| 1824 | SourceLocation BuiltinLoc, |
| 1825 | SourceLocation TypeLoc, |
| 1826 | TypeTy *Arg1, |
| 1827 | OffsetOfComponent *CompPtr, |
| 1828 | unsigned NumComponents, |
| 1829 | SourceLocation RParenLoc); |
| 1830 | |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 1831 | // __builtin_types_compatible_p(type1, type2) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 1832 | virtual OwningExprResult ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc, |
| 1833 | TypeTy *arg1, TypeTy *arg2, |
| 1834 | SourceLocation RPLoc); |
| 1835 | |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 1836 | // __builtin_choose_expr(constExpr, expr1, expr2) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 1837 | virtual OwningExprResult ActOnChooseExpr(SourceLocation BuiltinLoc, |
| 1838 | ExprArg cond, ExprArg expr1, |
| 1839 | ExprArg expr2, SourceLocation RPLoc); |
| 1840 | |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 1841 | // __builtin_va_arg(expr, type) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 1842 | virtual OwningExprResult ActOnVAArg(SourceLocation BuiltinLoc, |
| 1843 | ExprArg expr, TypeTy *type, |
| 1844 | SourceLocation RPLoc); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 1845 | |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 1846 | // __null |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 1847 | virtual OwningExprResult ActOnGNUNullExpr(SourceLocation TokenLoc); |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 1848 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 1849 | //===------------------------- "Block" Extension ------------------------===// |
| 1850 | |
| 1851 | /// ActOnBlockStart - This callback is invoked when a block literal is |
| 1852 | /// started. |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1853 | virtual void ActOnBlockStart(SourceLocation CaretLoc, Scope *CurScope); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 1854 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1855 | /// ActOnBlockArguments - This callback allows processing of block arguments. |
| 1856 | /// If there are no arguments, this is still invoked. |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 1857 | virtual void ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 1858 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 1859 | /// ActOnBlockError - If there is an error parsing a block, this callback |
| 1860 | /// is invoked to pop the information about the block from the action impl. |
| 1861 | virtual void ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 1862 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 1863 | /// ActOnBlockStmtExpr - This is called when the body of a block statement |
| 1864 | /// literal was successfully completed. ^(int x){...} |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 1865 | virtual OwningExprResult ActOnBlockStmtExpr(SourceLocation CaretLoc, |
| 1866 | StmtArg Body, Scope *CurScope); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 1867 | |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 1868 | //===---------------------------- C++ Features --------------------------===// |
| 1869 | |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 1870 | // Act on C++ namespaces |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1871 | virtual DeclPtrTy ActOnStartNamespaceDef(Scope *S, SourceLocation IdentLoc, |
| 1872 | IdentifierInfo *Ident, |
| 1873 | SourceLocation LBrace); |
| 1874 | virtual void ActOnFinishNamespaceDef(DeclPtrTy Dcl, SourceLocation RBrace); |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 1875 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1876 | virtual DeclPtrTy ActOnUsingDirective(Scope *CurScope, |
| 1877 | SourceLocation UsingLoc, |
| 1878 | SourceLocation NamespcLoc, |
| 1879 | const CXXScopeSpec &SS, |
| 1880 | SourceLocation IdentLoc, |
| 1881 | IdentifierInfo *NamespcName, |
| 1882 | AttributeList *AttrList); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1883 | |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1884 | void PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir); |
| 1885 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1886 | virtual DeclPtrTy ActOnNamespaceAliasDef(Scope *CurScope, |
Anders Carlsson | 03bd5a1 | 2009-03-28 22:53:22 +0000 | [diff] [blame] | 1887 | SourceLocation NamespaceLoc, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1888 | SourceLocation AliasLoc, |
| 1889 | IdentifierInfo *Alias, |
| 1890 | const CXXScopeSpec &SS, |
Anders Carlsson | 03bd5a1 | 2009-03-28 22:53:22 +0000 | [diff] [blame] | 1891 | SourceLocation IdentLoc, |
| 1892 | IdentifierInfo *Ident); |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 1893 | |
Anders Carlsson | c72160b | 2009-08-28 05:40:36 +0000 | [diff] [blame] | 1894 | NamedDecl *BuildUsingDeclaration(SourceLocation UsingLoc, |
| 1895 | const CXXScopeSpec &SS, |
| 1896 | SourceLocation IdentLoc, |
| 1897 | DeclarationName Name, |
| 1898 | AttributeList *AttrList, |
| 1899 | bool IsTypeName); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1900 | |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 1901 | virtual DeclPtrTy ActOnUsingDeclaration(Scope *CurScope, |
Anders Carlsson | 595adc1 | 2009-08-29 19:54:19 +0000 | [diff] [blame] | 1902 | AccessSpecifier AS, |
Anders Carlsson | c72160b | 2009-08-28 05:40:36 +0000 | [diff] [blame] | 1903 | SourceLocation UsingLoc, |
| 1904 | const CXXScopeSpec &SS, |
Douglas Gregor | 12c118a | 2009-11-04 16:30:06 +0000 | [diff] [blame] | 1905 | UnqualifiedId &Name, |
Anders Carlsson | c72160b | 2009-08-28 05:40:36 +0000 | [diff] [blame] | 1906 | AttributeList *AttrList, |
| 1907 | bool IsTypeName); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1908 | |
| 1909 | /// AddCXXDirectInitializerToDecl - This action is called immediately after |
Argyrios Kyrtzidis | 73a0d88 | 2008-10-06 17:10:33 +0000 | [diff] [blame] | 1910 | /// ActOnDeclarator, when a C++ direct initializer is present. |
| 1911 | /// e.g: "int x(1);" |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1912 | virtual void AddCXXDirectInitializerToDecl(DeclPtrTy Dcl, |
Argyrios Kyrtzidis | 73a0d88 | 2008-10-06 17:10:33 +0000 | [diff] [blame] | 1913 | SourceLocation LParenLoc, |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 1914 | MultiExprArg Exprs, |
Argyrios Kyrtzidis | 73a0d88 | 2008-10-06 17:10:33 +0000 | [diff] [blame] | 1915 | SourceLocation *CommaLocs, |
| 1916 | SourceLocation RParenLoc); |
| 1917 | |
Anders Carlsson | 49d4401 | 2009-04-24 05:16:06 +0000 | [diff] [blame] | 1918 | /// InitializeVarWithConstructor - Creates an CXXConstructExpr |
| 1919 | /// and sets it as the initializer for the the passed in VarDecl. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1920 | bool InitializeVarWithConstructor(VarDecl *VD, |
Anders Carlsson | 930e8d0 | 2009-04-16 23:50:50 +0000 | [diff] [blame] | 1921 | CXXConstructorDecl *Constructor, |
Anders Carlsson | f47511a | 2009-09-07 22:23:31 +0000 | [diff] [blame] | 1922 | MultiExprArg Exprs); |
Anders Carlsson | 9abf2ae | 2009-08-16 05:13:48 +0000 | [diff] [blame] | 1923 | |
Anders Carlsson | ec8e5ea | 2009-09-05 07:40:38 +0000 | [diff] [blame] | 1924 | /// BuildCXXConstructExpr - Creates a complete call to a constructor, |
| 1925 | /// including handling of its default argument expressions. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1926 | OwningExprResult BuildCXXConstructExpr(SourceLocation ConstructLoc, |
Anders Carlsson | ec8e5ea | 2009-09-05 07:40:38 +0000 | [diff] [blame] | 1927 | QualType DeclInitType, |
Anders Carlsson | da3f4e2 | 2009-08-25 05:12:04 +0000 | [diff] [blame] | 1928 | CXXConstructorDecl *Constructor, |
Anders Carlsson | f47511a | 2009-09-07 22:23:31 +0000 | [diff] [blame] | 1929 | MultiExprArg Exprs); |
Anders Carlsson | 9abf2ae | 2009-08-16 05:13:48 +0000 | [diff] [blame] | 1930 | |
Anders Carlsson | ec8e5ea | 2009-09-05 07:40:38 +0000 | [diff] [blame] | 1931 | // FIXME: Can re remove this and have the above BuildCXXConstructExpr check if |
| 1932 | // the constructor can be elidable? |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1933 | OwningExprResult BuildCXXConstructExpr(SourceLocation ConstructLoc, |
Anders Carlsson | ec8e5ea | 2009-09-05 07:40:38 +0000 | [diff] [blame] | 1934 | QualType DeclInitType, |
Anders Carlsson | da3f4e2 | 2009-08-25 05:12:04 +0000 | [diff] [blame] | 1935 | CXXConstructorDecl *Constructor, |
| 1936 | bool Elidable, |
Anders Carlsson | f47511a | 2009-09-07 22:23:31 +0000 | [diff] [blame] | 1937 | MultiExprArg Exprs); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1938 | |
| 1939 | OwningExprResult BuildCXXTemporaryObjectExpr(CXXConstructorDecl *Cons, |
| 1940 | QualType writtenTy, |
| 1941 | SourceLocation tyBeginLoc, |
Anders Carlsson | e7624a7 | 2009-08-27 05:08:22 +0000 | [diff] [blame] | 1942 | MultiExprArg Args, |
| 1943 | SourceLocation rParenLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1944 | |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 1945 | OwningExprResult BuildCXXCastArgument(SourceLocation CastLoc, |
| 1946 | QualType Ty, |
| 1947 | CastExpr::CastKind Kind, |
| 1948 | CXXMethodDecl *Method, |
| 1949 | ExprArg Arg); |
| 1950 | |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 1951 | /// BuildCXXDefaultArgExpr - Creates a CXXDefaultArgExpr, instantiating |
| 1952 | /// the default expr if needed. |
| 1953 | OwningExprResult BuildCXXDefaultArgExpr(SourceLocation CallLoc, |
| 1954 | FunctionDecl *FD, |
| 1955 | ParmVarDecl *Param); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1956 | |
Fariborz Jahanian | a83f7ed | 2009-08-03 19:13:25 +0000 | [diff] [blame] | 1957 | /// FinalizeVarWithDestructor - Prepare for calling destructor on the |
| 1958 | /// constructed variable. |
| 1959 | void FinalizeVarWithDestructor(VarDecl *VD, QualType DeclInitType); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1960 | |
| 1961 | /// DefineImplicitDefaultConstructor - Checks for feasibility of |
Fariborz Jahanian | f8dcb86 | 2009-06-19 19:55:27 +0000 | [diff] [blame] | 1962 | /// defining this constructor as the default constructor. |
| 1963 | void DefineImplicitDefaultConstructor(SourceLocation CurrentLocation, |
| 1964 | CXXConstructorDecl *Constructor); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1965 | |
| 1966 | /// DefineImplicitDestructor - Checks for feasibility of |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 1967 | /// defining this destructor as the default destructor. |
| 1968 | void DefineImplicitDestructor(SourceLocation CurrentLocation, |
| 1969 | CXXDestructorDecl *Destructor); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1970 | |
| 1971 | /// DefineImplicitCopyConstructor - Checks for feasibility of |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 1972 | /// defining this constructor as the copy constructor. |
| 1973 | void DefineImplicitCopyConstructor(SourceLocation CurrentLocation, |
| 1974 | CXXConstructorDecl *Constructor, |
| 1975 | unsigned TypeQuals); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1976 | |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 1977 | /// DefineImplicitOverloadedAssign - Checks for feasibility of |
| 1978 | /// defining implicit this overloaded assignment operator. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1979 | void DefineImplicitOverloadedAssign(SourceLocation CurrentLocation, |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 1980 | CXXMethodDecl *MethodDecl); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1981 | |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 1982 | /// getAssignOperatorMethod - Returns the default copy assignmment operator |
| 1983 | /// for the class. |
| 1984 | CXXMethodDecl *getAssignOperatorMethod(ParmVarDecl *Decl, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1985 | CXXRecordDecl *ClassDecl); |
Anders Carlsson | def1199 | 2009-05-30 20:36:53 +0000 | [diff] [blame] | 1986 | |
| 1987 | /// MaybeBindToTemporary - If the passed in expression has a record type with |
| 1988 | /// a non-trivial destructor, this will return CXXBindTemporaryExpr. Otherwise |
| 1989 | /// it simply returns the passed in expression. |
| 1990 | OwningExprResult MaybeBindToTemporary(Expr *E); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1991 | |
Douglas Gregor | f03d7c7 | 2008-11-05 15:29:30 +0000 | [diff] [blame] | 1992 | /// InitializationKind - Represents which kind of C++ initialization |
| 1993 | /// [dcl.init] a routine is to perform. |
| 1994 | enum InitializationKind { |
| 1995 | IK_Direct, ///< Direct initialization |
| 1996 | IK_Copy, ///< Copy initialization |
| 1997 | IK_Default ///< Default initialization |
| 1998 | }; |
| 1999 | |
Douglas Gregor | 18fe568 | 2008-11-03 20:45:27 +0000 | [diff] [blame] | 2000 | CXXConstructorDecl * |
Douglas Gregor | f03d7c7 | 2008-11-05 15:29:30 +0000 | [diff] [blame] | 2001 | PerformInitializationByConstructor(QualType ClassType, |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 2002 | MultiExprArg ArgsPtr, |
Douglas Gregor | f03d7c7 | 2008-11-05 15:29:30 +0000 | [diff] [blame] | 2003 | SourceLocation Loc, SourceRange Range, |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 2004 | DeclarationName InitEntity, |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 2005 | InitializationKind Kind, |
| 2006 | ASTOwningVector<&ActionBase::DeleteExpr> &ConvertedArgs); |
Douglas Gregor | 18fe568 | 2008-11-03 20:45:27 +0000 | [diff] [blame] | 2007 | |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 2008 | bool CompleteConstructorCall(CXXConstructorDecl *Constructor, |
| 2009 | MultiExprArg ArgsPtr, |
| 2010 | SourceLocation Loc, |
| 2011 | ASTOwningVector<&ActionBase::DeleteExpr> &ConvertedArgs); |
| 2012 | |
Douglas Gregor | 49badde | 2008-10-27 19:41:14 +0000 | [diff] [blame] | 2013 | /// ActOnCXXNamedCast - Parse {dynamic,static,reinterpret,const}_cast's. |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 2014 | virtual OwningExprResult ActOnCXXNamedCast(SourceLocation OpLoc, |
| 2015 | tok::TokenKind Kind, |
| 2016 | SourceLocation LAngleBracketLoc, |
| 2017 | TypeTy *Ty, |
| 2018 | SourceLocation RAngleBracketLoc, |
| 2019 | SourceLocation LParenLoc, |
| 2020 | ExprArg E, |
| 2021 | SourceLocation RParenLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2022 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 2023 | /// ActOnCXXTypeid - Parse typeid( something ). |
| 2024 | virtual OwningExprResult ActOnCXXTypeid(SourceLocation OpLoc, |
| 2025 | SourceLocation LParenLoc, bool isType, |
| 2026 | void *TyOrExpr, |
| 2027 | SourceLocation RParenLoc); |
Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 2028 | |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 2029 | //// ActOnCXXThis - Parse 'this' pointer. |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 2030 | virtual OwningExprResult ActOnCXXThis(SourceLocation ThisLoc); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 2031 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 2032 | /// ActOnCXXBoolLiteral - Parse {true,false} literals. |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 2033 | virtual OwningExprResult ActOnCXXBoolLiteral(SourceLocation OpLoc, |
| 2034 | tok::TokenKind Kind); |
| 2035 | |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 2036 | /// ActOnCXXNullPtrLiteral - Parse 'nullptr'. |
| 2037 | virtual OwningExprResult ActOnCXXNullPtrLiteral(SourceLocation Loc); |
| 2038 | |
Chris Lattner | 50dd289 | 2008-02-26 00:51:44 +0000 | [diff] [blame] | 2039 | //// ActOnCXXThrow - Parse throw expressions. |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 2040 | virtual OwningExprResult ActOnCXXThrow(SourceLocation OpLoc, |
| 2041 | ExprArg expr); |
Sebastian Redl | 972041f | 2009-04-27 20:27:31 +0000 | [diff] [blame] | 2042 | bool CheckCXXThrowOperand(SourceLocation ThrowLoc, Expr *&E); |
Chris Lattner | 50dd289 | 2008-02-26 00:51:44 +0000 | [diff] [blame] | 2043 | |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 2044 | /// ActOnCXXTypeConstructExpr - Parse construction of a specified type. |
| 2045 | /// Can be interpreted either as function-style casting ("int(x)") |
| 2046 | /// or class type construction ("ClassType(x,y,z)") |
| 2047 | /// or creation of a value-initialized type ("int()"). |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 2048 | virtual OwningExprResult ActOnCXXTypeConstructExpr(SourceRange TypeRange, |
| 2049 | TypeTy *TypeRep, |
| 2050 | SourceLocation LParenLoc, |
| 2051 | MultiExprArg Exprs, |
| 2052 | SourceLocation *CommaLocs, |
| 2053 | SourceLocation RParenLoc); |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 2054 | |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 2055 | /// ActOnCXXNew - Parsed a C++ 'new' expression. |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 2056 | virtual OwningExprResult ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal, |
| 2057 | SourceLocation PlacementLParen, |
| 2058 | MultiExprArg PlacementArgs, |
| 2059 | SourceLocation PlacementRParen, |
| 2060 | bool ParenTypeId, Declarator &D, |
| 2061 | SourceLocation ConstructorLParen, |
| 2062 | MultiExprArg ConstructorArgs, |
| 2063 | SourceLocation ConstructorRParen); |
Douglas Gregor | 3433cf7 | 2009-05-21 00:00:09 +0000 | [diff] [blame] | 2064 | OwningExprResult BuildCXXNew(SourceLocation StartLoc, bool UseGlobal, |
| 2065 | SourceLocation PlacementLParen, |
| 2066 | MultiExprArg PlacementArgs, |
| 2067 | SourceLocation PlacementRParen, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2068 | bool ParenTypeId, |
Douglas Gregor | 3433cf7 | 2009-05-21 00:00:09 +0000 | [diff] [blame] | 2069 | QualType AllocType, |
| 2070 | SourceLocation TypeLoc, |
| 2071 | SourceRange TypeRange, |
| 2072 | ExprArg ArraySize, |
| 2073 | SourceLocation ConstructorLParen, |
| 2074 | MultiExprArg ConstructorArgs, |
| 2075 | SourceLocation ConstructorRParen); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2076 | |
Douglas Gregor | 3433cf7 | 2009-05-21 00:00:09 +0000 | [diff] [blame] | 2077 | bool CheckAllocatedType(QualType AllocType, SourceLocation Loc, |
| 2078 | SourceRange R); |
Sebastian Redl | 00e68e2 | 2009-02-09 18:24:27 +0000 | [diff] [blame] | 2079 | bool FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range, |
| 2080 | bool UseGlobal, QualType AllocType, bool IsArray, |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 2081 | Expr **PlaceArgs, unsigned NumPlaceArgs, |
| 2082 | FunctionDecl *&OperatorNew, |
| 2083 | FunctionDecl *&OperatorDelete); |
Sebastian Redl | 00e68e2 | 2009-02-09 18:24:27 +0000 | [diff] [blame] | 2084 | bool FindAllocationOverload(SourceLocation StartLoc, SourceRange Range, |
| 2085 | DeclarationName Name, Expr** Args, |
| 2086 | unsigned NumArgs, DeclContext *Ctx, |
Sebastian Redl | 7f66239 | 2008-12-04 22:20:51 +0000 | [diff] [blame] | 2087 | bool AllowMissing, FunctionDecl *&Operator); |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 2088 | void DeclareGlobalNewDelete(); |
| 2089 | void DeclareGlobalAllocationFunction(DeclarationName Name, QualType Return, |
| 2090 | QualType Argument); |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 2091 | |
| 2092 | /// ActOnCXXDelete - Parsed a C++ 'delete' expression |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 2093 | virtual OwningExprResult ActOnCXXDelete(SourceLocation StartLoc, |
| 2094 | bool UseGlobal, bool ArrayForm, |
| 2095 | ExprArg Operand); |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 2096 | |
Argyrios Kyrtzidis | 5921093 | 2008-09-10 02:17:11 +0000 | [diff] [blame] | 2097 | /// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a |
| 2098 | /// C++ if/switch/while/for statement. |
| 2099 | /// e.g: "if (int x = f()) {...}" |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 2100 | virtual OwningExprResult ActOnCXXConditionDeclarationExpr(Scope *S, |
Argyrios Kyrtzidis | 5921093 | 2008-09-10 02:17:11 +0000 | [diff] [blame] | 2101 | SourceLocation StartLoc, |
| 2102 | Declarator &D, |
| 2103 | SourceLocation EqualLoc, |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 2104 | ExprArg AssignExprVal); |
Argyrios Kyrtzidis | 5921093 | 2008-09-10 02:17:11 +0000 | [diff] [blame] | 2105 | |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 2106 | /// ActOnUnaryTypeTrait - Parsed one of the unary type trait support |
| 2107 | /// pseudo-functions. |
| 2108 | virtual OwningExprResult ActOnUnaryTypeTrait(UnaryTypeTrait OTT, |
| 2109 | SourceLocation KWLoc, |
| 2110 | SourceLocation LParen, |
| 2111 | TypeTy *Ty, |
| 2112 | SourceLocation RParen); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2113 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 2114 | virtual OwningExprResult ActOnStartCXXMemberReference(Scope *S, |
| 2115 | ExprArg Base, |
| 2116 | SourceLocation OpLoc, |
| 2117 | tok::TokenKind OpKind, |
| 2118 | TypeTy *&ObjectType); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2119 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2120 | /// MaybeCreateCXXExprWithTemporaries - If the list of temporaries is |
Anders Carlsson | 99ba36d | 2009-06-05 15:38:08 +0000 | [diff] [blame] | 2121 | /// non-empty, will create a new CXXExprWithTemporaries expression. |
| 2122 | /// Otherwise, just returs the passed in expression. |
Anders Carlsson | f54741e | 2009-06-16 03:37:31 +0000 | [diff] [blame] | 2123 | Expr *MaybeCreateCXXExprWithTemporaries(Expr *SubExpr, |
| 2124 | bool ShouldDestroyTemporaries); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2125 | |
Anders Carlsson | 165a0a0 | 2009-05-17 18:41:29 +0000 | [diff] [blame] | 2126 | virtual OwningExprResult ActOnFinishFullExpr(ExprArg Expr); |
| 2127 | |
Douglas Gregor | 4fdf1fa | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 2128 | bool RequireCompleteDeclContext(const CXXScopeSpec &SS); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2129 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 2130 | DeclContext *computeDeclContext(QualType T); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2131 | DeclContext *computeDeclContext(const CXXScopeSpec &SS, |
Douglas Gregor | f59a56e | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 2132 | bool EnteringContext = false); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 2133 | bool isDependentScopeSpecifier(const CXXScopeSpec &SS); |
Douglas Gregor | 42af25f | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 2134 | CXXRecordDecl *getCurrentInstantiationOf(NestedNameSpecifier *NNS); |
| 2135 | bool isUnknownSpecialization(const CXXScopeSpec &SS); |
Douglas Gregor | ca5e77f | 2009-03-18 00:36:05 +0000 | [diff] [blame] | 2136 | |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 2137 | /// ActOnCXXGlobalScopeSpecifier - Return the object that represents the |
| 2138 | /// global scope ('::'). |
| 2139 | virtual CXXScopeTy *ActOnCXXGlobalScopeSpecifier(Scope *S, |
| 2140 | SourceLocation CCLoc); |
| 2141 | |
Douglas Gregor | 374929f | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 2142 | bool isAcceptableNestedNameSpecifier(NamedDecl *SD); |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 2143 | NamedDecl *FindFirstQualifierInScope(Scope *S, NestedNameSpecifier *NNS); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2144 | |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 2145 | |
| 2146 | CXXScopeTy *BuildCXXNestedNameSpecifier(Scope *S, |
| 2147 | const CXXScopeSpec &SS, |
| 2148 | SourceLocation IdLoc, |
| 2149 | SourceLocation CCLoc, |
| 2150 | IdentifierInfo &II, |
| 2151 | QualType ObjectType, |
| 2152 | NamedDecl *ScopeLookupResult, |
| 2153 | bool EnteringContext); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2154 | |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 2155 | virtual CXXScopeTy *ActOnCXXNestedNameSpecifier(Scope *S, |
| 2156 | const CXXScopeSpec &SS, |
| 2157 | SourceLocation IdLoc, |
| 2158 | SourceLocation CCLoc, |
Douglas Gregor | 495c35d | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 2159 | IdentifierInfo &II, |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 2160 | TypeTy *ObjectType, |
Douglas Gregor | 495c35d | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 2161 | bool EnteringContext); |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 2162 | |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 2163 | /// ActOnCXXNestedNameSpecifier - Called during parsing of a |
| 2164 | /// nested-name-specifier that involves a template-id, e.g., |
| 2165 | /// "foo::bar<int, float>::", and now we need to build a scope |
| 2166 | /// specifier. \p SS is empty or the previously parsed nested-name |
| 2167 | /// part ("foo::"), \p Type is the already-parsed class template |
| 2168 | /// specialization (or other template-id that names a type), \p |
| 2169 | /// TypeRange is the source range where the type is located, and \p |
| 2170 | /// CCLoc is the location of the trailing '::'. |
| 2171 | virtual CXXScopeTy *ActOnCXXNestedNameSpecifier(Scope *S, |
| 2172 | const CXXScopeSpec &SS, |
| 2173 | TypeTy *Type, |
| 2174 | SourceRange TypeRange, |
| 2175 | SourceLocation CCLoc); |
| 2176 | |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 2177 | /// ActOnCXXEnterDeclaratorScope - Called when a C++ scope specifier (global |
| 2178 | /// scope or nested-name-specifier) is parsed, part of a declarator-id. |
| 2179 | /// After this method is called, according to [C++ 3.4.3p3], names should be |
| 2180 | /// looked up in the declarator-id's scope, until the declarator is parsed and |
| 2181 | /// ActOnCXXExitDeclaratorScope is called. |
| 2182 | /// The 'SS' should be a non-empty valid CXXScopeSpec. |
Douglas Gregor | 7dfd0fb | 2009-09-24 23:39:01 +0000 | [diff] [blame] | 2183 | virtual bool ActOnCXXEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS); |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 2184 | |
| 2185 | /// ActOnCXXExitDeclaratorScope - Called when a declarator that previously |
| 2186 | /// invoked ActOnCXXEnterDeclaratorScope(), is finished. 'SS' is the same |
| 2187 | /// CXXScopeSpec that was passed to ActOnCXXEnterDeclaratorScope as well. |
| 2188 | /// Used to indicate that names should revert to being looked up in the |
| 2189 | /// defining scope. |
Douglas Gregor | 0a59acb | 2008-12-16 00:38:16 +0000 | [diff] [blame] | 2190 | virtual void ActOnCXXExitDeclaratorScope(Scope *S, const CXXScopeSpec &SS); |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 2191 | |
Argyrios Kyrtzidis | 0ffd9ff | 2009-06-17 22:50:06 +0000 | [diff] [blame] | 2192 | /// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse an |
| 2193 | /// initializer for the declaration 'Dcl'. |
| 2194 | /// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a |
| 2195 | /// static data member of class X, names should be looked up in the scope of |
| 2196 | /// class X. |
| 2197 | virtual void ActOnCXXEnterDeclInitializer(Scope *S, DeclPtrTy Dcl); |
| 2198 | |
| 2199 | /// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an |
| 2200 | /// initializer for the declaration 'Dcl'. |
| 2201 | virtual void ActOnCXXExitDeclInitializer(Scope *S, DeclPtrTy Dcl); |
| 2202 | |
Anders Carlsson | 5508518 | 2007-08-21 17:43:55 +0000 | [diff] [blame] | 2203 | // ParseObjCStringLiteral - Parse Objective-C string literals. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2204 | virtual ExprResult ParseObjCStringLiteral(SourceLocation *AtLocs, |
Chris Lattner | b3a99cd | 2007-12-12 01:04:12 +0000 | [diff] [blame] | 2205 | ExprTy **Strings, |
| 2206 | unsigned NumStrings); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2207 | |
| 2208 | Expr *BuildObjCEncodeExpression(SourceLocation AtLoc, |
Anders Carlsson | fc0f021 | 2009-06-07 18:45:35 +0000 | [diff] [blame] | 2209 | QualType EncodedType, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2210 | SourceLocation RParenLoc); |
Fariborz Jahanian | b740023 | 2009-09-28 23:23:40 +0000 | [diff] [blame] | 2211 | CXXMemberCallExpr *BuildCXXMemberCallExpr(Expr *Exp, CXXMethodDecl *Method); |
| 2212 | |
Anders Carlsson | f9bcf01 | 2007-08-22 15:14:15 +0000 | [diff] [blame] | 2213 | virtual ExprResult ParseObjCEncodeExpression(SourceLocation AtLoc, |
Chris Lattner | 674af95 | 2007-10-16 22:51:17 +0000 | [diff] [blame] | 2214 | SourceLocation EncodeLoc, |
Anders Carlsson | f9bcf01 | 2007-08-22 15:14:15 +0000 | [diff] [blame] | 2215 | SourceLocation LParenLoc, |
| 2216 | TypeTy *Ty, |
| 2217 | SourceLocation RParenLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2218 | |
Fariborz Jahanian | b62f681 | 2007-10-16 20:40:23 +0000 | [diff] [blame] | 2219 | // ParseObjCSelectorExpression - Build selector expression for @selector |
| 2220 | virtual ExprResult ParseObjCSelectorExpression(Selector Sel, |
| 2221 | SourceLocation AtLoc, |
Fariborz Jahanian | 2a35fa9 | 2007-10-16 23:21:02 +0000 | [diff] [blame] | 2222 | SourceLocation SelLoc, |
Fariborz Jahanian | b62f681 | 2007-10-16 20:40:23 +0000 | [diff] [blame] | 2223 | SourceLocation LParenLoc, |
| 2224 | SourceLocation RParenLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2225 | |
Fariborz Jahanian | 390d50a | 2007-10-17 16:58:11 +0000 | [diff] [blame] | 2226 | // ParseObjCProtocolExpression - Build protocol expression for @protocol |
| 2227 | virtual ExprResult ParseObjCProtocolExpression(IdentifierInfo * ProtocolName, |
| 2228 | SourceLocation AtLoc, |
| 2229 | SourceLocation ProtoLoc, |
| 2230 | SourceLocation LParenLoc, |
| 2231 | SourceLocation RParenLoc); |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 2232 | |
| 2233 | //===--------------------------------------------------------------------===// |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 2234 | // C++ Declarations |
| 2235 | // |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2236 | virtual DeclPtrTy ActOnStartLinkageSpecification(Scope *S, |
| 2237 | SourceLocation ExternLoc, |
| 2238 | SourceLocation LangLoc, |
| 2239 | const char *Lang, |
| 2240 | unsigned StrSize, |
| 2241 | SourceLocation LBraceLoc); |
| 2242 | virtual DeclPtrTy ActOnFinishLinkageSpecification(Scope *S, |
| 2243 | DeclPtrTy LinkageSpec, |
| 2244 | SourceLocation RBraceLoc); |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 2245 | |
| 2246 | |
| 2247 | //===--------------------------------------------------------------------===// |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 2248 | // C++ Classes |
| 2249 | // |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 2250 | virtual bool isCurrentClassName(const IdentifierInfo &II, Scope *S, |
| 2251 | const CXXScopeSpec *SS); |
Sebastian Redl | e2b6833 | 2009-04-12 17:16:29 +0000 | [diff] [blame] | 2252 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2253 | virtual DeclPtrTy ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, |
| 2254 | Declarator &D, |
Douglas Gregor | 37b372b | 2009-08-20 22:52:58 +0000 | [diff] [blame] | 2255 | MultiTemplateParamsArg TemplateParameterLists, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2256 | ExprTy *BitfieldWidth, |
Sebastian Redl | e2b6833 | 2009-04-12 17:16:29 +0000 | [diff] [blame] | 2257 | ExprTy *Init, |
| 2258 | bool Deleted = false); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 2259 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2260 | virtual MemInitResult ActOnMemInitializer(DeclPtrTy ConstructorD, |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 2261 | Scope *S, |
Fariborz Jahanian | bcfad54 | 2009-06-30 23:26:25 +0000 | [diff] [blame] | 2262 | const CXXScopeSpec &SS, |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 2263 | IdentifierInfo *MemberOrBase, |
Fariborz Jahanian | 9617433 | 2009-07-01 19:21:19 +0000 | [diff] [blame] | 2264 | TypeTy *TemplateTypeTy, |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 2265 | SourceLocation IdLoc, |
| 2266 | SourceLocation LParenLoc, |
| 2267 | ExprTy **Args, unsigned NumArgs, |
| 2268 | SourceLocation *CommaLocs, |
| 2269 | SourceLocation RParenLoc); |
| 2270 | |
Eli Friedman | 59c0437 | 2009-07-29 19:44:27 +0000 | [diff] [blame] | 2271 | MemInitResult BuildMemberInitializer(FieldDecl *Member, Expr **Args, |
| 2272 | unsigned NumArgs, SourceLocation IdLoc, |
| 2273 | SourceLocation RParenLoc); |
| 2274 | |
| 2275 | MemInitResult BuildBaseInitializer(QualType BaseType, Expr **Args, |
| 2276 | unsigned NumArgs, SourceLocation IdLoc, |
| 2277 | SourceLocation RParenLoc, |
| 2278 | CXXRecordDecl *ClassDecl); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2279 | |
Anders Carlsson | 0ebb6d3 | 2009-10-29 15:46:07 +0000 | [diff] [blame] | 2280 | void SetBaseOrMemberInitializers(CXXConstructorDecl *Constructor, |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 2281 | CXXBaseOrMemberInitializer **Initializers, |
| 2282 | unsigned NumInitializers, |
| 2283 | llvm::SmallVectorImpl<CXXBaseSpecifier *>& Bases, |
| 2284 | llvm::SmallVectorImpl<FieldDecl *>&Members); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2285 | |
| 2286 | /// computeBaseOrMembersToDestroy - Compute information in current |
| 2287 | /// destructor decl's AST of bases and non-static data members which will be |
Fariborz Jahanian | 34374e6 | 2009-09-03 23:18:17 +0000 | [diff] [blame] | 2288 | /// implicitly destroyed. We are storing the destruction in the order that |
| 2289 | /// they should occur (which is the reverse of construction order). |
| 2290 | void computeBaseOrMembersToDestroy(CXXDestructorDecl *Destructor); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2291 | |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 2292 | void AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl); |
| 2293 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2294 | virtual void ActOnMemInitializers(DeclPtrTy ConstructorDecl, |
Anders Carlsson | a7b3521 | 2009-03-25 02:58:17 +0000 | [diff] [blame] | 2295 | SourceLocation ColonLoc, |
| 2296 | MemInitTy **MemInits, unsigned NumMemInits); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2297 | |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 2298 | virtual void ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2299 | DeclPtrTy TagDecl, |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 2300 | SourceLocation LBrac, |
| 2301 | SourceLocation RBrac); |
| 2302 | |
Douglas Gregor | 6569d68 | 2009-05-27 23:11:45 +0000 | [diff] [blame] | 2303 | virtual void ActOnReenterTemplateScope(Scope *S, DeclPtrTy Template); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2304 | virtual void ActOnStartDelayedCXXMethodDeclaration(Scope *S, |
| 2305 | DeclPtrTy Method); |
| 2306 | virtual void ActOnDelayedCXXMethodParameter(Scope *S, DeclPtrTy Param); |
| 2307 | virtual void ActOnFinishDelayedCXXMethodDeclaration(Scope *S, |
| 2308 | DeclPtrTy Method); |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 2309 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2310 | virtual DeclPtrTy ActOnStaticAssertDeclaration(SourceLocation AssertLoc, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2311 | ExprArg AssertExpr, |
| 2312 | ExprArg AssertMessageExpr); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2313 | |
John McCall | dd4a3b0 | 2009-09-16 22:47:08 +0000 | [diff] [blame] | 2314 | DeclPtrTy ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS, |
| 2315 | MultiTemplateParamsArg TemplateParams); |
John McCall | bbbcdd9 | 2009-09-11 21:02:39 +0000 | [diff] [blame] | 2316 | DeclPtrTy ActOnFriendFunctionDecl(Scope *S, Declarator &D, bool IsDefinition, |
| 2317 | MultiTemplateParamsArg TemplateParams); |
Anders Carlsson | 0033836 | 2009-05-11 22:55:49 +0000 | [diff] [blame] | 2318 | |
Chris Lattner | 6540180 | 2009-04-25 08:28:21 +0000 | [diff] [blame] | 2319 | QualType CheckConstructorDeclarator(Declarator &D, QualType R, |
| 2320 | FunctionDecl::StorageClass& SC); |
Chris Lattner | 6e47501 | 2009-04-25 08:35:12 +0000 | [diff] [blame] | 2321 | void CheckConstructor(CXXConstructorDecl *Constructor); |
Chris Lattner | 6540180 | 2009-04-25 08:28:21 +0000 | [diff] [blame] | 2322 | QualType CheckDestructorDeclarator(Declarator &D, |
| 2323 | FunctionDecl::StorageClass& SC); |
Chris Lattner | 6e47501 | 2009-04-25 08:35:12 +0000 | [diff] [blame] | 2324 | void CheckConversionDeclarator(Declarator &D, QualType &R, |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2325 | FunctionDecl::StorageClass& SC); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2326 | DeclPtrTy ActOnConversionDeclarator(CXXConversionDecl *Conversion); |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 2327 | |
Douglas Gregor | e961afb | 2009-10-22 07:08:30 +0000 | [diff] [blame] | 2328 | bool isImplicitMemberReference(const CXXScopeSpec *SS, NamedDecl *D, |
| 2329 | SourceLocation NameLoc, QualType &ThisType, |
| 2330 | QualType &MemberType); |
| 2331 | |
Douglas Gregor | bc0805a | 2008-10-23 00:40:37 +0000 | [diff] [blame] | 2332 | //===--------------------------------------------------------------------===// |
| 2333 | // C++ Derived Classes |
| 2334 | // |
| 2335 | |
| 2336 | /// ActOnBaseSpecifier - Parsed a base specifier |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 2337 | CXXBaseSpecifier *CheckBaseSpecifier(CXXRecordDecl *Class, |
| 2338 | SourceRange SpecifierRange, |
| 2339 | bool Virtual, AccessSpecifier Access, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2340 | QualType BaseType, |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 2341 | SourceLocation BaseLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2342 | virtual BaseResult ActOnBaseSpecifier(DeclPtrTy classdecl, |
Douglas Gregor | bc0805a | 2008-10-23 00:40:37 +0000 | [diff] [blame] | 2343 | SourceRange SpecifierRange, |
| 2344 | bool Virtual, AccessSpecifier Access, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2345 | TypeTy *basetype, SourceLocation |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 2346 | BaseLoc); |
Douglas Gregor | bc0805a | 2008-10-23 00:40:37 +0000 | [diff] [blame] | 2347 | |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 2348 | bool AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases, |
| 2349 | unsigned NumBases); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2350 | virtual void ActOnBaseSpecifiers(DeclPtrTy ClassDecl, BaseTy **Bases, |
Douglas Gregor | bc0805a | 2008-10-23 00:40:37 +0000 | [diff] [blame] | 2351 | unsigned NumBases); |
| 2352 | |
| 2353 | bool IsDerivedFrom(QualType Derived, QualType Base); |
Douglas Gregor | a8f32e0 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2354 | bool IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths); |
| 2355 | |
Douglas Gregor | 0575d4a | 2008-10-24 16:17:19 +0000 | [diff] [blame] | 2356 | bool CheckDerivedToBaseConversion(QualType Derived, QualType Base, |
| 2357 | SourceLocation Loc, SourceRange Range); |
Anders Carlsson | d8f9cb0 | 2009-05-13 21:11:42 +0000 | [diff] [blame] | 2358 | bool CheckDerivedToBaseConversion(QualType Derived, QualType Base, |
| 2359 | unsigned InaccessibleBaseID, |
| 2360 | unsigned AmbigiousBaseConvID, |
| 2361 | SourceLocation Loc, SourceRange Range, |
| 2362 | DeclarationName Name); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2363 | |
Douglas Gregor | a8f32e0 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2364 | std::string getAmbiguousPathsDisplayString(CXXBasePaths &Paths); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2365 | |
Sebastian Redl | 23c7d06 | 2009-07-07 20:29:57 +0000 | [diff] [blame] | 2366 | /// CheckOverridingFunctionReturnType - Checks whether the return types are |
| 2367 | /// covariant, according to C++ [class.virtual]p5. |
| 2368 | bool CheckOverridingFunctionReturnType(const CXXMethodDecl *New, |
Anders Carlsson | d7ba27d | 2009-05-14 01:09:04 +0000 | [diff] [blame] | 2369 | const CXXMethodDecl *Old); |
Sebastian Redl | 23c7d06 | 2009-07-07 20:29:57 +0000 | [diff] [blame] | 2370 | |
| 2371 | /// CheckOverridingFunctionExceptionSpec - Checks whether the exception |
| 2372 | /// spec is a subset of base spec. |
| 2373 | bool CheckOverridingFunctionExceptionSpec(const CXXMethodDecl *New, |
| 2374 | const CXXMethodDecl *Old); |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 2375 | |
Anders Carlsson | 29f006b | 2009-03-27 05:05:05 +0000 | [diff] [blame] | 2376 | //===--------------------------------------------------------------------===// |
| 2377 | // C++ Access Control |
| 2378 | // |
Sebastian Redl | 726212f | 2009-07-18 14:32:15 +0000 | [diff] [blame] | 2379 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2380 | bool SetMemberAccessSpecifier(NamedDecl *MemberDecl, |
Anders Carlsson | 29f006b | 2009-03-27 05:05:05 +0000 | [diff] [blame] | 2381 | NamedDecl *PrevMemberDecl, |
| 2382 | AccessSpecifier LexicalAS); |
Sebastian Redl | 726212f | 2009-07-18 14:32:15 +0000 | [diff] [blame] | 2383 | |
| 2384 | const CXXBaseSpecifier *FindInaccessibleBase(QualType Derived, QualType Base, |
Douglas Gregor | a8f32e0 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2385 | CXXBasePaths &Paths, |
Sebastian Redl | 726212f | 2009-07-18 14:32:15 +0000 | [diff] [blame] | 2386 | bool NoPrivileges = false); |
| 2387 | |
| 2388 | bool CheckBaseClassAccess(QualType Derived, QualType Base, |
Anders Carlsson | d8f9cb0 | 2009-05-13 21:11:42 +0000 | [diff] [blame] | 2389 | unsigned InaccessibleBaseID, |
Douglas Gregor | a8f32e0 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2390 | CXXBasePaths& Paths, SourceLocation AccessLoc, |
Anders Carlsson | d8f9cb0 | 2009-05-13 21:11:42 +0000 | [diff] [blame] | 2391 | DeclarationName Name); |
Sebastian Redl | 726212f | 2009-07-18 14:32:15 +0000 | [diff] [blame] | 2392 | |
| 2393 | |
Anders Carlsson | 8211eff | 2009-03-24 01:19:16 +0000 | [diff] [blame] | 2394 | enum AbstractDiagSelID { |
| 2395 | AbstractNone = -1, |
| 2396 | AbstractReturnType, |
| 2397 | AbstractParamType, |
| 2398 | AbstractVariableType, |
| 2399 | AbstractFieldType |
| 2400 | }; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2401 | |
Anders Carlsson | a6ec7ad | 2009-08-27 00:13:57 +0000 | [diff] [blame] | 2402 | bool RequireNonAbstractType(SourceLocation Loc, QualType T, |
| 2403 | const PartialDiagnostic &PD, |
| 2404 | const CXXRecordDecl *CurrentRD = 0); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2405 | |
| 2406 | bool RequireNonAbstractType(SourceLocation Loc, QualType T, unsigned DiagID, |
Anders Carlsson | e65a3c8 | 2009-03-24 17:23:42 +0000 | [diff] [blame] | 2407 | AbstractDiagSelID SelID = AbstractNone, |
| 2408 | const CXXRecordDecl *CurrentRD = 0); |
Anders Carlsson | 4681ebd | 2009-03-22 20:18:17 +0000 | [diff] [blame] | 2409 | |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 2410 | //===--------------------------------------------------------------------===// |
| 2411 | // C++ Overloaded Operators [C++ 13.5] |
| 2412 | // |
| 2413 | |
| 2414 | bool CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl); |
| 2415 | |
Douglas Gregor | 72c3f31 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 2416 | //===--------------------------------------------------------------------===// |
| 2417 | // C++ Templates [C++ 14] |
| 2418 | // |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 2419 | virtual TemplateNameKind isTemplateName(Scope *S, |
Douglas Gregor | 014e88d | 2009-11-03 23:16:33 +0000 | [diff] [blame] | 2420 | const CXXScopeSpec &SS, |
| 2421 | UnqualifiedId &Name, |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 2422 | TypeTy *ObjectType, |
Douglas Gregor | 495c35d | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 2423 | bool EnteringContext, |
| 2424 | TemplateTy &Template); |
Douglas Gregor | 72c3f31 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 2425 | bool DiagnoseTemplateParameterShadow(SourceLocation Loc, Decl *PrevDecl); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2426 | TemplateDecl *AdjustDeclIfTemplate(DeclPtrTy &Decl); |
Douglas Gregor | aaba5e3 | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 2427 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2428 | virtual DeclPtrTy ActOnTypeParameter(Scope *S, bool Typename, bool Ellipsis, |
Anders Carlsson | 941df7d | 2009-06-12 19:58:00 +0000 | [diff] [blame] | 2429 | SourceLocation EllipsisLoc, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2430 | SourceLocation KeyLoc, |
| 2431 | IdentifierInfo *ParamName, |
| 2432 | SourceLocation ParamNameLoc, |
| 2433 | unsigned Depth, unsigned Position); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2434 | virtual void ActOnTypeParameterDefault(DeclPtrTy TypeParam, |
Douglas Gregor | d684b00 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2435 | SourceLocation EqualLoc, |
| 2436 | SourceLocation DefaultLoc, |
| 2437 | TypeTy *Default); |
| 2438 | |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 2439 | QualType CheckNonTypeTemplateParameterType(QualType T, SourceLocation Loc); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2440 | virtual DeclPtrTy ActOnNonTypeTemplateParameter(Scope *S, Declarator &D, |
| 2441 | unsigned Depth, |
| 2442 | unsigned Position); |
| 2443 | virtual void ActOnNonTypeTemplateParameterDefault(DeclPtrTy TemplateParam, |
Douglas Gregor | d684b00 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2444 | SourceLocation EqualLoc, |
| 2445 | ExprArg Default); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2446 | virtual DeclPtrTy ActOnTemplateTemplateParameter(Scope *S, |
| 2447 | SourceLocation TmpLoc, |
| 2448 | TemplateParamsTy *Params, |
| 2449 | IdentifierInfo *ParamName, |
| 2450 | SourceLocation ParamNameLoc, |
| 2451 | unsigned Depth, |
| 2452 | unsigned Position); |
| 2453 | virtual void ActOnTemplateTemplateParameterDefault(DeclPtrTy TemplateParam, |
Douglas Gregor | d684b00 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2454 | SourceLocation EqualLoc, |
| 2455 | ExprArg Default); |
| 2456 | |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 2457 | virtual TemplateParamsTy * |
| 2458 | ActOnTemplateParameterList(unsigned Depth, |
| 2459 | SourceLocation ExportLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2460 | SourceLocation TemplateLoc, |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 2461 | SourceLocation LAngleLoc, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2462 | DeclPtrTy *Params, unsigned NumParams, |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 2463 | SourceLocation RAngleLoc); |
Douglas Gregor | d684b00 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2464 | bool CheckTemplateParameterList(TemplateParameterList *NewParams, |
| 2465 | TemplateParameterList *OldParams); |
Douglas Gregor | f59a56e | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 2466 | TemplateParameterList * |
| 2467 | MatchTemplateParametersToScopeSpecifier(SourceLocation DeclStartLoc, |
| 2468 | const CXXScopeSpec &SS, |
| 2469 | TemplateParameterList **ParamLists, |
Douglas Gregor | 1fef4e6 | 2009-10-07 22:35:40 +0000 | [diff] [blame] | 2470 | unsigned NumParamLists, |
| 2471 | bool &IsExplicitSpecialization); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2472 | |
John McCall | 0f434ec | 2009-07-31 02:45:11 +0000 | [diff] [blame] | 2473 | DeclResult CheckClassTemplate(Scope *S, unsigned TagSpec, TagUseKind TUK, |
Douglas Gregor | bd1099e | 2009-07-23 16:36:45 +0000 | [diff] [blame] | 2474 | SourceLocation KWLoc, const CXXScopeSpec &SS, |
| 2475 | IdentifierInfo *Name, SourceLocation NameLoc, |
| 2476 | AttributeList *Attr, |
Douglas Gregor | 05396e2 | 2009-08-25 17:23:04 +0000 | [diff] [blame] | 2477 | TemplateParameterList *TemplateParams, |
Douglas Gregor | bd1099e | 2009-07-23 16:36:45 +0000 | [diff] [blame] | 2478 | AccessSpecifier AS); |
Douglas Gregor | ddc29e1 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 2479 | |
Douglas Gregor | 0b60d9e | 2009-09-25 23:53:26 +0000 | [diff] [blame] | 2480 | void translateTemplateArguments(ASTTemplateArgsPtr &TemplateArgsIn, |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 2481 | SourceLocation *TemplateArgLocsIn, |
| 2482 | llvm::SmallVector<TemplateArgumentLoc, 16> &TempArgs); |
Douglas Gregor | 0b60d9e | 2009-09-25 23:53:26 +0000 | [diff] [blame] | 2483 | |
Douglas Gregor | 7532dc6 | 2009-03-30 22:58:21 +0000 | [diff] [blame] | 2484 | QualType CheckTemplateIdType(TemplateName Template, |
| 2485 | SourceLocation TemplateLoc, |
| 2486 | SourceLocation LAngleLoc, |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 2487 | const TemplateArgumentLoc *TemplateArgs, |
Douglas Gregor | 7532dc6 | 2009-03-30 22:58:21 +0000 | [diff] [blame] | 2488 | unsigned NumTemplateArgs, |
| 2489 | SourceLocation RAngleLoc); |
Douglas Gregor | 40808ce | 2009-03-09 23:48:35 +0000 | [diff] [blame] | 2490 | |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 2491 | virtual TypeResult |
Douglas Gregor | 7532dc6 | 2009-03-30 22:58:21 +0000 | [diff] [blame] | 2492 | ActOnTemplateIdType(TemplateTy Template, SourceLocation TemplateLoc, |
| 2493 | SourceLocation LAngleLoc, |
| 2494 | ASTTemplateArgsPtr TemplateArgs, |
| 2495 | SourceLocation *TemplateArgLocs, |
John McCall | 6b2becf | 2009-09-08 17:47:29 +0000 | [diff] [blame] | 2496 | SourceLocation RAngleLoc); |
| 2497 | |
| 2498 | virtual TypeResult ActOnTagTemplateIdType(TypeResult Type, |
| 2499 | TagUseKind TUK, |
| 2500 | DeclSpec::TST TagSpec, |
| 2501 | SourceLocation TagLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2502 | |
Douglas Gregor | f17bb74 | 2009-10-22 17:20:55 +0000 | [diff] [blame] | 2503 | OwningExprResult BuildTemplateIdExpr(NestedNameSpecifier *Qualifier, |
| 2504 | SourceRange QualifierRange, |
| 2505 | TemplateName Template, |
Douglas Gregor | edce4dd | 2009-06-30 22:34:41 +0000 | [diff] [blame] | 2506 | SourceLocation TemplateNameLoc, |
| 2507 | SourceLocation LAngleLoc, |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 2508 | const TemplateArgumentLoc *TemplateArgs, |
Douglas Gregor | edce4dd | 2009-06-30 22:34:41 +0000 | [diff] [blame] | 2509 | unsigned NumTemplateArgs, |
| 2510 | SourceLocation RAngleLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2511 | |
Douglas Gregor | 02a24ee | 2009-11-03 16:56:39 +0000 | [diff] [blame] | 2512 | OwningExprResult ActOnTemplateIdExpr(const CXXScopeSpec &SS, |
| 2513 | TemplateTy Template, |
| 2514 | SourceLocation TemplateNameLoc, |
| 2515 | SourceLocation LAngleLoc, |
| 2516 | ASTTemplateArgsPtr TemplateArgs, |
| 2517 | SourceLocation *TemplateArgLocs, |
| 2518 | SourceLocation RAngleLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2519 | |
Douglas Gregor | c45c232 | 2009-03-31 00:43:58 +0000 | [diff] [blame] | 2520 | virtual TemplateTy ActOnDependentTemplateName(SourceLocation TemplateKWLoc, |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 2521 | const CXXScopeSpec &SS, |
Douglas Gregor | 014e88d | 2009-11-03 23:16:33 +0000 | [diff] [blame] | 2522 | UnqualifiedId &Name, |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 2523 | TypeTy *ObjectType); |
Douglas Gregor | c45c232 | 2009-03-31 00:43:58 +0000 | [diff] [blame] | 2524 | |
Douglas Gregor | e94866f | 2009-06-12 21:21:02 +0000 | [diff] [blame] | 2525 | bool CheckClassTemplatePartialSpecializationArgs( |
| 2526 | TemplateParameterList *TemplateParams, |
Anders Carlsson | 6360be7 | 2009-06-13 18:20:51 +0000 | [diff] [blame] | 2527 | const TemplateArgumentListBuilder &TemplateArgs, |
Douglas Gregor | 6aa75cf | 2009-06-12 22:08:06 +0000 | [diff] [blame] | 2528 | bool &MirrorsPrimaryTemplate); |
Douglas Gregor | e94866f | 2009-06-12 21:21:02 +0000 | [diff] [blame] | 2529 | |
Douglas Gregor | 212e81c | 2009-03-25 00:13:59 +0000 | [diff] [blame] | 2530 | virtual DeclResult |
John McCall | 0f434ec | 2009-07-31 02:45:11 +0000 | [diff] [blame] | 2531 | ActOnClassTemplateSpecialization(Scope *S, unsigned TagSpec, TagUseKind TUK, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2532 | SourceLocation KWLoc, |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 2533 | const CXXScopeSpec &SS, |
Douglas Gregor | 7532dc6 | 2009-03-30 22:58:21 +0000 | [diff] [blame] | 2534 | TemplateTy Template, |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 2535 | SourceLocation TemplateNameLoc, |
Douglas Gregor | 55f6b14 | 2009-02-09 18:46:07 +0000 | [diff] [blame] | 2536 | SourceLocation LAngleLoc, |
Douglas Gregor | 5908e9f | 2009-02-09 19:34:22 +0000 | [diff] [blame] | 2537 | ASTTemplateArgsPtr TemplateArgs, |
Douglas Gregor | c15cb38 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 2538 | SourceLocation *TemplateArgLocs, |
Douglas Gregor | 55f6b14 | 2009-02-09 18:46:07 +0000 | [diff] [blame] | 2539 | SourceLocation RAngleLoc, |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 2540 | AttributeList *Attr, |
| 2541 | MultiTemplateParamsArg TemplateParameterLists); |
Douglas Gregor | 55f6b14 | 2009-02-09 18:46:07 +0000 | [diff] [blame] | 2542 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2543 | virtual DeclPtrTy ActOnTemplateDeclarator(Scope *S, |
Douglas Gregor | e542c86 | 2009-06-23 23:11:28 +0000 | [diff] [blame] | 2544 | MultiTemplateParamsArg TemplateParameterLists, |
| 2545 | Declarator &D); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2546 | |
| 2547 | virtual DeclPtrTy ActOnStartOfFunctionTemplateDef(Scope *FnBodyScope, |
Douglas Gregor | 52591bf | 2009-06-24 00:54:41 +0000 | [diff] [blame] | 2548 | MultiTemplateParamsArg TemplateParameterLists, |
| 2549 | Declarator &D); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2550 | |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 2551 | bool |
| 2552 | CheckSpecializationInstantiationRedecl(SourceLocation NewLoc, |
| 2553 | TemplateSpecializationKind NewTSK, |
| 2554 | NamedDecl *PrevDecl, |
| 2555 | TemplateSpecializationKind PrevTSK, |
| 2556 | SourceLocation PrevPointOfInstantiation, |
| 2557 | bool &SuppressNew); |
| 2558 | |
Douglas Gregor | b9aa6b2 | 2009-09-24 23:14:47 +0000 | [diff] [blame] | 2559 | bool CheckFunctionTemplateSpecialization(FunctionDecl *FD, |
| 2560 | bool HasExplicitTemplateArgs, |
| 2561 | SourceLocation LAngleLoc, |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 2562 | const TemplateArgumentLoc *ExplicitTemplateArgs, |
Douglas Gregor | b9aa6b2 | 2009-09-24 23:14:47 +0000 | [diff] [blame] | 2563 | unsigned NumExplicitTemplateArgs, |
| 2564 | SourceLocation RAngleLoc, |
| 2565 | NamedDecl *&PrevDecl); |
Douglas Gregor | 251b4ff | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 2566 | bool CheckMemberSpecialization(NamedDecl *Member, NamedDecl *&PrevDecl); |
Douglas Gregor | b9aa6b2 | 2009-09-24 23:14:47 +0000 | [diff] [blame] | 2567 | |
Douglas Gregor | 93dfdb1 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 2568 | virtual DeclResult |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2569 | ActOnExplicitInstantiation(Scope *S, |
Douglas Gregor | 45f9655 | 2009-09-04 06:33:52 +0000 | [diff] [blame] | 2570 | SourceLocation ExternLoc, |
| 2571 | SourceLocation TemplateLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2572 | unsigned TagSpec, |
Douglas Gregor | 93dfdb1 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 2573 | SourceLocation KWLoc, |
| 2574 | const CXXScopeSpec &SS, |
| 2575 | TemplateTy Template, |
| 2576 | SourceLocation TemplateNameLoc, |
| 2577 | SourceLocation LAngleLoc, |
| 2578 | ASTTemplateArgsPtr TemplateArgs, |
| 2579 | SourceLocation *TemplateArgLocs, |
| 2580 | SourceLocation RAngleLoc, |
| 2581 | AttributeList *Attr); |
| 2582 | |
Douglas Gregor | 3f5b61c | 2009-05-14 00:28:11 +0000 | [diff] [blame] | 2583 | virtual DeclResult |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2584 | ActOnExplicitInstantiation(Scope *S, |
Douglas Gregor | 45f9655 | 2009-09-04 06:33:52 +0000 | [diff] [blame] | 2585 | SourceLocation ExternLoc, |
| 2586 | SourceLocation TemplateLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2587 | unsigned TagSpec, |
Douglas Gregor | 3f5b61c | 2009-05-14 00:28:11 +0000 | [diff] [blame] | 2588 | SourceLocation KWLoc, |
| 2589 | const CXXScopeSpec &SS, |
| 2590 | IdentifierInfo *Name, |
| 2591 | SourceLocation NameLoc, |
| 2592 | AttributeList *Attr); |
| 2593 | |
Douglas Gregor | d5a423b | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 2594 | virtual DeclResult ActOnExplicitInstantiation(Scope *S, |
| 2595 | SourceLocation ExternLoc, |
| 2596 | SourceLocation TemplateLoc, |
| 2597 | Declarator &D); |
| 2598 | |
Douglas Gregor | c15cb38 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 2599 | bool CheckTemplateArgumentList(TemplateDecl *Template, |
| 2600 | SourceLocation TemplateLoc, |
| 2601 | SourceLocation LAngleLoc, |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 2602 | const TemplateArgumentLoc *TemplateArgs, |
Douglas Gregor | 40808ce | 2009-03-09 23:48:35 +0000 | [diff] [blame] | 2603 | unsigned NumTemplateArgs, |
Douglas Gregor | 3e00bad | 2009-02-17 01:05:43 +0000 | [diff] [blame] | 2604 | SourceLocation RAngleLoc, |
Douglas Gregor | 16134c6 | 2009-07-01 00:28:38 +0000 | [diff] [blame] | 2605 | bool PartialTemplateArgs, |
Anders Carlsson | 1c5976e | 2009-06-05 03:43:12 +0000 | [diff] [blame] | 2606 | TemplateArgumentListBuilder &Converted); |
Douglas Gregor | c15cb38 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 2607 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2608 | bool CheckTemplateTypeArgument(TemplateTypeParmDecl *Param, |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 2609 | const TemplateArgumentLoc &Arg, |
Anders Carlsson | 436b156 | 2009-06-13 00:33:33 +0000 | [diff] [blame] | 2610 | TemplateArgumentListBuilder &Converted); |
| 2611 | |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 2612 | bool CheckTemplateArgument(TemplateTypeParmDecl *Param, |
| 2613 | DeclaratorInfo *Arg); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2614 | bool CheckTemplateArgumentAddressOfObjectOrFunction(Expr *Arg, |
Douglas Gregor | 3e00bad | 2009-02-17 01:05:43 +0000 | [diff] [blame] | 2615 | NamedDecl *&Entity); |
| 2616 | bool CheckTemplateArgumentPointerToMember(Expr *Arg, NamedDecl *&Member); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2617 | bool CheckTemplateArgument(NonTypeTemplateParmDecl *Param, |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 2618 | QualType InstantiatedParamType, Expr *&Arg, |
Douglas Gregor | 02cbbd2 | 2009-06-11 18:10:32 +0000 | [diff] [blame] | 2619 | TemplateArgument &Converted); |
Douglas Gregor | c15cb38 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 2620 | bool CheckTemplateArgument(TemplateTemplateParmDecl *Param, DeclRefExpr *Arg); |
Douglas Gregor | ddc29e1 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 2621 | bool TemplateParameterListsAreEqual(TemplateParameterList *New, |
| 2622 | TemplateParameterList *Old, |
| 2623 | bool Complain, |
Douglas Gregor | dd0574e | 2009-02-10 00:24:35 +0000 | [diff] [blame] | 2624 | bool IsTemplateTemplateParm = false, |
| 2625 | SourceLocation TemplateArgLoc |
| 2626 | = SourceLocation()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2627 | |
Douglas Gregor | 05396e2 | 2009-08-25 17:23:04 +0000 | [diff] [blame] | 2628 | bool CheckTemplateDeclScope(Scope *S, TemplateParameterList *TemplateParams); |
Douglas Gregor | aaba5e3 | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 2629 | |
Douglas Gregor | d57959a | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 2630 | /// \brief Called when the parser has parsed a C++ typename |
| 2631 | /// specifier, e.g., "typename T::type". |
| 2632 | /// |
| 2633 | /// \param TypenameLoc the location of the 'typename' keyword |
| 2634 | /// \param SS the nested-name-specifier following the typename (e.g., 'T::'). |
| 2635 | /// \param II the identifier we're retrieving (e.g., 'type' in the example). |
| 2636 | /// \param IdLoc the location of the identifier. |
| 2637 | virtual TypeResult |
| 2638 | ActOnTypenameType(SourceLocation TypenameLoc, const CXXScopeSpec &SS, |
| 2639 | const IdentifierInfo &II, SourceLocation IdLoc); |
Douglas Gregor | 1734317 | 2009-04-01 00:28:59 +0000 | [diff] [blame] | 2640 | |
| 2641 | /// \brief Called when the parser has parsed a C++ typename |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2642 | /// specifier that ends in a template-id, e.g., |
Douglas Gregor | 1734317 | 2009-04-01 00:28:59 +0000 | [diff] [blame] | 2643 | /// "typename MetaFun::template apply<T1, T2>". |
| 2644 | /// |
| 2645 | /// \param TypenameLoc the location of the 'typename' keyword |
| 2646 | /// \param SS the nested-name-specifier following the typename (e.g., 'T::'). |
| 2647 | /// \param TemplateLoc the location of the 'template' keyword, if any. |
| 2648 | /// \param Ty the type that the typename specifier refers to. |
| 2649 | virtual TypeResult |
| 2650 | ActOnTypenameType(SourceLocation TypenameLoc, const CXXScopeSpec &SS, |
| 2651 | SourceLocation TemplateLoc, TypeTy *Ty); |
| 2652 | |
Douglas Gregor | d57959a | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 2653 | QualType CheckTypenameType(NestedNameSpecifier *NNS, |
| 2654 | const IdentifierInfo &II, |
| 2655 | SourceRange Range); |
Douglas Gregor | c8ab256 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 2656 | |
Douglas Gregor | 4a959d8 | 2009-08-06 16:20:37 +0000 | [diff] [blame] | 2657 | QualType RebuildTypeInCurrentInstantiation(QualType T, SourceLocation Loc, |
| 2658 | DeclarationName Name); |
| 2659 | |
Douglas Gregor | bf4ea56 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 2660 | std::string |
| 2661 | getTemplateArgumentBindingsText(const TemplateParameterList *Params, |
| 2662 | const TemplateArgumentList &Args); |
| 2663 | |
Douglas Gregor | f67875d | 2009-06-12 18:26:56 +0000 | [diff] [blame] | 2664 | /// \brief Describes the result of template argument deduction. |
| 2665 | /// |
| 2666 | /// The TemplateDeductionResult enumeration describes the result of |
| 2667 | /// template argument deduction, as returned from |
| 2668 | /// DeduceTemplateArguments(). The separate TemplateDeductionInfo |
| 2669 | /// structure provides additional information about the results of |
| 2670 | /// template argument deduction, e.g., the deduced template argument |
| 2671 | /// list (if successful) or the specific template parameters or |
| 2672 | /// deduced arguments that were involved in the failure. |
| 2673 | enum TemplateDeductionResult { |
| 2674 | /// \brief Template argument deduction was successful. |
| 2675 | TDK_Success = 0, |
| 2676 | /// \brief Template argument deduction exceeded the maximum template |
| 2677 | /// instantiation depth (which has already been diagnosed). |
| 2678 | TDK_InstantiationDepth, |
| 2679 | /// \brief Template argument deduction did not deduce a value |
| 2680 | /// for every template parameter. |
| 2681 | TDK_Incomplete, |
| 2682 | /// \brief Template argument deduction produced inconsistent |
| 2683 | /// deduced values for the given template parameter. |
| 2684 | TDK_Inconsistent, |
| 2685 | /// \brief Template argument deduction failed due to inconsistent |
| 2686 | /// cv-qualifiers on a template parameter type that would |
| 2687 | /// otherwise be deduced, e.g., we tried to deduce T in "const T" |
| 2688 | /// but were given a non-const "X". |
| 2689 | TDK_InconsistentQuals, |
| 2690 | /// \brief Substitution of the deduced template argument values |
| 2691 | /// resulted in an error. |
| 2692 | TDK_SubstitutionFailure, |
| 2693 | /// \brief Substitution of the deduced template argument values |
| 2694 | /// into a non-deduced context produced a type or value that |
| 2695 | /// produces a type that does not match the original template |
| 2696 | /// arguments provided. |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2697 | TDK_NonDeducedMismatch, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2698 | /// \brief When performing template argument deduction for a function |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2699 | /// template, there were too many call arguments. |
| 2700 | TDK_TooManyArguments, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2701 | /// \brief When performing template argument deduction for a function |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2702 | /// template, there were too few call arguments. |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 2703 | TDK_TooFewArguments, |
| 2704 | /// \brief The explicitly-specified template arguments were not valid |
| 2705 | /// template arguments for the given template. |
| 2706 | TDK_InvalidExplicitArguments |
Douglas Gregor | f67875d | 2009-06-12 18:26:56 +0000 | [diff] [blame] | 2707 | }; |
| 2708 | |
| 2709 | /// \brief Provides information about an attempted template argument |
| 2710 | /// deduction, whose success or failure was described by a |
| 2711 | /// TemplateDeductionResult value. |
| 2712 | class TemplateDeductionInfo { |
| 2713 | /// \brief The context in which the template arguments are stored. |
| 2714 | ASTContext &Context; |
| 2715 | |
| 2716 | /// \brief The deduced template argument list. |
| 2717 | /// |
| 2718 | TemplateArgumentList *Deduced; |
| 2719 | |
| 2720 | // do not implement these |
| 2721 | TemplateDeductionInfo(const TemplateDeductionInfo&); |
| 2722 | TemplateDeductionInfo &operator=(const TemplateDeductionInfo&); |
| 2723 | |
| 2724 | public: |
| 2725 | TemplateDeductionInfo(ASTContext &Context) : Context(Context), Deduced(0) { } |
| 2726 | |
| 2727 | ~TemplateDeductionInfo() { |
| 2728 | // FIXME: if (Deduced) Deduced->Destroy(Context); |
| 2729 | } |
| 2730 | |
| 2731 | /// \brief Take ownership of the deduced template argument list. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2732 | TemplateArgumentList *take() { |
Douglas Gregor | f67875d | 2009-06-12 18:26:56 +0000 | [diff] [blame] | 2733 | TemplateArgumentList *Result = Deduced; |
| 2734 | Deduced = 0; |
| 2735 | return Result; |
| 2736 | } |
| 2737 | |
| 2738 | /// \brief Provide a new template argument list that contains the |
| 2739 | /// results of template argument deduction. |
| 2740 | void reset(TemplateArgumentList *NewDeduced) { |
| 2741 | // FIXME: if (Deduced) Deduced->Destroy(Context); |
| 2742 | Deduced = NewDeduced; |
| 2743 | } |
| 2744 | |
| 2745 | /// \brief The template parameter to which a template argument |
| 2746 | /// deduction failure refers. |
| 2747 | /// |
| 2748 | /// Depending on the result of template argument deduction, this |
| 2749 | /// template parameter may have different meanings: |
| 2750 | /// |
| 2751 | /// TDK_Incomplete: this is the first template parameter whose |
| 2752 | /// corresponding template argument was not deduced. |
| 2753 | /// |
| 2754 | /// TDK_Inconsistent: this is the template parameter for which |
| 2755 | /// two different template argument values were deduced. |
| 2756 | TemplateParameter Param; |
| 2757 | |
| 2758 | /// \brief The first template argument to which the template |
| 2759 | /// argument deduction failure refers. |
| 2760 | /// |
| 2761 | /// Depending on the result of the template argument deduction, |
| 2762 | /// this template argument may have different meanings: |
| 2763 | /// |
| 2764 | /// TDK_Inconsistent: this argument is the first value deduced |
| 2765 | /// for the corresponding template parameter. |
| 2766 | /// |
| 2767 | /// TDK_SubstitutionFailure: this argument is the template |
| 2768 | /// argument we were instantiating when we encountered an error. |
| 2769 | /// |
| 2770 | /// TDK_NonDeducedMismatch: this is the template argument |
| 2771 | /// provided in the source code. |
| 2772 | TemplateArgument FirstArg; |
| 2773 | |
| 2774 | /// \brief The second template argument to which the template |
| 2775 | /// argument deduction failure refers. |
| 2776 | /// |
| 2777 | /// FIXME: Finish documenting this. |
| 2778 | TemplateArgument SecondArg; |
| 2779 | }; |
| 2780 | |
| 2781 | TemplateDeductionResult |
Douglas Gregor | 199d991 | 2009-06-05 00:53:49 +0000 | [diff] [blame] | 2782 | DeduceTemplateArguments(ClassTemplatePartialSpecializationDecl *Partial, |
Douglas Gregor | f67875d | 2009-06-12 18:26:56 +0000 | [diff] [blame] | 2783 | const TemplateArgumentList &TemplateArgs, |
| 2784 | TemplateDeductionInfo &Info); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2785 | |
Douglas Gregor | 83314aa | 2009-07-08 20:55:45 +0000 | [diff] [blame] | 2786 | TemplateDeductionResult |
| 2787 | SubstituteExplicitTemplateArguments(FunctionTemplateDecl *FunctionTemplate, |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 2788 | const TemplateArgumentLoc *ExplicitTemplateArgs, |
Douglas Gregor | 83314aa | 2009-07-08 20:55:45 +0000 | [diff] [blame] | 2789 | unsigned NumExplicitTemplateArgs, |
| 2790 | llvm::SmallVectorImpl<TemplateArgument> &Deduced, |
| 2791 | llvm::SmallVectorImpl<QualType> &ParamTypes, |
| 2792 | QualType *FunctionType, |
| 2793 | TemplateDeductionInfo &Info); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2794 | |
| 2795 | TemplateDeductionResult |
Douglas Gregor | 83314aa | 2009-07-08 20:55:45 +0000 | [diff] [blame] | 2796 | FinishTemplateArgumentDeduction(FunctionTemplateDecl *FunctionTemplate, |
| 2797 | llvm::SmallVectorImpl<TemplateArgument> &Deduced, |
| 2798 | FunctionDecl *&Specialization, |
| 2799 | TemplateDeductionInfo &Info); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2800 | |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2801 | TemplateDeductionResult |
| 2802 | DeduceTemplateArguments(FunctionTemplateDecl *FunctionTemplate, |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 2803 | bool HasExplicitTemplateArgs, |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 2804 | const TemplateArgumentLoc *ExplicitTemplateArgs, |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 2805 | unsigned NumExplicitTemplateArgs, |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2806 | Expr **Args, unsigned NumArgs, |
| 2807 | FunctionDecl *&Specialization, |
| 2808 | TemplateDeductionInfo &Info); |
Douglas Gregor | 83314aa | 2009-07-08 20:55:45 +0000 | [diff] [blame] | 2809 | |
| 2810 | TemplateDeductionResult |
| 2811 | DeduceTemplateArguments(FunctionTemplateDecl *FunctionTemplate, |
| 2812 | bool HasExplicitTemplateArgs, |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 2813 | const TemplateArgumentLoc *ExplicitTemplateArgs, |
Douglas Gregor | 83314aa | 2009-07-08 20:55:45 +0000 | [diff] [blame] | 2814 | unsigned NumExplicitTemplateArgs, |
| 2815 | QualType ArgFunctionType, |
| 2816 | FunctionDecl *&Specialization, |
| 2817 | TemplateDeductionInfo &Info); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2818 | |
Douglas Gregor | 65ec1fd | 2009-08-21 23:19:43 +0000 | [diff] [blame] | 2819 | TemplateDeductionResult |
| 2820 | DeduceTemplateArguments(FunctionTemplateDecl *FunctionTemplate, |
| 2821 | QualType ToType, |
| 2822 | CXXConversionDecl *&Specialization, |
| 2823 | TemplateDeductionInfo &Info); |
| 2824 | |
| 2825 | FunctionTemplateDecl *getMoreSpecializedTemplate(FunctionTemplateDecl *FT1, |
| 2826 | FunctionTemplateDecl *FT2, |
Douglas Gregor | 8a51491 | 2009-09-14 18:39:43 +0000 | [diff] [blame] | 2827 | TemplatePartialOrderingContext TPOC); |
Douglas Gregor | d5a423b | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 2828 | FunctionDecl *getMostSpecialized(FunctionDecl **Specializations, |
| 2829 | unsigned NumSpecializations, |
| 2830 | TemplatePartialOrderingContext TPOC, |
| 2831 | SourceLocation Loc, |
| 2832 | const PartialDiagnostic &NoneDiag, |
| 2833 | const PartialDiagnostic &AmbigDiag, |
| 2834 | const PartialDiagnostic &CandidateDiag, |
| 2835 | unsigned *Index = 0); |
| 2836 | |
Douglas Gregor | bf4ea56 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 2837 | ClassTemplatePartialSpecializationDecl * |
| 2838 | getMoreSpecializedPartialSpecialization( |
| 2839 | ClassTemplatePartialSpecializationDecl *PS1, |
| 2840 | ClassTemplatePartialSpecializationDecl *PS2); |
| 2841 | |
Douglas Gregor | e73bb60 | 2009-09-14 21:25:05 +0000 | [diff] [blame] | 2842 | void MarkUsedTemplateParameters(const TemplateArgumentList &TemplateArgs, |
| 2843 | bool OnlyDeduced, |
Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2844 | unsigned Depth, |
Douglas Gregor | 63f07c5 | 2009-09-18 23:21:38 +0000 | [diff] [blame] | 2845 | llvm::SmallVectorImpl<bool> &Used); |
| 2846 | void MarkDeducedTemplateParameters(FunctionTemplateDecl *FunctionTemplate, |
| 2847 | llvm::SmallVectorImpl<bool> &Deduced); |
| 2848 | |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 2849 | //===--------------------------------------------------------------------===// |
| 2850 | // C++ Template Instantiation |
| 2851 | // |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 2852 | |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 2853 | MultiLevelTemplateArgumentList getTemplateInstantiationArgs(NamedDecl *D); |
Douglas Gregor | 54dabfc | 2009-05-14 23:26:13 +0000 | [diff] [blame] | 2854 | |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 2855 | /// \brief A template instantiation that is currently in progress. |
| 2856 | struct ActiveTemplateInstantiation { |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 2857 | /// \brief The kind of template instantiation we are performing |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 2858 | enum InstantiationKind { |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 2859 | /// We are instantiating a template declaration. The entity is |
Douglas Gregor | b9f1b8d | 2009-05-15 00:01:03 +0000 | [diff] [blame] | 2860 | /// the declaration we're instantiating (e.g., a CXXRecordDecl). |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 2861 | TemplateInstantiation, |
| 2862 | |
| 2863 | /// We are instantiating a default argument for a template |
| 2864 | /// parameter. The Entity is the template, and |
| 2865 | /// TemplateArgs/NumTemplateArguments provides the template |
| 2866 | /// arguments as specified. |
Douglas Gregor | 637a409 | 2009-06-10 23:47:09 +0000 | [diff] [blame] | 2867 | /// FIXME: Use a TemplateArgumentList |
| 2868 | DefaultTemplateArgumentInstantiation, |
| 2869 | |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 2870 | /// We are instantiating a default argument for a function. |
| 2871 | /// The Entity is the ParmVarDecl, and TemplateArgs/NumTemplateArgs |
| 2872 | /// provides the template arguments as specified. |
| 2873 | DefaultFunctionArgumentInstantiation, |
| 2874 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2875 | /// We are substituting explicit template arguments provided for |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 2876 | /// a function template. The entity is a FunctionTemplateDecl. |
| 2877 | ExplicitTemplateArgumentSubstitution, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2878 | |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 2879 | /// We are substituting template argument determined as part of |
| 2880 | /// template argument deduction for either a class template |
| 2881 | /// partial specialization or a function template. The |
| 2882 | /// Entity is either a ClassTemplatePartialSpecializationDecl or |
| 2883 | /// a FunctionTemplateDecl. |
| 2884 | DeducedTemplateArgumentSubstitution |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 2885 | } Kind; |
| 2886 | |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 2887 | /// \brief The point of instantiation within the source code. |
| 2888 | SourceLocation PointOfInstantiation; |
| 2889 | |
| 2890 | /// \brief The entity that is being instantiated. |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 2891 | uintptr_t Entity; |
| 2892 | |
| 2893 | // \brief If this the instantiation of a default template |
Douglas Gregor | 7e06390 | 2009-05-11 23:53:27 +0000 | [diff] [blame] | 2894 | // argument, the list of template arguments. |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 2895 | const TemplateArgument *TemplateArgs; |
| 2896 | |
| 2897 | /// \brief The number of template arguments in TemplateArgs. |
| 2898 | unsigned NumTemplateArgs; |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 2899 | |
| 2900 | /// \brief The source range that covers the construct that cause |
| 2901 | /// the instantiation, e.g., the template-id that causes a class |
| 2902 | /// template instantiation. |
| 2903 | SourceRange InstantiationRange; |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 2904 | |
Eli Friedman | 2ebcc6b | 2009-08-15 22:50:33 +0000 | [diff] [blame] | 2905 | ActiveTemplateInstantiation() : Kind(TemplateInstantiation), Entity(0), |
| 2906 | TemplateArgs(0), NumTemplateArgs(0) {} |
| 2907 | |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 2908 | friend bool operator==(const ActiveTemplateInstantiation &X, |
| 2909 | const ActiveTemplateInstantiation &Y) { |
| 2910 | if (X.Kind != Y.Kind) |
| 2911 | return false; |
| 2912 | |
| 2913 | if (X.Entity != Y.Entity) |
| 2914 | return false; |
| 2915 | |
| 2916 | switch (X.Kind) { |
| 2917 | case TemplateInstantiation: |
| 2918 | return true; |
| 2919 | |
| 2920 | case DefaultTemplateArgumentInstantiation: |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 2921 | case ExplicitTemplateArgumentSubstitution: |
| 2922 | case DeducedTemplateArgumentSubstitution: |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 2923 | case DefaultFunctionArgumentInstantiation: |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 2924 | return X.TemplateArgs == Y.TemplateArgs; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2925 | |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 2926 | } |
| 2927 | |
| 2928 | return true; |
| 2929 | } |
| 2930 | |
| 2931 | friend bool operator!=(const ActiveTemplateInstantiation &X, |
| 2932 | const ActiveTemplateInstantiation &Y) { |
| 2933 | return !(X == Y); |
| 2934 | } |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 2935 | }; |
| 2936 | |
| 2937 | /// \brief List of active template instantiations. |
| 2938 | /// |
| 2939 | /// This vector is treated as a stack. As one template instantiation |
| 2940 | /// requires another template instantiation, additional |
| 2941 | /// instantiations are pushed onto the stack up to a |
| 2942 | /// user-configurable limit LangOptions::InstantiationDepth. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2943 | llvm::SmallVector<ActiveTemplateInstantiation, 16> |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 2944 | ActiveTemplateInstantiations; |
| 2945 | |
Douglas Gregor | 27b152f | 2009-03-10 18:52:44 +0000 | [diff] [blame] | 2946 | /// \brief The last template from which a template instantiation |
| 2947 | /// error or warning was produced. |
| 2948 | /// |
| 2949 | /// This value is used to suppress printing of redundant template |
| 2950 | /// instantiation backtraces when there are multiple errors in the |
| 2951 | /// same instantiation. FIXME: Does this belong in Sema? It's tough |
| 2952 | /// to implement it anywhere else. |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 2953 | ActiveTemplateInstantiation LastTemplateInstantiationErrorContext; |
Douglas Gregor | 27b152f | 2009-03-10 18:52:44 +0000 | [diff] [blame] | 2954 | |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 2955 | /// \brief A stack object to be created when performing template |
| 2956 | /// instantiation. |
| 2957 | /// |
| 2958 | /// Construction of an object of type \c InstantiatingTemplate |
| 2959 | /// pushes the current instantiation onto the stack of active |
| 2960 | /// instantiations. If the size of this stack exceeds the maximum |
| 2961 | /// number of recursive template instantiations, construction |
| 2962 | /// produces an error and evaluates true. |
| 2963 | /// |
| 2964 | /// Destruction of this object will pop the named instantiation off |
| 2965 | /// the stack. |
| 2966 | struct InstantiatingTemplate { |
Douglas Gregor | f3e7ce4 | 2009-05-18 17:01:57 +0000 | [diff] [blame] | 2967 | /// \brief Note that we are instantiating a class template, |
| 2968 | /// function template, or a member thereof. |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 2969 | InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation, |
Douglas Gregor | f3e7ce4 | 2009-05-18 17:01:57 +0000 | [diff] [blame] | 2970 | Decl *Entity, |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 2971 | SourceRange InstantiationRange = SourceRange()); |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 2972 | |
| 2973 | /// \brief Note that we are instantiating a default argument in a |
| 2974 | /// template-id. |
| 2975 | InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation, |
| 2976 | TemplateDecl *Template, |
| 2977 | const TemplateArgument *TemplateArgs, |
| 2978 | unsigned NumTemplateArgs, |
| 2979 | SourceRange InstantiationRange = SourceRange()); |
| 2980 | |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 2981 | /// \brief Note that we are instantiating a default argument in a |
| 2982 | /// template-id. |
| 2983 | InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation, |
| 2984 | FunctionTemplateDecl *FunctionTemplate, |
| 2985 | const TemplateArgument *TemplateArgs, |
| 2986 | unsigned NumTemplateArgs, |
| 2987 | ActiveTemplateInstantiation::InstantiationKind Kind, |
| 2988 | SourceRange InstantiationRange = SourceRange()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2989 | |
Douglas Gregor | 637a409 | 2009-06-10 23:47:09 +0000 | [diff] [blame] | 2990 | /// \brief Note that we are instantiating as part of template |
| 2991 | /// argument deduction for a class template partial |
| 2992 | /// specialization. |
| 2993 | InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation, |
| 2994 | ClassTemplatePartialSpecializationDecl *PartialSpec, |
| 2995 | const TemplateArgument *TemplateArgs, |
| 2996 | unsigned NumTemplateArgs, |
| 2997 | SourceRange InstantiationRange = SourceRange()); |
| 2998 | |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 2999 | InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation, |
| 3000 | ParmVarDecl *Param, |
| 3001 | const TemplateArgument *TemplateArgs, |
| 3002 | unsigned NumTemplateArgs, |
| 3003 | SourceRange InstantiationRange = SourceRange()); |
| 3004 | |
Douglas Gregor | f3e7ce4 | 2009-05-18 17:01:57 +0000 | [diff] [blame] | 3005 | /// \brief Note that we have finished instantiating this template. |
| 3006 | void Clear(); |
| 3007 | |
| 3008 | ~InstantiatingTemplate() { Clear(); } |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 3009 | |
| 3010 | /// \brief Determines whether we have exceeded the maximum |
| 3011 | /// recursive template instantiations. |
| 3012 | operator bool() const { return Invalid; } |
| 3013 | |
| 3014 | private: |
| 3015 | Sema &SemaRef; |
| 3016 | bool Invalid; |
| 3017 | |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 3018 | bool CheckInstantiationDepth(SourceLocation PointOfInstantiation, |
| 3019 | SourceRange InstantiationRange); |
| 3020 | |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 3021 | InstantiatingTemplate(const InstantiatingTemplate&); // not implemented |
| 3022 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3023 | InstantiatingTemplate& |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 3024 | operator=(const InstantiatingTemplate&); // not implemented |
| 3025 | }; |
| 3026 | |
Douglas Gregor | ee1828a | 2009-03-10 18:03:33 +0000 | [diff] [blame] | 3027 | void PrintInstantiationStack(); |
| 3028 | |
Douglas Gregor | 5e9f35c | 2009-06-14 07:33:30 +0000 | [diff] [blame] | 3029 | /// \brief Determines whether we are currently in a context where |
| 3030 | /// template argument substitution failures are not considered |
| 3031 | /// errors. |
| 3032 | /// |
| 3033 | /// When this routine returns true, the emission of most diagnostics |
| 3034 | /// will be suppressed and there will be no local error recovery. |
| 3035 | bool isSFINAEContext() const; |
| 3036 | |
Douglas Gregor | bb26041 | 2009-06-14 08:02:22 +0000 | [diff] [blame] | 3037 | /// \brief RAII class used to determine whether SFINAE has |
| 3038 | /// trapped any errors that occur during template argument |
| 3039 | /// deduction. |
| 3040 | class SFINAETrap { |
| 3041 | Sema &SemaRef; |
| 3042 | unsigned PrevSFINAEErrors; |
| 3043 | public: |
| 3044 | explicit SFINAETrap(Sema &SemaRef) |
| 3045 | : SemaRef(SemaRef), PrevSFINAEErrors(SemaRef.NumSFINAEErrors) { } |
| 3046 | |
| 3047 | ~SFINAETrap() { SemaRef.NumSFINAEErrors = PrevSFINAEErrors; } |
| 3048 | |
| 3049 | /// \brief Determine whether any SFINAE errors have been trapped. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3050 | bool hasErrorOccurred() const { |
| 3051 | return SemaRef.NumSFINAEErrors > PrevSFINAEErrors; |
Douglas Gregor | bb26041 | 2009-06-14 08:02:22 +0000 | [diff] [blame] | 3052 | } |
| 3053 | }; |
| 3054 | |
Douglas Gregor | 48dd19b | 2009-05-14 21:44:34 +0000 | [diff] [blame] | 3055 | /// \brief A stack-allocated class that identifies which local |
| 3056 | /// variable declaration instantiations are present in this scope. |
| 3057 | /// |
| 3058 | /// A new instance of this class type will be created whenever we |
| 3059 | /// instantiate a new function declaration, which will have its own |
| 3060 | /// set of parameter declarations. |
| 3061 | class LocalInstantiationScope { |
| 3062 | /// \brief Reference to the semantic analysis that is performing |
| 3063 | /// this template instantiation. |
| 3064 | Sema &SemaRef; |
| 3065 | |
Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 3066 | /// \brief A mapping from local declarations that occur |
Douglas Gregor | 48dd19b | 2009-05-14 21:44:34 +0000 | [diff] [blame] | 3067 | /// within a template to their instantiations. |
| 3068 | /// |
| 3069 | /// This mapping is used during instantiation to keep track of, |
| 3070 | /// e.g., function parameter and variable declarations. For example, |
| 3071 | /// given: |
| 3072 | /// |
| 3073 | /// \code |
| 3074 | /// template<typename T> T add(T x, T y) { return x + y; } |
| 3075 | /// \endcode |
| 3076 | /// |
| 3077 | /// when we instantiate add<int>, we will introduce a mapping from |
| 3078 | /// the ParmVarDecl for 'x' that occurs in the template to the |
| 3079 | /// instantiated ParmVarDecl for 'x'. |
Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 3080 | llvm::DenseMap<const Decl *, Decl *> LocalDecls; |
Douglas Gregor | 48dd19b | 2009-05-14 21:44:34 +0000 | [diff] [blame] | 3081 | |
| 3082 | /// \brief The outer scope, in which contains local variable |
Douglas Gregor | 550d9b2 | 2009-10-31 17:21:17 +0000 | [diff] [blame] | 3083 | /// definitions from some other instantiation (that may not be |
Douglas Gregor | 48dd19b | 2009-05-14 21:44:34 +0000 | [diff] [blame] | 3084 | /// relevant to this particular scope). |
| 3085 | LocalInstantiationScope *Outer; |
| 3086 | |
| 3087 | // This class is non-copyable |
| 3088 | LocalInstantiationScope(const LocalInstantiationScope &); |
| 3089 | LocalInstantiationScope &operator=(const LocalInstantiationScope &); |
| 3090 | |
| 3091 | public: |
Douglas Gregor | 550d9b2 | 2009-10-31 17:21:17 +0000 | [diff] [blame] | 3092 | LocalInstantiationScope(Sema &SemaRef, bool CombineWithOuterScope = false) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3093 | : SemaRef(SemaRef), Outer(SemaRef.CurrentInstantiationScope) { |
Douglas Gregor | 550d9b2 | 2009-10-31 17:21:17 +0000 | [diff] [blame] | 3094 | if (!CombineWithOuterScope) |
| 3095 | SemaRef.CurrentInstantiationScope = this; |
| 3096 | else |
| 3097 | assert(SemaRef.CurrentInstantiationScope && |
| 3098 | "No outer instantiation scope?"); |
Douglas Gregor | 48dd19b | 2009-05-14 21:44:34 +0000 | [diff] [blame] | 3099 | } |
| 3100 | |
| 3101 | ~LocalInstantiationScope() { |
| 3102 | SemaRef.CurrentInstantiationScope = Outer; |
| 3103 | } |
| 3104 | |
Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 3105 | Decl *getInstantiationOf(const Decl *D) { |
| 3106 | Decl *Result = LocalDecls[D]; |
| 3107 | assert(Result && "declaration was not instantiated in this scope!"); |
Douglas Gregor | 48dd19b | 2009-05-14 21:44:34 +0000 | [diff] [blame] | 3108 | return Result; |
| 3109 | } |
| 3110 | |
Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 3111 | VarDecl *getInstantiationOf(const VarDecl *Var) { |
| 3112 | return cast<VarDecl>(getInstantiationOf(cast<Decl>(Var))); |
Douglas Gregor | 48dd19b | 2009-05-14 21:44:34 +0000 | [diff] [blame] | 3113 | } |
| 3114 | |
Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 3115 | ParmVarDecl *getInstantiationOf(const ParmVarDecl *Var) { |
| 3116 | return cast<ParmVarDecl>(getInstantiationOf(cast<Decl>(Var))); |
| 3117 | } |
| 3118 | |
Douglas Gregor | 550d9b2 | 2009-10-31 17:21:17 +0000 | [diff] [blame] | 3119 | NonTypeTemplateParmDecl *getInstantiationOf( |
| 3120 | const NonTypeTemplateParmDecl *Var) { |
| 3121 | return cast<NonTypeTemplateParmDecl>(getInstantiationOf(cast<Decl>(Var))); |
| 3122 | } |
| 3123 | |
Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 3124 | void InstantiatedLocal(const Decl *D, Decl *Inst) { |
| 3125 | Decl *&Stored = LocalDecls[D]; |
| 3126 | assert(!Stored && "Already instantiated this local"); |
| 3127 | Stored = Inst; |
Douglas Gregor | 48dd19b | 2009-05-14 21:44:34 +0000 | [diff] [blame] | 3128 | } |
| 3129 | }; |
| 3130 | |
| 3131 | /// \brief The current instantiation scope used to store local |
| 3132 | /// variables. |
| 3133 | LocalInstantiationScope *CurrentInstantiationScope; |
| 3134 | |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 3135 | /// \brief An entity for which implicit template instantiation is required. |
| 3136 | /// |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3137 | /// The source location associated with the declaration is the first place in |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 3138 | /// the source code where the declaration was "used". It is not necessarily |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3139 | /// the point of instantiation (which will be either before or after the |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 3140 | /// namespace-scope declaration that triggered this implicit instantiation), |
| 3141 | /// However, it is the location that diagnostics should generally refer to, |
| 3142 | /// because users will need to know what code triggered the instantiation. |
| 3143 | typedef std::pair<ValueDecl *, SourceLocation> PendingImplicitInstantiation; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3144 | |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 3145 | /// \brief The queue of implicit template instantiations that are required |
| 3146 | /// but have not yet been performed. |
Douglas Gregor | b33fe2f | 2009-06-30 17:20:14 +0000 | [diff] [blame] | 3147 | std::deque<PendingImplicitInstantiation> PendingImplicitInstantiations; |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 3148 | |
| 3149 | void PerformPendingImplicitInstantiations(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3150 | |
John McCall | cd7ba1c | 2009-10-21 00:58:09 +0000 | [diff] [blame] | 3151 | DeclaratorInfo *SubstType(DeclaratorInfo *T, |
| 3152 | const MultiLevelTemplateArgumentList &TemplateArgs, |
| 3153 | SourceLocation Loc, DeclarationName Entity); |
| 3154 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3155 | QualType SubstType(QualType T, |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 3156 | const MultiLevelTemplateArgumentList &TemplateArgs, |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 3157 | SourceLocation Loc, DeclarationName Entity); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3158 | |
| 3159 | OwningExprResult SubstExpr(Expr *E, |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 3160 | const MultiLevelTemplateArgumentList &TemplateArgs); |
Douglas Gregor | a0e500d | 2009-03-12 16:53:44 +0000 | [diff] [blame] | 3161 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3162 | OwningStmtResult SubstStmt(Stmt *S, |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 3163 | const MultiLevelTemplateArgumentList &TemplateArgs); |
Douglas Gregor | 54dabfc | 2009-05-14 23:26:13 +0000 | [diff] [blame] | 3164 | |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 3165 | Decl *SubstDecl(Decl *D, DeclContext *Owner, |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 3166 | const MultiLevelTemplateArgumentList &TemplateArgs); |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 3167 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3168 | bool |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 3169 | SubstBaseSpecifiers(CXXRecordDecl *Instantiation, |
| 3170 | CXXRecordDecl *Pattern, |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 3171 | const MultiLevelTemplateArgumentList &TemplateArgs); |
John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 3172 | |
| 3173 | bool |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 3174 | InstantiateClass(SourceLocation PointOfInstantiation, |
| 3175 | CXXRecordDecl *Instantiation, CXXRecordDecl *Pattern, |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 3176 | const MultiLevelTemplateArgumentList &TemplateArgs, |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 3177 | TemplateSpecializationKind TSK, |
Douglas Gregor | 5842ba9 | 2009-08-24 15:23:48 +0000 | [diff] [blame] | 3178 | bool Complain = true); |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 3179 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3180 | bool |
Douglas Gregor | 972e6ce | 2009-10-27 06:26:26 +0000 | [diff] [blame] | 3181 | InstantiateClassTemplateSpecialization(SourceLocation PointOfInstantiation, |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 3182 | ClassTemplateSpecializationDecl *ClassTemplateSpec, |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 3183 | TemplateSpecializationKind TSK, |
| 3184 | bool Complain = true); |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 3185 | |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 3186 | void InstantiateClassMembers(SourceLocation PointOfInstantiation, |
| 3187 | CXXRecordDecl *Instantiation, |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 3188 | const MultiLevelTemplateArgumentList &TemplateArgs, |
| 3189 | TemplateSpecializationKind TSK); |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 3190 | |
| 3191 | void InstantiateClassTemplateSpecializationMembers( |
| 3192 | SourceLocation PointOfInstantiation, |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 3193 | ClassTemplateSpecializationDecl *ClassTemplateSpec, |
| 3194 | TemplateSpecializationKind TSK); |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 3195 | |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 3196 | NestedNameSpecifier * |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 3197 | SubstNestedNameSpecifier(NestedNameSpecifier *NNS, |
| 3198 | SourceRange Range, |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 3199 | const MultiLevelTemplateArgumentList &TemplateArgs); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 3200 | |
Douglas Gregor | de650ae | 2009-03-31 18:38:02 +0000 | [diff] [blame] | 3201 | TemplateName |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 3202 | SubstTemplateName(TemplateName Name, SourceLocation Loc, |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 3203 | const MultiLevelTemplateArgumentList &TemplateArgs); |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 3204 | bool Subst(const TemplateArgumentLoc &Arg, TemplateArgumentLoc &Result, |
| 3205 | const MultiLevelTemplateArgumentList &TemplateArgs); |
Douglas Gregor | de650ae | 2009-03-31 18:38:02 +0000 | [diff] [blame] | 3206 | |
Douglas Gregor | f3e7ce4 | 2009-05-18 17:01:57 +0000 | [diff] [blame] | 3207 | void InstantiateFunctionDefinition(SourceLocation PointOfInstantiation, |
Douglas Gregor | b33fe2f | 2009-06-30 17:20:14 +0000 | [diff] [blame] | 3208 | FunctionDecl *Function, |
Douglas Gregor | e2d3a3d | 2009-10-15 14:05:49 +0000 | [diff] [blame] | 3209 | bool Recursive = false, |
| 3210 | bool DefinitionRequired = false); |
Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 3211 | void InstantiateStaticDataMemberDefinition( |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 3212 | SourceLocation PointOfInstantiation, |
| 3213 | VarDecl *Var, |
Douglas Gregor | e2d3a3d | 2009-10-15 14:05:49 +0000 | [diff] [blame] | 3214 | bool Recursive = false, |
| 3215 | bool DefinitionRequired = false); |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 3216 | |
Anders Carlsson | 0902531 | 2009-08-29 05:16:22 +0000 | [diff] [blame] | 3217 | void InstantiateMemInitializers(CXXConstructorDecl *New, |
| 3218 | const CXXConstructorDecl *Tmpl, |
| 3219 | const MultiLevelTemplateArgumentList &TemplateArgs); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3220 | |
Douglas Gregor | e95b409 | 2009-09-16 18:34:49 +0000 | [diff] [blame] | 3221 | NamedDecl *FindInstantiatedDecl(NamedDecl *D, |
| 3222 | const MultiLevelTemplateArgumentList &TemplateArgs); |
| 3223 | DeclContext *FindInstantiatedContext(DeclContext *DC, |
| 3224 | const MultiLevelTemplateArgumentList &TemplateArgs); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3225 | |
Steve Naroff | 3536b44 | 2007-09-06 21:24:23 +0000 | [diff] [blame] | 3226 | // Objective-C declarations. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 3227 | virtual DeclPtrTy ActOnStartClassInterface(SourceLocation AtInterfaceLoc, |
| 3228 | IdentifierInfo *ClassName, |
| 3229 | SourceLocation ClassLoc, |
| 3230 | IdentifierInfo *SuperName, |
| 3231 | SourceLocation SuperLoc, |
| 3232 | const DeclPtrTy *ProtoRefs, |
| 3233 | unsigned NumProtoRefs, |
| 3234 | SourceLocation EndProtoLoc, |
| 3235 | AttributeList *AttrList); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3236 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 3237 | virtual DeclPtrTy ActOnCompatiblityAlias( |
Fariborz Jahanian | 243b64b | 2007-10-11 23:42:27 +0000 | [diff] [blame] | 3238 | SourceLocation AtCompatibilityAliasLoc, |
| 3239 | IdentifierInfo *AliasName, SourceLocation AliasLocation, |
| 3240 | IdentifierInfo *ClassName, SourceLocation ClassLocation); |
Steve Naroff | 61d6852 | 2009-03-05 15:22:01 +0000 | [diff] [blame] | 3241 | |
| 3242 | void CheckForwardProtocolDeclarationForCircularDependency( |
| 3243 | IdentifierInfo *PName, |
| 3244 | SourceLocation &PLoc, SourceLocation PrevLoc, |
| 3245 | const ObjCList<ObjCProtocolDecl> &PList); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3246 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 3247 | virtual DeclPtrTy ActOnStartProtocolInterface( |
Nate Begeman | 1abc7f6 | 2008-02-20 22:57:40 +0000 | [diff] [blame] | 3248 | SourceLocation AtProtoInterfaceLoc, |
Fariborz Jahanian | 25e077d | 2007-09-17 21:07:36 +0000 | [diff] [blame] | 3249 | IdentifierInfo *ProtocolName, SourceLocation ProtocolLoc, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 3250 | const DeclPtrTy *ProtoRefNames, unsigned NumProtoRefs, |
Daniel Dunbar | 246e70f | 2008-09-26 04:48:09 +0000 | [diff] [blame] | 3251 | SourceLocation EndProtoLoc, |
| 3252 | AttributeList *AttrList); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3253 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 3254 | virtual DeclPtrTy ActOnStartCategoryInterface(SourceLocation AtInterfaceLoc, |
| 3255 | IdentifierInfo *ClassName, |
| 3256 | SourceLocation ClassLoc, |
| 3257 | IdentifierInfo *CategoryName, |
| 3258 | SourceLocation CategoryLoc, |
| 3259 | const DeclPtrTy *ProtoRefs, |
| 3260 | unsigned NumProtoRefs, |
| 3261 | SourceLocation EndProtoLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3262 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 3263 | virtual DeclPtrTy ActOnStartClassImplementation( |
Nate Begeman | 1abc7f6 | 2008-02-20 22:57:40 +0000 | [diff] [blame] | 3264 | SourceLocation AtClassImplLoc, |
Fariborz Jahanian | ccb4f31 | 2007-09-25 18:38:09 +0000 | [diff] [blame] | 3265 | IdentifierInfo *ClassName, SourceLocation ClassLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3266 | IdentifierInfo *SuperClassname, |
Fariborz Jahanian | ccb4f31 | 2007-09-25 18:38:09 +0000 | [diff] [blame] | 3267 | SourceLocation SuperClassLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3268 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 3269 | virtual DeclPtrTy ActOnStartCategoryImplementation( |
Fariborz Jahanian | 8f3fde0 | 2007-10-02 16:38:50 +0000 | [diff] [blame] | 3270 | SourceLocation AtCatImplLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3271 | IdentifierInfo *ClassName, |
Fariborz Jahanian | 8f3fde0 | 2007-10-02 16:38:50 +0000 | [diff] [blame] | 3272 | SourceLocation ClassLoc, |
| 3273 | IdentifierInfo *CatName, |
| 3274 | SourceLocation CatLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3275 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 3276 | virtual DeclPtrTy ActOnForwardClassDeclaration(SourceLocation Loc, |
Steve Naroff | 37e58d1 | 2007-10-02 22:39:18 +0000 | [diff] [blame] | 3277 | IdentifierInfo **IdentList, |
| 3278 | unsigned NumElts); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3279 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 3280 | virtual DeclPtrTy ActOnForwardProtocolDeclaration(SourceLocation AtProtocolLoc, |
Chris Lattner | 7caeabd | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 3281 | const IdentifierLocPair *IdentList, |
Fariborz Jahanian | bc1c877 | 2008-12-17 01:07:27 +0000 | [diff] [blame] | 3282 | unsigned NumElts, |
| 3283 | AttributeList *attrList); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3284 | |
Chris Lattner | e13b959 | 2008-07-26 04:03:38 +0000 | [diff] [blame] | 3285 | virtual void FindProtocolDeclaration(bool WarnOnDeclarations, |
Chris Lattner | 7caeabd | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 3286 | const IdentifierLocPair *ProtocolId, |
Fariborz Jahanian | 4b6c905 | 2007-10-11 00:55:41 +0000 | [diff] [blame] | 3287 | unsigned NumProtocols, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 3288 | llvm::SmallVectorImpl<DeclPtrTy> &Protocols); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3289 | |
| 3290 | /// Ensure attributes are consistent with type. |
Daniel Dunbar | 95e61fb | 2008-09-23 21:53:23 +0000 | [diff] [blame] | 3291 | /// \param [in, out] Attributes The attributes to check; they will |
| 3292 | /// be modified to be consistent with \arg PropertyTy. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3293 | void CheckObjCPropertyAttributes(QualType PropertyTy, |
Daniel Dunbar | 95e61fb | 2008-09-23 21:53:23 +0000 | [diff] [blame] | 3294 | SourceLocation Loc, |
| 3295 | unsigned &Attributes); |
Steve Naroff | 0701bbb | 2009-01-08 17:28:14 +0000 | [diff] [blame] | 3296 | void ProcessPropertyDecl(ObjCPropertyDecl *property, ObjCContainerDecl *DC); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3297 | void DiagnosePropertyMismatch(ObjCPropertyDecl *Property, |
Fariborz Jahanian | 02edb98 | 2008-05-01 00:03:38 +0000 | [diff] [blame] | 3298 | ObjCPropertyDecl *SuperProperty, |
Chris Lattner | 8ec03f5 | 2008-11-24 03:54:41 +0000 | [diff] [blame] | 3299 | const IdentifierInfo *Name); |
Fariborz Jahanian | 02edb98 | 2008-05-01 00:03:38 +0000 | [diff] [blame] | 3300 | void ComparePropertiesInBaseAndSuper(ObjCInterfaceDecl *IDecl); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3301 | |
| 3302 | void CompareMethodParamsInBaseAndSuper(Decl *IDecl, |
Fariborz Jahanian | dbdec8b | 2009-08-04 01:07:16 +0000 | [diff] [blame] | 3303 | ObjCMethodDecl *MethodDecl, |
| 3304 | bool IsInstance); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3305 | |
Fariborz Jahanian | 1ac2bc4 | 2008-12-06 23:03:39 +0000 | [diff] [blame] | 3306 | void MergeProtocolPropertiesIntoClass(Decl *CDecl, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 3307 | DeclPtrTy MergeProtocols); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3308 | |
| 3309 | void DiagnoseClassExtensionDupMethods(ObjCCategoryDecl *CAT, |
Fariborz Jahanian | b7f95f5 | 2009-03-02 19:05:07 +0000 | [diff] [blame] | 3310 | ObjCInterfaceDecl *ID); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3311 | |
Fariborz Jahanian | 1ac2bc4 | 2008-12-06 23:03:39 +0000 | [diff] [blame] | 3312 | void MergeOneProtocolPropertiesIntoClass(Decl *CDecl, |
Fariborz Jahanian | aebf0cb | 2008-05-02 19:17:30 +0000 | [diff] [blame] | 3313 | ObjCProtocolDecl *PDecl); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3314 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 3315 | virtual void ActOnAtEnd(SourceLocation AtEndLoc, DeclPtrTy classDecl, |
| 3316 | DeclPtrTy *allMethods = 0, unsigned allNum = 0, |
| 3317 | DeclPtrTy *allProperties = 0, unsigned pNum = 0, |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 3318 | DeclGroupPtrTy *allTUVars = 0, unsigned tuvNum = 0); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3319 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 3320 | virtual DeclPtrTy ActOnProperty(Scope *S, SourceLocation AtLoc, |
| 3321 | FieldDeclarator &FD, ObjCDeclSpec &ODS, |
| 3322 | Selector GetterSel, Selector SetterSel, |
| 3323 | DeclPtrTy ClassCategory, |
| 3324 | bool *OverridingProperty, |
| 3325 | tok::ObjCKeywordKind MethodImplKind); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3326 | |
| 3327 | virtual DeclPtrTy ActOnPropertyImplDecl(SourceLocation AtLoc, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 3328 | SourceLocation PropertyLoc, |
| 3329 | bool ImplKind,DeclPtrTy ClassImplDecl, |
| 3330 | IdentifierInfo *PropertyId, |
| 3331 | IdentifierInfo *PropertyIvar); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3332 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 3333 | virtual DeclPtrTy ActOnMethodDeclaration( |
Steve Naroff | bef1185 | 2007-10-26 20:53:56 +0000 | [diff] [blame] | 3334 | SourceLocation BeginLoc, // location of the + or -. |
| 3335 | SourceLocation EndLoc, // location of the ; or {. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3336 | tok::TokenKind MethodType, |
| 3337 | DeclPtrTy ClassDecl, ObjCDeclSpec &ReturnQT, TypeTy *ReturnType, |
Fariborz Jahanian | f1de0ca | 2007-10-31 23:53:01 +0000 | [diff] [blame] | 3338 | Selector Sel, |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 3339 | // optional arguments. The number of types/arguments is obtained |
| 3340 | // from the Sel.getNumArgs(). |
Chris Lattner | e294d3f | 2009-04-11 18:57:04 +0000 | [diff] [blame] | 3341 | ObjCArgInfo *ArgInfo, |
Fariborz Jahanian | 439c658 | 2009-01-09 00:38:19 +0000 | [diff] [blame] | 3342 | llvm::SmallVectorImpl<Declarator> &Cdecls, |
Steve Naroff | 335eafa | 2007-11-15 12:35:21 +0000 | [diff] [blame] | 3343 | AttributeList *AttrList, tok::ObjCKeywordKind MethodImplKind, |
| 3344 | bool isVariadic = false); |
Steve Naroff | 81bfde9 | 2007-10-16 23:12:48 +0000 | [diff] [blame] | 3345 | |
Steve Naroff | f1afaf6 | 2009-02-26 15:55:06 +0000 | [diff] [blame] | 3346 | // Helper method for ActOnClassMethod/ActOnInstanceMethod. |
| 3347 | // Will search "local" class/category implementations for a method decl. |
Fariborz Jahanian | 175ba1e | 2009-03-04 18:15:57 +0000 | [diff] [blame] | 3348 | // Will also search in class's root looking for instance method. |
Steve Naroff | f1afaf6 | 2009-02-26 15:55:06 +0000 | [diff] [blame] | 3349 | // Returns 0 if no method is found. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3350 | ObjCMethodDecl *LookupPrivateClassMethod(Selector Sel, |
Steve Naroff | 5609ec0 | 2009-03-08 18:56:13 +0000 | [diff] [blame] | 3351 | ObjCInterfaceDecl *CDecl); |
| 3352 | ObjCMethodDecl *LookupPrivateInstanceMethod(Selector Sel, |
| 3353 | ObjCInterfaceDecl *ClassDecl); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3354 | |
Steve Naroff | 61f72cb | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 3355 | virtual OwningExprResult ActOnClassPropertyRefExpr( |
| 3356 | IdentifierInfo &receiverName, |
| 3357 | IdentifierInfo &propertyName, |
| 3358 | SourceLocation &receiverNameLoc, |
| 3359 | SourceLocation &propertyNameLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3360 | |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 3361 | // ActOnClassMessage - used for both unary and keyword messages. |
| 3362 | // ArgExprs is optional - if it is present, the number of expressions |
Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 3363 | // is obtained from NumArgs. |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 3364 | virtual ExprResult ActOnClassMessage( |
Fariborz Jahanian | 0523aaf | 2007-11-12 20:13:27 +0000 | [diff] [blame] | 3365 | Scope *S, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3366 | IdentifierInfo *receivingClassName, Selector Sel, SourceLocation lbrac, |
| 3367 | SourceLocation receiverLoc, SourceLocation selectorLoc,SourceLocation rbrac, |
Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 3368 | ExprTy **ArgExprs, unsigned NumArgs); |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 3369 | |
| 3370 | // ActOnInstanceMessage - used for both unary and keyword messages. |
| 3371 | // ArgExprs is optional - if it is present, the number of expressions |
Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 3372 | // is obtained from NumArgs. |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 3373 | virtual ExprResult ActOnInstanceMessage( |
Steve Naroff | bcfb06a | 2007-09-28 22:22:11 +0000 | [diff] [blame] | 3374 | ExprTy *receiver, Selector Sel, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3375 | SourceLocation lbrac, SourceLocation receiverLoc, SourceLocation rbrac, |
Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 3376 | ExprTy **ArgExprs, unsigned NumArgs); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3377 | |
Daniel Dunbar | 4cde927 | 2008-10-14 05:35:18 +0000 | [diff] [blame] | 3378 | /// ActOnPragmaPack - Called on well formed #pragma pack(...). |
| 3379 | virtual void ActOnPragmaPack(PragmaPackKind Kind, |
| 3380 | IdentifierInfo *Name, |
| 3381 | ExprTy *Alignment, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3382 | SourceLocation PragmaLoc, |
Daniel Dunbar | 4cde927 | 2008-10-14 05:35:18 +0000 | [diff] [blame] | 3383 | SourceLocation LParenLoc, |
| 3384 | SourceLocation RParenLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3385 | |
Ted Kremenek | 4726d03 | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 3386 | /// ActOnPragmaUnused - Called on well-formed '#pragma unused'. |
Ted Kremenek | 7a02a37 | 2009-08-03 23:24:57 +0000 | [diff] [blame] | 3387 | virtual void ActOnPragmaUnused(const Token *Identifiers, |
| 3388 | unsigned NumIdentifiers, Scope *curScope, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3389 | SourceLocation PragmaLoc, |
Ted Kremenek | 4726d03 | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 3390 | SourceLocation LParenLoc, |
| 3391 | SourceLocation RParenLoc); |
Eli Friedman | c49f19b | 2009-06-05 02:44:36 +0000 | [diff] [blame] | 3392 | |
Ryan Flynn | 7b1fdbd | 2009-07-31 02:52:19 +0000 | [diff] [blame] | 3393 | NamedDecl *DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II); |
| 3394 | void DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W); |
Ryan Flynn | e25ff83 | 2009-07-30 03:15:39 +0000 | [diff] [blame] | 3395 | |
Eli Friedman | dec7c76 | 2009-06-05 06:28:29 +0000 | [diff] [blame] | 3396 | /// ActOnPragmaWeakID - Called on well formed #pragma weak ident. |
Eli Friedman | c49f19b | 2009-06-05 02:44:36 +0000 | [diff] [blame] | 3397 | virtual void ActOnPragmaWeakID(IdentifierInfo* WeakName, |
| 3398 | SourceLocation PragmaLoc, |
| 3399 | SourceLocation WeakNameLoc); |
| 3400 | |
Eli Friedman | dec7c76 | 2009-06-05 06:28:29 +0000 | [diff] [blame] | 3401 | /// ActOnPragmaWeakAlias - Called on well formed #pragma weak ident = ident. |
Eli Friedman | c49f19b | 2009-06-05 02:44:36 +0000 | [diff] [blame] | 3402 | virtual void ActOnPragmaWeakAlias(IdentifierInfo* WeakName, |
| 3403 | IdentifierInfo* AliasName, |
| 3404 | SourceLocation PragmaLoc, |
| 3405 | SourceLocation WeakNameLoc, |
| 3406 | SourceLocation AliasNameLoc); |
| 3407 | |
Chris Lattner | 574aa40 | 2009-02-17 01:09:29 +0000 | [diff] [blame] | 3408 | /// getPragmaPackAlignment() - Return the current alignment as specified by |
| 3409 | /// the current #pragma pack directive, or 0 if none is currently active. |
| 3410 | unsigned getPragmaPackAlignment() const; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3411 | |
Chris Lattner | 574aa40 | 2009-02-17 01:09:29 +0000 | [diff] [blame] | 3412 | /// FreePackedContext - Deallocate and null out PackContext. |
| 3413 | void FreePackedContext(); |
Daniel Dunbar | 4cde927 | 2008-10-14 05:35:18 +0000 | [diff] [blame] | 3414 | |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3415 | /// ImpCastExprToType - If Expr is not of type 'Type', insert an implicit |
| 3416 | /// cast. If there is already an implicit cast, merge into the existing one. |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 3417 | /// If isLvalue, the result of the cast is an lvalue. |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3418 | void ImpCastExprToType(Expr *&Expr, QualType Type, CastExpr::CastKind Kind, |
Anders Carlsson | 3503d04 | 2009-07-31 01:23:52 +0000 | [diff] [blame] | 3419 | bool isLvalue = false); |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3420 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3421 | // UsualUnaryConversions - promotes integers (C99 6.3.1.1p2) and converts |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3422 | // functions and arrays to their respective pointers (C99 6.3.2.1). |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3423 | Expr *UsualUnaryConversions(Expr *&expr); |
Eli Friedman | 3c0eb16 | 2008-05-27 03:33:27 +0000 | [diff] [blame] | 3424 | |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 3425 | // DefaultFunctionArrayConversion - converts functions and arrays |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3426 | // to their respective pointers (C99 6.3.2.1). |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 3427 | void DefaultFunctionArrayConversion(Expr *&expr); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3428 | |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 3429 | // DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3430 | // do not have a prototype. Integer promotions are performed on each |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 3431 | // argument, and arguments that have type float are promoted to double. |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3432 | void DefaultArgumentPromotion(Expr *&Expr); |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 3433 | |
| 3434 | // Used for emitting the right warning by DefaultVariadicArgumentPromotion |
| 3435 | enum VariadicCallType { |
| 3436 | VariadicFunction, |
| 3437 | VariadicBlock, |
Anders Carlsson | d74d414 | 2009-09-08 01:48:42 +0000 | [diff] [blame] | 3438 | VariadicMethod, |
| 3439 | VariadicConstructor |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 3440 | }; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3441 | |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 3442 | // DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but |
| 3443 | // will warn if the resulting type is not a POD type. |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 3444 | bool DefaultVariadicArgumentPromotion(Expr *&Expr, VariadicCallType CT); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3445 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3446 | // UsualArithmeticConversions - performs the UsualUnaryConversions on it's |
| 3447 | // operands and then handles various conversions that are common to binary |
| 3448 | // operators (C99 6.3.1.8). If both operands aren't arithmetic, this |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3449 | // routine returns the first non-arithmetic type found. The client is |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3450 | // responsible for emitting appropriate error diagnostics. |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3451 | QualType UsualArithmeticConversions(Expr *&lExpr, Expr *&rExpr, |
| 3452 | bool isCompAssign = false); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3453 | |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3454 | /// AssignConvertType - All of the 'assignment' semantic checks return this |
| 3455 | /// enum to indicate whether the assignment was allowed. These checks are |
| 3456 | /// done for simple assignments, as well as initialization, return from |
| 3457 | /// function, argument passing, etc. The query is phrased in terms of a |
| 3458 | /// source and destination type. |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3459 | enum AssignConvertType { |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3460 | /// Compatible - the types are compatible according to the standard. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3461 | Compatible, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3462 | |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3463 | /// PointerToInt - The assignment converts a pointer to an int, which we |
| 3464 | /// accept as an extension. |
| 3465 | PointerToInt, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3466 | |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3467 | /// IntToPointer - The assignment converts an int to a pointer, which we |
| 3468 | /// accept as an extension. |
| 3469 | IntToPointer, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3470 | |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3471 | /// FunctionVoidPointer - The assignment is between a function pointer and |
| 3472 | /// void*, which the standard doesn't allow, but we accept as an extension. |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3473 | FunctionVoidPointer, |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3474 | |
| 3475 | /// IncompatiblePointer - The assignment is between two pointers types that |
| 3476 | /// are not compatible, but we accept them as an extension. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3477 | IncompatiblePointer, |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3478 | |
| 3479 | /// IncompatiblePointer - The assignment is between two pointers types which |
| 3480 | /// point to integers which have a different sign, but are otherwise identical. |
| 3481 | /// This is a subset of the above, but broken out because it's by far the most |
| 3482 | /// common case of incompatible pointers. |
| 3483 | IncompatiblePointerSign, |
| 3484 | |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3485 | /// CompatiblePointerDiscardsQualifiers - The assignment discards |
| 3486 | /// c/v/r qualifiers, which we accept as an extension. |
| 3487 | CompatiblePointerDiscardsQualifiers, |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3488 | |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3489 | /// IncompatibleVectors - The assignment is between two vector types that |
| 3490 | /// have the same size, which we accept as an extension. |
| 3491 | IncompatibleVectors, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3492 | |
| 3493 | /// IntToBlockPointer - The assignment converts an int to a block |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3494 | /// pointer. We disallow this. |
| 3495 | IntToBlockPointer, |
| 3496 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3497 | /// IncompatibleBlockPointer - The assignment is between two block |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3498 | /// pointers types that are not compatible. |
| 3499 | IncompatibleBlockPointer, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3500 | |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 3501 | /// IncompatibleObjCQualifiedId - The assignment is between a qualified |
| 3502 | /// id type and something else (that is incompatible with it). For example, |
| 3503 | /// "id <XXX>" = "Foo *", where "Foo *" doesn't implement the XXX protocol. |
| 3504 | IncompatibleObjCQualifiedId, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3505 | |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3506 | /// Incompatible - We reject this conversion outright, it is invalid to |
| 3507 | /// represent it in the AST. |
| 3508 | Incompatible |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3509 | }; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3510 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3511 | /// DiagnoseAssignmentResult - Emit a diagnostic, if required, for the |
| 3512 | /// assignment conversion type specified by ConvTy. This returns true if the |
| 3513 | /// conversion was invalid or false if the conversion was accepted. |
| 3514 | bool DiagnoseAssignmentResult(AssignConvertType ConvTy, |
| 3515 | SourceLocation Loc, |
| 3516 | QualType DstType, QualType SrcType, |
| 3517 | Expr *SrcExpr, const char *Flavor); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3518 | |
| 3519 | /// CheckAssignmentConstraints - Perform type checking for assignment, |
| 3520 | /// argument passing, variable initialization, and function return values. |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3521 | /// This routine is only used by the following two methods. C99 6.5.16. |
| 3522 | AssignConvertType CheckAssignmentConstraints(QualType lhs, QualType rhs); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3523 | |
| 3524 | // CheckSingleAssignmentConstraints - Currently used by |
| 3525 | // CheckAssignmentOperands, and ActOnReturnStmt. Prior to type checking, |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3526 | // this routine performs the default function/array converions. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3527 | AssignConvertType CheckSingleAssignmentConstraints(QualType lhs, |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3528 | Expr *&rExpr); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3529 | |
| 3530 | // \brief If the lhs type is a transparent union, check whether we |
| 3531 | // can initialize the transparent union with the given expression. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3532 | AssignConvertType CheckTransparentUnionArgumentConstraints(QualType lhs, |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3533 | Expr *&rExpr); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3534 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3535 | // Helper function for CheckAssignmentConstraints (C99 6.5.16.1p1) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3536 | AssignConvertType CheckPointerTypesForAssignment(QualType lhsType, |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3537 | QualType rhsType); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3538 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3539 | // Helper function for CheckAssignmentConstraints involving two |
Sebastian Redl | d1bd7fc | 2009-04-19 19:26:31 +0000 | [diff] [blame] | 3540 | // block pointer types. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3541 | AssignConvertType CheckBlockPointerTypesForAssignment(QualType lhsType, |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3542 | QualType rhsType); |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 3543 | |
| 3544 | bool IsStringLiteralToNonConstPointerConversion(Expr *From, QualType ToType); |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 3545 | |
Sebastian Redl | 2c7588f | 2009-10-10 12:04:10 +0000 | [diff] [blame] | 3546 | bool CheckExceptionSpecCompatibility(Expr *From, QualType ToType); |
| 3547 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3548 | bool PerformImplicitConversion(Expr *&From, QualType ToType, |
Sebastian Redl | e2b6833 | 2009-04-12 17:16:29 +0000 | [diff] [blame] | 3549 | const char *Flavor, |
| 3550 | bool AllowExplicit = false, |
| 3551 | bool Elidable = false); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3552 | bool PerformImplicitConversion(Expr *&From, QualType ToType, |
Fariborz Jahanian | 51bebc8 | 2009-09-23 20:55:32 +0000 | [diff] [blame] | 3553 | const char *Flavor, |
| 3554 | bool AllowExplicit, |
| 3555 | bool Elidable, |
| 3556 | ImplicitConversionSequence& ICS); |
| 3557 | bool PerformImplicitConversion(Expr *&From, QualType ToType, |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 3558 | const ImplicitConversionSequence& ICS, |
Douglas Gregor | 45920e8 | 2008-12-19 17:40:08 +0000 | [diff] [blame] | 3559 | const char *Flavor); |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 3560 | bool PerformImplicitConversion(Expr *&From, QualType ToType, |
Douglas Gregor | 45920e8 | 2008-12-19 17:40:08 +0000 | [diff] [blame] | 3561 | const StandardConversionSequence& SCS, |
| 3562 | const char *Flavor); |
Fariborz Jahanian | 93034ca | 2009-10-16 19:20:59 +0000 | [diff] [blame] | 3563 | |
| 3564 | bool BuildCXXDerivedToBaseExpr(Expr *&From, CastExpr::CastKind CastKind, |
| 3565 | const ImplicitConversionSequence& ICS, |
| 3566 | const char *Flavor); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 3567 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3568 | /// the following "Check" methods will return a valid/converted QualType |
| 3569 | /// or a null QualType (indicating an error diagnostic was issued). |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 3570 | |
| 3571 | /// type checking binary operators (subroutines of CreateBuiltinBinOp). |
Douglas Gregor | df03251 | 2009-03-12 22:46:12 +0000 | [diff] [blame] | 3572 | QualType InvalidOperands(SourceLocation l, Expr *&lex, Expr *&rex); |
Sebastian Redl | 7c8bd60 | 2009-02-07 20:10:22 +0000 | [diff] [blame] | 3573 | QualType CheckPointerToMemberOperands( // C++ 5.5 |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 3574 | Expr *&lex, Expr *&rex, SourceLocation OpLoc, bool isIndirect); |
Douglas Gregor | df03251 | 2009-03-12 22:46:12 +0000 | [diff] [blame] | 3575 | QualType CheckMultiplyDivideOperands( // C99 6.5.5 |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 3576 | Expr *&lex, Expr *&rex, SourceLocation OpLoc, bool isCompAssign = false); |
Douglas Gregor | df03251 | 2009-03-12 22:46:12 +0000 | [diff] [blame] | 3577 | QualType CheckRemainderOperands( // C99 6.5.5 |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 3578 | Expr *&lex, Expr *&rex, SourceLocation OpLoc, bool isCompAssign = false); |
Douglas Gregor | df03251 | 2009-03-12 22:46:12 +0000 | [diff] [blame] | 3579 | QualType CheckAdditionOperands( // C99 6.5.6 |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3580 | Expr *&lex, Expr *&rex, SourceLocation OpLoc, QualType* CompLHSTy = 0); |
Douglas Gregor | df03251 | 2009-03-12 22:46:12 +0000 | [diff] [blame] | 3581 | QualType CheckSubtractionOperands( // C99 6.5.6 |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3582 | Expr *&lex, Expr *&rex, SourceLocation OpLoc, QualType* CompLHSTy = 0); |
Douglas Gregor | df03251 | 2009-03-12 22:46:12 +0000 | [diff] [blame] | 3583 | QualType CheckShiftOperands( // C99 6.5.7 |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3584 | Expr *&lex, Expr *&rex, SourceLocation OpLoc, bool isCompAssign = false); |
Douglas Gregor | df03251 | 2009-03-12 22:46:12 +0000 | [diff] [blame] | 3585 | QualType CheckCompareOperands( // C99 6.5.8/9 |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 3586 | Expr *&lex, Expr *&rex, SourceLocation OpLoc, unsigned Opc, bool isRelational); |
Douglas Gregor | df03251 | 2009-03-12 22:46:12 +0000 | [diff] [blame] | 3587 | QualType CheckBitwiseOperands( // C99 6.5.[10...12] |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 3588 | Expr *&lex, Expr *&rex, SourceLocation OpLoc, bool isCompAssign = false); |
Douglas Gregor | df03251 | 2009-03-12 22:46:12 +0000 | [diff] [blame] | 3589 | QualType CheckLogicalOperands( // C99 6.5.[13,14] |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 3590 | Expr *&lex, Expr *&rex, SourceLocation OpLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3591 | // CheckAssignmentOperands is used for both simple and compound assignment. |
| 3592 | // For simple assignment, pass both expressions and a null converted type. |
| 3593 | // For compound assignment, pass both expressions and the converted type. |
Douglas Gregor | df03251 | 2009-03-12 22:46:12 +0000 | [diff] [blame] | 3594 | QualType CheckAssignmentOperands( // C99 6.5.16.[1,2] |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3595 | Expr *lex, Expr *&rex, SourceLocation OpLoc, QualType convertedType); |
Douglas Gregor | df03251 | 2009-03-12 22:46:12 +0000 | [diff] [blame] | 3596 | QualType CheckCommaOperands( // C99 6.5.17 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3597 | Expr *lex, Expr *&rex, SourceLocation OpLoc); |
Douglas Gregor | df03251 | 2009-03-12 22:46:12 +0000 | [diff] [blame] | 3598 | QualType CheckConditionalOperands( // C99 6.5.15 |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 3599 | Expr *&cond, Expr *&lhs, Expr *&rhs, SourceLocation questionLoc); |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 3600 | QualType CXXCheckConditionalOperands( // C++ 5.16 |
| 3601 | Expr *&cond, Expr *&lhs, Expr *&rhs, SourceLocation questionLoc); |
Sebastian Redl | d1bd7fc | 2009-04-19 19:26:31 +0000 | [diff] [blame] | 3602 | QualType FindCompositePointerType(Expr *&E1, Expr *&E2); // C++ 5.9 |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3603 | |
| 3604 | /// type checking for vector binary operators. |
| 3605 | inline QualType CheckVectorOperands(SourceLocation l, Expr *&lex, Expr *&rex); |
| 3606 | inline QualType CheckVectorCompareOperands(Expr *&lex, Expr *&rx, |
| 3607 | SourceLocation l, bool isRel); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3608 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 3609 | /// type checking unary operators (subroutines of ActOnUnaryOp). |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3610 | /// C99 6.5.3.1, 6.5.3.2, 6.5.3.4 |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 3611 | QualType CheckIncrementDecrementOperand(Expr *op, SourceLocation OpLoc, |
| 3612 | bool isInc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3613 | QualType CheckAddressOfOperand(Expr *op, SourceLocation OpLoc); |
| 3614 | QualType CheckIndirectionOperand(Expr *op, SourceLocation OpLoc); |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 3615 | QualType CheckRealImagOperand(Expr *&Op, SourceLocation OpLoc, bool isReal); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3616 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 3617 | /// type checking primary expressions. |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 3618 | QualType CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3619 | const IdentifierInfo *Comp, |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 3620 | SourceLocation CmpLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3621 | |
Steve Naroff | f009063 | 2007-09-02 02:04:30 +0000 | [diff] [blame] | 3622 | /// type checking declaration initializers (C99 6.7.8) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3623 | |
Douglas Gregor | f03d7c7 | 2008-11-05 15:29:30 +0000 | [diff] [blame] | 3624 | bool CheckInitializerTypes(Expr *&simpleInit_or_initList, QualType &declType, |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 3625 | SourceLocation InitLoc,DeclarationName InitEntity, |
Anders Carlsson | 0f5f2c6 | 2009-05-30 20:41:30 +0000 | [diff] [blame] | 3626 | bool DirectInit); |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 3627 | bool CheckInitList(InitListExpr *&InitList, QualType &DeclType); |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 3628 | bool CheckForConstantInitializer(Expr *e, QualType t); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3629 | |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 3630 | bool CheckValueInitialization(QualType Type, SourceLocation Loc); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3631 | |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 3632 | // type checking C++ declaration initializers (C++ [dcl.init]). |
| 3633 | |
| 3634 | /// ReferenceCompareResult - Expresses the result of comparing two |
| 3635 | /// types (cv1 T1 and cv2 T2) to determine their compatibility for the |
| 3636 | /// purposes of initialization by reference (C++ [dcl.init.ref]p4). |
| 3637 | enum ReferenceCompareResult { |
| 3638 | /// Ref_Incompatible - The two types are incompatible, so direct |
| 3639 | /// reference binding is not possible. |
| 3640 | Ref_Incompatible = 0, |
| 3641 | /// Ref_Related - The two types are reference-related, which means |
| 3642 | /// that their unqualified forms (T1 and T2) are either the same |
| 3643 | /// or T1 is a base class of T2. |
| 3644 | Ref_Related, |
| 3645 | /// Ref_Compatible_With_Added_Qualification - The two types are |
| 3646 | /// reference-compatible with added qualification, meaning that |
| 3647 | /// they are reference-compatible and the qualifiers on T1 (cv1) |
| 3648 | /// are greater than the qualifiers on T2 (cv2). |
| 3649 | Ref_Compatible_With_Added_Qualification, |
| 3650 | /// Ref_Compatible - The two types are reference-compatible and |
| 3651 | /// have equivalent qualifiers (cv1 == cv2). |
| 3652 | Ref_Compatible |
| 3653 | }; |
| 3654 | |
Douglas Gregor | 393896f | 2009-11-05 13:06:35 +0000 | [diff] [blame] | 3655 | ReferenceCompareResult CompareReferenceRelationship(SourceLocation Loc, |
| 3656 | QualType T1, QualType T2, |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 3657 | bool& DerivedToBase); |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 3658 | |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 3659 | bool CheckReferenceInit(Expr *&simpleInit_or_initList, QualType declType, |
Douglas Gregor | 739d828 | 2009-09-23 23:04:10 +0000 | [diff] [blame] | 3660 | SourceLocation DeclLoc, |
Anders Carlsson | 2de3ace | 2009-08-27 17:30:43 +0000 | [diff] [blame] | 3661 | bool SuppressUserConversions, |
| 3662 | bool AllowExplicit, |
| 3663 | bool ForceRValue, |
| 3664 | ImplicitConversionSequence *ICS = 0); |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 3665 | |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 3666 | /// CheckCastTypes - Check type constraints for casting between types under |
Sebastian Redl | ef0cb8e | 2009-07-29 13:50:23 +0000 | [diff] [blame] | 3667 | /// C semantics, or forward to CXXCheckCStyleCast in C++. |
| 3668 | bool CheckCastTypes(SourceRange TyRange, QualType CastTy, Expr *&CastExpr, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3669 | CastExpr::CastKind &Kind, |
Fariborz Jahanian | e9f4208 | 2009-08-26 18:55:36 +0000 | [diff] [blame] | 3670 | CXXMethodDecl *& ConversionDecl, |
| 3671 | bool FunctionalStyle = false); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 3672 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3673 | // CheckVectorCast - check type constraints for vectors. |
Anders Carlsson | 584b247 | 2007-11-27 07:16:40 +0000 | [diff] [blame] | 3674 | // Since vectors are an extension, there are no C standard reference for this. |
| 3675 | // We allow casting between vectors and integer datatypes of the same size. |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3676 | // returns true if the cast is invalid |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3677 | bool CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty, |
| 3678 | CastExpr::CastKind &Kind); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3679 | |
| 3680 | // CheckExtVectorCast - check type constraints for extended vectors. |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3681 | // Since vectors are an extension, there are no C standard reference for this. |
| 3682 | // We allow casting between vectors and integer datatypes of the same size, |
| 3683 | // or vectors and the element type of that vector. |
| 3684 | // returns true if the cast is invalid |
Anders Carlsson | 16a8904 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3685 | bool CheckExtVectorCast(SourceRange R, QualType VectorTy, Expr *&CastExpr, |
| 3686 | CastExpr::CastKind &Kind); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 3687 | |
| 3688 | /// CXXCheckCStyleCast - Check constraints of a C-style or function-style |
| 3689 | /// cast under C++ semantics. |
Sebastian Redl | ef0cb8e | 2009-07-29 13:50:23 +0000 | [diff] [blame] | 3690 | bool CXXCheckCStyleCast(SourceRange R, QualType CastTy, Expr *&CastExpr, |
Fariborz Jahanian | e9f4208 | 2009-08-26 18:55:36 +0000 | [diff] [blame] | 3691 | CastExpr::CastKind &Kind, bool FunctionalStyle, |
| 3692 | CXXMethodDecl *&ConversionDecl); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 3693 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3694 | /// CheckMessageArgumentTypes - Check types in an Obj-C message send. |
Daniel Dunbar | 637cebb | 2008-09-11 00:01:56 +0000 | [diff] [blame] | 3695 | /// \param Method - May be null. |
| 3696 | /// \param [out] ReturnType - The return type of the send. |
| 3697 | /// \return true iff there were any incompatible types. |
Daniel Dunbar | 91e19b2 | 2008-09-11 00:50:25 +0000 | [diff] [blame] | 3698 | bool CheckMessageArgumentTypes(Expr **Args, unsigned NumArgs, Selector Sel, |
Chris Lattner | 077bf5e | 2008-11-24 03:33:13 +0000 | [diff] [blame] | 3699 | ObjCMethodDecl *Method, bool isClassMessage, |
Daniel Dunbar | 637cebb | 2008-09-11 00:01:56 +0000 | [diff] [blame] | 3700 | SourceLocation lbrac, SourceLocation rbrac, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3701 | QualType &ReturnType); |
Argyrios Kyrtzidis | 5921093 | 2008-09-10 02:17:11 +0000 | [diff] [blame] | 3702 | |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 3703 | /// CheckBooleanCondition - Diagnose problems involving the use of |
| 3704 | /// the given expression as a boolean condition (e.g. in an if |
| 3705 | /// statement). Also performs the standard function and array |
| 3706 | /// decays, possibly changing the input variable. |
| 3707 | /// |
| 3708 | /// \param Loc - A location associated with the condition, e.g. the |
| 3709 | /// 'if' keyword. |
| 3710 | /// \return true iff there were any errors |
| 3711 | bool CheckBooleanCondition(Expr *&CondExpr, SourceLocation Loc); |
| 3712 | |
| 3713 | /// DiagnoseAssignmentAsCondition - Given that an expression is |
| 3714 | /// being used as a boolean condition, warn if it's an assignment. |
| 3715 | void DiagnoseAssignmentAsCondition(Expr *E); |
| 3716 | |
Argyrios Kyrtzidis | 5921093 | 2008-09-10 02:17:11 +0000 | [diff] [blame] | 3717 | /// CheckCXXBooleanCondition - Returns true if conversion to bool is invalid. |
| 3718 | bool CheckCXXBooleanCondition(Expr *&CondExpr); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 3719 | |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 3720 | /// ConvertIntegerToTypeWarnOnOverflow - Convert the specified APInt to have |
| 3721 | /// the specified width and sign. If an overflow occurs, detect it and emit |
| 3722 | /// the specified diagnostic. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3723 | void ConvertIntegerToTypeWarnOnOverflow(llvm::APSInt &OldVal, |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 3724 | unsigned NewWidth, bool NewSign, |
| 3725 | SourceLocation Loc, unsigned DiagID); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3726 | |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 3727 | /// Checks that the Objective-C declaration is declared in the global scope. |
| 3728 | /// Emits an error and marks the declaration as invalid if it's not declared |
| 3729 | /// in the global scope. |
| 3730 | bool CheckObjCDeclScope(Decl *D); |
| 3731 | |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 3732 | void InitBuiltinVaListType(); |
Eli Friedman | 1b76ada | 2008-06-03 21:01:11 +0000 | [diff] [blame] | 3733 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 3734 | /// VerifyIntegerConstantExpression - verifies that an expression is an ICE, |
| 3735 | /// and reports the appropriate diagnostics. Returns false on success. |
| 3736 | /// Can optionally return the value of the expression. |
Anders Carlsson | 9f1e572 | 2008-12-06 20:33:04 +0000 | [diff] [blame] | 3737 | bool VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result = 0); |
Anders Carlsson | 4000ea6 | 2008-12-01 02:17:22 +0000 | [diff] [blame] | 3738 | |
Anders Carlsson | 9f1e572 | 2008-12-06 20:33:04 +0000 | [diff] [blame] | 3739 | /// VerifyBitField - verifies that a bit field expression is an ICE and has |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3740 | /// the correct width, and that the field type is valid. |
Anders Carlsson | 9f1e572 | 2008-12-06 20:33:04 +0000 | [diff] [blame] | 3741 | /// Returns false on success. |
Eli Friedman | 1d954f6 | 2009-08-15 21:55:26 +0000 | [diff] [blame] | 3742 | /// Can optionally return whether the bit-field is of width 0 |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3743 | bool VerifyBitField(SourceLocation FieldLoc, IdentifierInfo *FieldName, |
| 3744 | QualType FieldTy, const Expr *BitWidth, |
Eli Friedman | 1d954f6 | 2009-08-15 21:55:26 +0000 | [diff] [blame] | 3745 | bool *ZeroWidth = 0); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3746 | |
Douglas Gregor | 81b747b | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 3747 | /// \name Code completion |
| 3748 | //@{ |
Douglas Gregor | 81b747b | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 3749 | void setCodeCompleteConsumer(CodeCompleteConsumer *CCC); |
Douglas Gregor | 791215b | 2009-09-21 20:51:25 +0000 | [diff] [blame] | 3750 | virtual void CodeCompleteOrdinaryName(Scope *S); |
Douglas Gregor | 81b747b | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 3751 | virtual void CodeCompleteMemberReferenceExpr(Scope *S, ExprTy *Base, |
| 3752 | SourceLocation OpLoc, |
| 3753 | bool IsArrow); |
Douglas Gregor | 374929f | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 3754 | virtual void CodeCompleteTag(Scope *S, unsigned TagSpec); |
Douglas Gregor | 3e1005f | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 3755 | virtual void CodeCompleteCase(Scope *S); |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 3756 | virtual void CodeCompleteCall(Scope *S, ExprTy *Fn, |
| 3757 | ExprTy **Args, unsigned NumArgs); |
Douglas Gregor | 81b747b | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 3758 | virtual void CodeCompleteQualifiedId(Scope *S, const CXXScopeSpec &SS, |
| 3759 | bool EnteringContext); |
Douglas Gregor | 49f40bd | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 3760 | virtual void CodeCompleteUsing(Scope *S); |
| 3761 | virtual void CodeCompleteUsingDirective(Scope *S); |
| 3762 | virtual void CodeCompleteNamespaceDecl(Scope *S); |
| 3763 | virtual void CodeCompleteNamespaceAliasDecl(Scope *S); |
Douglas Gregor | ed8d322 | 2009-09-18 20:05:18 +0000 | [diff] [blame] | 3764 | virtual void CodeCompleteOperatorName(Scope *S); |
Steve Naroff | ece8e71 | 2009-10-08 21:55:05 +0000 | [diff] [blame] | 3765 | |
| 3766 | virtual void CodeCompleteObjCProperty(Scope *S, ObjCDeclSpec &ODS); |
Douglas Gregor | 81b747b | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 3767 | //@} |
| 3768 | |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 3769 | //===--------------------------------------------------------------------===// |
| 3770 | // Extra semantic analysis beyond the C type system |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3771 | private: |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 3772 | bool CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall); |
| 3773 | bool CheckBlockCall(NamedDecl *NDecl, CallExpr *TheCall); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3774 | |
Chris Lattner | 6080008 | 2009-02-18 17:49:48 +0000 | [diff] [blame] | 3775 | SourceLocation getLocationOfStringLiteralByte(const StringLiteral *SL, |
| 3776 | unsigned ByteNo) const; |
Ryan Flynn | 4403a5e | 2009-08-06 03:00:50 +0000 | [diff] [blame] | 3777 | bool CheckablePrintfAttr(const FormatAttr *Format, CallExpr *TheCall); |
Chris Lattner | 6903981 | 2009-02-18 06:01:06 +0000 | [diff] [blame] | 3778 | bool CheckObjCString(Expr *Arg); |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 3779 | |
| 3780 | Action::OwningExprResult CheckBuiltinFunctionCall(unsigned BuiltinID, |
| 3781 | CallExpr *TheCall); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3782 | bool SemaBuiltinVAStart(CallExpr *TheCall); |
| 3783 | bool SemaBuiltinUnorderedCompare(CallExpr *TheCall); |
Eli Friedman | 9ac6f62 | 2009-08-31 20:06:00 +0000 | [diff] [blame] | 3784 | bool SemaBuiltinUnaryFP(CallExpr *TheCall); |
Eli Friedman | 6cfda23 | 2008-05-20 08:23:37 +0000 | [diff] [blame] | 3785 | bool SemaBuiltinStackAddress(CallExpr *TheCall); |
Douglas Gregor | cde0173 | 2009-05-19 22:10:17 +0000 | [diff] [blame] | 3786 | |
| 3787 | public: |
| 3788 | // Used by C++ template instantiation. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3789 | Action::OwningExprResult SemaBuiltinShuffleVector(CallExpr *TheCall); |
Douglas Gregor | cde0173 | 2009-05-19 22:10:17 +0000 | [diff] [blame] | 3790 | |
| 3791 | private: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3792 | bool SemaBuiltinPrefetch(CallExpr *TheCall); |
Eli Friedman | d875fed | 2009-05-03 04:46:36 +0000 | [diff] [blame] | 3793 | bool SemaBuiltinObjectSize(CallExpr *TheCall); |
| 3794 | bool SemaBuiltinLongjmp(CallExpr *TheCall); |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 3795 | bool SemaBuiltinAtomicOverloaded(CallExpr *TheCall); |
Chris Lattner | 21fb98e | 2009-09-23 06:06:36 +0000 | [diff] [blame] | 3796 | bool SemaBuiltinEHReturnDataRegNo(CallExpr *TheCall); |
Ted Kremenek | 082d936 | 2009-03-20 21:35:28 +0000 | [diff] [blame] | 3797 | bool SemaCheckStringLiteral(const Expr *E, const CallExpr *TheCall, |
| 3798 | bool HasVAListArg, unsigned format_idx, |
| 3799 | unsigned firstDataArg); |
| 3800 | void CheckPrintfString(const StringLiteral *FExpr, const Expr *OrigFormatExpr, |
| 3801 | const CallExpr *TheCall, bool HasVAListArg, |
Douglas Gregor | 3c385e5 | 2009-02-14 18:57:46 +0000 | [diff] [blame] | 3802 | unsigned format_idx, unsigned firstDataArg); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3803 | void CheckNonNullArguments(const NonNullAttr *NonNull, |
Fariborz Jahanian | e898f8a | 2009-05-21 18:48:51 +0000 | [diff] [blame] | 3804 | const CallExpr *TheCall); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3805 | void CheckPrintfArguments(const CallExpr *TheCall, bool HasVAListArg, |
Douglas Gregor | 3c385e5 | 2009-02-14 18:57:46 +0000 | [diff] [blame] | 3806 | unsigned format_idx, unsigned firstDataArg); |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 3807 | void CheckReturnStackAddr(Expr *RetValExp, QualType lhsType, |
| 3808 | SourceLocation ReturnLoc); |
Ted Kremenek | 588e5eb | 2007-11-25 00:58:00 +0000 | [diff] [blame] | 3809 | void CheckFloatComparison(SourceLocation loc, Expr* lex, Expr* rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3810 | }; |
| 3811 | |
Mike Stump | b83d287 | 2009-02-19 22:01:56 +0000 | [diff] [blame] | 3812 | |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 3813 | //===--------------------------------------------------------------------===// |
| 3814 | // Typed version of Parser::ExprArg (smart pointer for wrapping Expr pointers). |
| 3815 | template <typename T> |
| 3816 | class ExprOwningPtr : public Action::ExprArg { |
| 3817 | public: |
Douglas Gregor | a0e500d | 2009-03-12 16:53:44 +0000 | [diff] [blame] | 3818 | ExprOwningPtr(Sema *S, T *expr) : Action::ExprArg(*S, expr) {} |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3819 | |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 3820 | void reset(T* p) { Action::ExprArg::operator=(p); } |
| 3821 | T* get() const { return static_cast<T*>(Action::ExprArg::get()); } |
| 3822 | T* take() { return static_cast<T*>(Action::ExprArg::take()); } |
| 3823 | T* release() { return take(); } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3824 | |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 3825 | T& operator*() const { return *get(); } |
| 3826 | T* operator->() const { return get(); } |
| 3827 | }; |
Douglas Gregor | d7e2705 | 2009-05-20 22:33:37 +0000 | [diff] [blame] | 3828 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3829 | } // end namespace clang |
| 3830 | |
| 3831 | #endif |