Chris Lattner | cc67ec1 | 2006-11-09 06:54:47 +0000 | [diff] [blame] | 1 | //===--- Sema.h - Semantic Analysis & AST Building --------------*- C++ -*-===// |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 5b12ab8 | 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. |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Chris Lattner | cc67ec1 | 2006-11-09 06:54:47 +0000 | [diff] [blame] | 10 | // This file defines the Sema class, which performs semantic analysis and |
| 11 | // builds ASTs. |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Chris Lattner | cc67ec1 | 2006-11-09 06:54:47 +0000 | [diff] [blame] | 15 | #ifndef LLVM_CLANG_AST_SEMA_H |
| 16 | #define LLVM_CLANG_AST_SEMA_H |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 17 | |
Chris Lattner | c5c95b5 | 2008-04-11 07:00:53 +0000 | [diff] [blame] | 18 | #include "IdentifierResolver.h" |
Argyrios Kyrtzidis | ed98342 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 19 | #include "CXXFieldCollector.h" |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 20 | #include "clang/Parse/Action.h" |
Anders Carlsson | 51873c2 | 2007-07-22 07:07:56 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/SmallVector.h" |
Fariborz Jahanian | 458f711 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/DenseSet.h" |
Chris Lattner | ee2d841 | 2007-10-07 01:13:46 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/SmallPtrSet.h" |
Argyrios Kyrtzidis | ed98342 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/OwningPtr.h" |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 25 | #include <vector> |
Chris Lattner | eaafe122 | 2006-11-10 05:17:58 +0000 | [diff] [blame] | 26 | #include <string> |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 27 | |
Chris Lattner | fc1c44a | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 28 | namespace llvm { |
| 29 | class APSInt; |
| 30 | } |
| 31 | |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 32 | namespace clang { |
Chris Lattner | cb6a382 | 2006-11-10 06:20:45 +0000 | [diff] [blame] | 33 | class ASTContext; |
Chris Lattner | fe0e0af | 2008-02-06 00:46:58 +0000 | [diff] [blame] | 34 | class ASTConsumer; |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 35 | class Preprocessor; |
| 36 | class Decl; |
Chris Lattner | 0a5ff0d | 2008-04-06 04:47:34 +0000 | [diff] [blame] | 37 | class DeclContext; |
Daniel Dunbar | 34fb672 | 2008-08-11 03:27:53 +0000 | [diff] [blame] | 38 | class DeclSpec; |
Steve Naroff | 257520b | 2008-04-01 23:04:06 +0000 | [diff] [blame] | 39 | class NamedDecl; |
Steve Naroff | 9324db1 | 2007-09-13 18:10:37 +0000 | [diff] [blame] | 40 | class ScopedDecl; |
Steve Naroff | 7840336 | 2007-04-02 22:55:05 +0000 | [diff] [blame] | 41 | class Expr; |
Steve Naroff | f33527a | 2007-09-02 15:34:30 +0000 | [diff] [blame] | 42 | class InitListExpr; |
Chris Lattner | 0846494 | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 43 | class CallExpr; |
Chris Lattner | c5cdf4d | 2007-01-21 07:42:07 +0000 | [diff] [blame] | 44 | class VarDecl; |
Chris Lattner | 53621a5 | 2007-06-13 20:44:40 +0000 | [diff] [blame] | 45 | class ParmVarDecl; |
Chris Lattner | 01564d9 | 2007-01-27 19:27:06 +0000 | [diff] [blame] | 46 | class TypedefDecl; |
| 47 | class FunctionDecl; |
Steve Naroff | e5aa9be | 2007-04-05 22:36:20 +0000 | [diff] [blame] | 48 | class QualType; |
Chris Lattner | 9cf21c5 | 2007-09-04 02:45:27 +0000 | [diff] [blame] | 49 | struct LangOptions; |
Chris Lattner | 146762e | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 50 | class Token; |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 51 | class IntegerLiteral; |
Steve Naroff | af2a022 | 2008-01-22 00:55:40 +0000 | [diff] [blame] | 52 | class StringLiteral; |
Steve Naroff | 8eeeb13 | 2007-05-08 21:09:37 +0000 | [diff] [blame] | 53 | class ArrayType; |
Chris Lattner | e247306 | 2007-05-28 06:28:18 +0000 | [diff] [blame] | 54 | class LabelStmt; |
Anders Carlsson | 51873c2 | 2007-07-22 07:07:56 +0000 | [diff] [blame] | 55 | class SwitchStmt; |
Nate Begeman | ce4d7fc | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 56 | class ExtVectorType; |
Steve Naroff | ddf5a1d | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 57 | class TypedefDecl; |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 58 | class ObjCInterfaceDecl; |
Steve Naroff | 257520b | 2008-04-01 23:04:06 +0000 | [diff] [blame] | 59 | class ObjCCompatibleAliasDecl; |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 60 | class ObjCProtocolDecl; |
| 61 | class ObjCImplementationDecl; |
| 62 | class ObjCCategoryImplDecl; |
| 63 | class ObjCCategoryDecl; |
| 64 | class ObjCIvarDecl; |
| 65 | class ObjCMethodDecl; |
Fariborz Jahanian | 7cf1886 | 2008-05-01 00:03:38 +0000 | [diff] [blame] | 66 | class ObjCPropertyDecl; |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 67 | struct BlockSemaInfo; |
Steve Naroff | ddf5a1d | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 68 | |
Chris Lattner | cc67ec1 | 2006-11-09 06:54:47 +0000 | [diff] [blame] | 69 | /// Sema - This implements semantic analysis and AST building for C. |
| 70 | class Sema : public Action { |
Chris Lattner | a663a0a | 2008-06-29 00:28:59 +0000 | [diff] [blame] | 71 | public: |
Steve Naroff | 38d31b4 | 2007-02-28 01:22:02 +0000 | [diff] [blame] | 72 | Preprocessor &PP; |
Chris Lattner | cb6a382 | 2006-11-10 06:20:45 +0000 | [diff] [blame] | 73 | ASTContext &Context; |
Chris Lattner | fe0e0af | 2008-02-06 00:46:58 +0000 | [diff] [blame] | 74 | ASTConsumer &Consumer; |
Steve Naroff | e3d1ab2 | 2007-11-12 13:56:41 +0000 | [diff] [blame] | 75 | |
Argyrios Kyrtzidis | 853fbea | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 76 | /// CurContext - This is the current declaration context of parsing. |
Chris Lattner | 0a5ff0d | 2008-04-06 04:47:34 +0000 | [diff] [blame] | 77 | DeclContext *CurContext; |
Chris Lattner | c5ffed4 | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 78 | |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 79 | /// CurBlock - If inside of a block definition, this contains a pointer to |
| 80 | /// the active block object that represents it. |
| 81 | BlockSemaInfo *CurBlock; |
| 82 | |
Chris Lattner | e247306 | 2007-05-28 06:28:18 +0000 | [diff] [blame] | 83 | /// LabelMap - This is a mapping from label identifiers to the LabelStmt for |
| 84 | /// it (which acts like the label decl in some ways). Forward referenced |
| 85 | /// labels have a LabelStmt created for them with a null location & SubStmt. |
Chris Lattner | 23b7eb6 | 2007-06-15 23:05:46 +0000 | [diff] [blame] | 86 | llvm::DenseMap<IdentifierInfo*, LabelStmt*> LabelMap; |
Anders Carlsson | 51873c2 | 2007-07-22 07:07:56 +0000 | [diff] [blame] | 87 | |
| 88 | llvm::SmallVector<SwitchStmt*, 8> SwitchStack; |
Steve Naroff | ddf5a1d | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 89 | |
Nate Begeman | ce4d7fc | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 90 | /// ExtVectorDecls - This is a list all the extended vector types. This allows |
| 91 | /// us to associate a raw vector type with one of the ext_vector type names. |
Steve Naroff | ddf5a1d | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 92 | /// This is only necessary for issuing pretty diagnostics. |
Nate Begeman | ce4d7fc | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 93 | llvm::SmallVector<TypedefDecl*, 24> ExtVectorDecls; |
Chris Lattner | b87b1b3 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 94 | |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 95 | /// ObjCImplementations - Keep track of all of the classes with |
Chris Lattner | ee2d841 | 2007-10-07 01:13:46 +0000 | [diff] [blame] | 96 | /// @implementation's, so that we can emit errors on duplicates. |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 97 | llvm::DenseMap<IdentifierInfo*, ObjCImplementationDecl*> ObjCImplementations; |
Chris Lattner | ee2d841 | 2007-10-07 01:13:46 +0000 | [diff] [blame] | 98 | |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 99 | /// ObjCProtocols - Keep track of all protocol declarations declared |
Fariborz Jahanian | 06f84f5 | 2007-10-09 18:03:53 +0000 | [diff] [blame] | 100 | /// with @protocol keyword, so that we can emit errors on duplicates and |
Chris Lattner | 516ca70 | 2007-10-09 18:18:24 +0000 | [diff] [blame] | 101 | /// find the declarations when needed. |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 102 | llvm::DenseMap<IdentifierInfo*, ObjCProtocolDecl*> ObjCProtocols; |
Steve Naroff | 7789275 | 2008-04-02 18:30:49 +0000 | [diff] [blame] | 103 | |
| 104 | /// ObjCInterfaceDecls - Keep track of all class declarations declared |
| 105 | /// with @interface, so that we can emit errors on duplicates and |
| 106 | /// find the declarations when needed. |
| 107 | typedef llvm::DenseMap<const IdentifierInfo*, |
| 108 | ObjCInterfaceDecl*> ObjCInterfaceDeclsTy; |
| 109 | ObjCInterfaceDeclsTy ObjCInterfaceDecls; |
| 110 | |
Steve Naroff | 257520b | 2008-04-01 23:04:06 +0000 | [diff] [blame] | 111 | /// ObjCAliasDecls - Keep track of all class declarations declared |
| 112 | /// with @compatibility_alias, so that we can emit errors on duplicates and |
| 113 | /// find the declarations when needed. This construct is ancient and will |
| 114 | /// likely never be seen. Nevertheless, it is here for compatibility. |
Steve Naroff | 9b94b17 | 2008-04-02 00:39:51 +0000 | [diff] [blame] | 115 | typedef llvm::DenseMap<const IdentifierInfo*, |
| 116 | ObjCCompatibleAliasDecl*> ObjCAliasTy; |
Steve Naroff | 257520b | 2008-04-01 23:04:06 +0000 | [diff] [blame] | 117 | ObjCAliasTy ObjCAliasDecls; |
Steve Naroff | 7789275 | 2008-04-02 18:30:49 +0000 | [diff] [blame] | 118 | |
Argyrios Kyrtzidis | ed98342 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 119 | /// FieldCollector - Collects CXXFieldDecls during parsing of C++ classes. |
| 120 | llvm::OwningPtr<CXXFieldCollector> FieldCollector; |
| 121 | |
Chris Lattner | c5c95b5 | 2008-04-11 07:00:53 +0000 | [diff] [blame] | 122 | IdentifierResolver IdResolver; |
| 123 | |
Chris Lattner | b87b1b3 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 124 | // Enum values used by KnownFunctionIDs (see below). |
| 125 | enum { |
| 126 | id_printf, |
| 127 | id_fprintf, |
| 128 | id_sprintf, |
| 129 | id_snprintf, |
Chris Lattner | b87b1b3 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 130 | id_asprintf, |
Ted Kremenek | 34f664d | 2008-06-16 18:00:42 +0000 | [diff] [blame] | 131 | id_NSLog, |
Ted Kremenek | cfc9419 | 2007-08-10 21:13:51 +0000 | [diff] [blame] | 132 | id_vsnprintf, |
Chris Lattner | b87b1b3 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 133 | id_vasprintf, |
| 134 | id_vfprintf, |
| 135 | id_vsprintf, |
| 136 | id_vprintf, |
| 137 | id_num_known_functions |
| 138 | }; |
| 139 | |
| 140 | /// KnownFunctionIDs - This is a list of IdentifierInfo objects to a set |
| 141 | /// of known functions used by the semantic analysis to do various |
| 142 | /// kinds of checking (e.g. checking format string errors in printf calls). |
| 143 | /// This list is populated upon the creation of a Sema object. |
Chris Lattner | 2cc35ae | 2008-08-23 02:00:52 +0000 | [diff] [blame] | 144 | IdentifierInfo* KnownFunctionIDs[id_num_known_functions]; |
Daniel Dunbar | 12c9ddc | 2008-08-14 22:04:54 +0000 | [diff] [blame] | 145 | |
| 146 | /// SuperID - Identifier for "super" used for Objective-C checking. |
| 147 | IdentifierInfo* SuperID; |
| 148 | |
Steve Naroff | 44cfcb6 | 2008-09-09 14:32:20 +0000 | [diff] [blame] | 149 | /// Identifiers for builtin ObjC typedef names. |
| 150 | IdentifierInfo *Ident_id, *Ident_Class; // "id", "Class" |
| 151 | IdentifierInfo *Ident_SEL, *Ident_Protocol; // "SEL", "Protocol" |
| 152 | |
Steve Naroff | 93eb5f1 | 2007-10-10 17:32:04 +0000 | [diff] [blame] | 153 | /// Translation Unit Scope - useful to Objective-C actions that need |
| 154 | /// to lookup file scope declarations in the "ordinary" C decl namespace. |
| 155 | /// For example, user-defined classes, built-in "id" type, etc. |
Steve Naroff | c62adb6 | 2007-10-09 22:01:59 +0000 | [diff] [blame] | 156 | Scope *TUScope; |
Steve Naroff | 7f549f1 | 2007-10-10 21:53:07 +0000 | [diff] [blame] | 157 | |
Steve Naroff | 5811baf | 2007-10-14 00:58:41 +0000 | [diff] [blame] | 158 | /// ObjCMethodList - a linked list of methods with different signatures. |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 159 | struct ObjCMethodList { |
| 160 | ObjCMethodDecl *Method; |
| 161 | ObjCMethodList *Next; |
Steve Naroff | 5811baf | 2007-10-14 00:58:41 +0000 | [diff] [blame] | 162 | |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 163 | ObjCMethodList() { |
Steve Naroff | 5811baf | 2007-10-14 00:58:41 +0000 | [diff] [blame] | 164 | Method = 0; |
| 165 | Next = 0; |
| 166 | } |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 167 | ObjCMethodList(ObjCMethodDecl *M, ObjCMethodList *C) { |
Steve Naroff | 5811baf | 2007-10-14 00:58:41 +0000 | [diff] [blame] | 168 | Method = M; |
| 169 | Next = C; |
| 170 | } |
| 171 | }; |
| 172 | /// Instance/Factory Method Pools - allows efficient lookup when typechecking |
| 173 | /// messages to "id". We need to maintain a list, since selectors can have |
| 174 | /// differing signatures across classes. In Cocoa, this happens to be |
| 175 | /// extremely uncommon (only 1% of selectors are "overloaded"). |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 176 | llvm::DenseMap<Selector, ObjCMethodList> InstanceMethodPool; |
| 177 | llvm::DenseMap<Selector, ObjCMethodList> FactoryMethodPool; |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 178 | public: |
Chris Lattner | fe0e0af | 2008-02-06 00:46:58 +0000 | [diff] [blame] | 179 | Sema(Preprocessor &pp, ASTContext &ctxt, ASTConsumer &consumer); |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 180 | |
Chris Lattner | ac18be9 | 2006-11-20 06:49:47 +0000 | [diff] [blame] | 181 | const LangOptions &getLangOptions() const; |
| 182 | |
Steve Naroff | 71ce2e0 | 2007-05-18 22:53:50 +0000 | [diff] [blame] | 183 | /// The primitive diagnostic helpers - always returns true, which simplifies |
| 184 | /// error handling (i.e. less code). |
Chris Lattner | d6647d3 | 2007-05-16 17:56:50 +0000 | [diff] [blame] | 185 | bool Diag(SourceLocation Loc, unsigned DiagID); |
| 186 | bool Diag(SourceLocation Loc, unsigned DiagID, const std::string &Msg); |
| 187 | bool Diag(SourceLocation Loc, unsigned DiagID, const std::string &Msg1, |
| 188 | const std::string &Msg2); |
Steve Naroff | 71ce2e0 | 2007-05-18 22:53:50 +0000 | [diff] [blame] | 189 | |
| 190 | /// More expressive diagnostic helpers for expressions (say that 6 times:-) |
Argyrios Kyrtzidis | bf667e2 | 2008-08-24 13:14:02 +0000 | [diff] [blame] | 191 | bool Diag(SourceLocation Loc, unsigned DiagID, const SourceRange& R1); |
Steve Naroff | 71ce2e0 | 2007-05-18 22:53:50 +0000 | [diff] [blame] | 192 | bool Diag(SourceLocation Loc, unsigned DiagID, |
Argyrios Kyrtzidis | bf667e2 | 2008-08-24 13:14:02 +0000 | [diff] [blame] | 193 | const SourceRange& R1, const SourceRange& R2); |
Steve Naroff | 71ce2e0 | 2007-05-18 22:53:50 +0000 | [diff] [blame] | 194 | bool Diag(SourceLocation Loc, unsigned DiagID, const std::string &Msg, |
Argyrios Kyrtzidis | bf667e2 | 2008-08-24 13:14:02 +0000 | [diff] [blame] | 195 | const SourceRange& R1); |
Steve Naroff | 71ce2e0 | 2007-05-18 22:53:50 +0000 | [diff] [blame] | 196 | bool Diag(SourceLocation Loc, unsigned DiagID, const std::string &Msg, |
Argyrios Kyrtzidis | bf667e2 | 2008-08-24 13:14:02 +0000 | [diff] [blame] | 197 | const SourceRange& R1, const SourceRange& R2); |
Steve Naroff | 71ce2e0 | 2007-05-18 22:53:50 +0000 | [diff] [blame] | 198 | bool Diag(SourceLocation Loc, unsigned DiagID, const std::string &Msg1, |
Argyrios Kyrtzidis | bf667e2 | 2008-08-24 13:14:02 +0000 | [diff] [blame] | 199 | const std::string &Msg2, const SourceRange& R1); |
Chris Lattner | 816dea2 | 2008-01-03 23:38:43 +0000 | [diff] [blame] | 200 | bool Diag(SourceLocation Loc, unsigned DiagID, const std::string &Msg1, |
Argyrios Kyrtzidis | bf667e2 | 2008-08-24 13:14:02 +0000 | [diff] [blame] | 201 | const std::string &Msg2, const std::string &Msg3, |
| 202 | const SourceRange& R1); |
Steve Naroff | 71ce2e0 | 2007-05-18 22:53:50 +0000 | [diff] [blame] | 203 | bool Diag(SourceLocation Loc, unsigned DiagID, |
| 204 | const std::string &Msg1, const std::string &Msg2, |
Argyrios Kyrtzidis | bf667e2 | 2008-08-24 13:14:02 +0000 | [diff] [blame] | 205 | const SourceRange& R1, const SourceRange& R2); |
Fariborz Jahanian | 343f709 | 2007-09-29 00:54:24 +0000 | [diff] [blame] | 206 | |
Chris Lattner | 57c523f | 2007-08-31 04:53:24 +0000 | [diff] [blame] | 207 | virtual void DeleteExpr(ExprTy *E); |
| 208 | virtual void DeleteStmt(StmtTy *S); |
| 209 | |
Chris Lattner | f440440 | 2008-08-23 03:19:52 +0000 | [diff] [blame] | 210 | virtual void ActOnEndOfTranslationUnit(); |
| 211 | |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 212 | //===--------------------------------------------------------------------===// |
Chris Lattner | f84a79c | 2006-11-11 22:59:23 +0000 | [diff] [blame] | 213 | // Type Analysis / Processing: SemaType.cpp. |
| 214 | // |
Chris Lattner | 4b413ea | 2008-06-26 06:27:57 +0000 | [diff] [blame] | 215 | QualType ConvertDeclSpecToType(const DeclSpec &DS); |
Chris Lattner | a7e619c | 2008-06-29 00:50:08 +0000 | [diff] [blame] | 216 | void ProcessTypeAttributeList(QualType &Result, const AttributeList *AL); |
Steve Naroff | e5aa9be | 2007-04-05 22:36:20 +0000 | [diff] [blame] | 217 | QualType GetTypeForDeclarator(Declarator &D, Scope *S); |
Chris Lattner | efedd9e | 2008-02-21 01:07:18 +0000 | [diff] [blame] | 218 | |
Chris Lattner | f84a79c | 2006-11-11 22:59:23 +0000 | [diff] [blame] | 219 | |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 220 | QualType ObjCGetTypeForMethodDefinition(DeclTy *D); |
Fariborz Jahanian | 56ff146 | 2007-11-08 23:49:49 +0000 | [diff] [blame] | 221 | |
| 222 | |
Steve Naroff | 30d242c | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 223 | virtual TypeResult ActOnTypeName(Scope *S, Declarator &D); |
Steve Naroff | 26c8ea5 | 2007-03-21 21:08:52 +0000 | [diff] [blame] | 224 | private: |
Chris Lattner | f84a79c | 2006-11-11 22:59:23 +0000 | [diff] [blame] | 225 | //===--------------------------------------------------------------------===// |
Chris Lattner | e168f76 | 2006-11-10 05:29:30 +0000 | [diff] [blame] | 226 | // Symbol table / Decl tracking callbacks: SemaDecl.cpp. |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 227 | // |
Argyrios Kyrtzidis | 25d05e8 | 2008-08-01 10:35:27 +0000 | [diff] [blame] | 228 | virtual TypeTy *isTypeName(const IdentifierInfo &II, Scope *S); |
Daniel Dunbar | 1ff1d1f | 2008-08-05 16:28:08 +0000 | [diff] [blame] | 229 | virtual DeclTy *ActOnDeclarator(Scope *S, Declarator &D, DeclTy *LastInGroup); |
Chris Lattner | aa9c7ae | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 230 | virtual DeclTy *ActOnParamDeclarator(Scope *S, Declarator &D); |
| 231 | virtual void ActOnParamDefaultArgument(DeclTy *param, |
| 232 | SourceLocation EqualLoc, |
| 233 | ExprTy *defarg); |
Steve Naroff | 6109140 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 234 | void AddInitializerToDecl(DeclTy *dcl, ExprTy *init); |
Chris Lattner | 776fac8 | 2007-06-09 00:53:06 +0000 | [diff] [blame] | 235 | virtual DeclTy *FinalizeDeclaratorGroup(Scope *S, DeclTy *Group); |
| 236 | |
Chris Lattner | a55a2cc | 2007-10-09 17:14:05 +0000 | [diff] [blame] | 237 | virtual DeclTy *ActOnStartOfFunctionDef(Scope *S, Declarator &D); |
Argyrios Kyrtzidis | ed98342 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 238 | virtual DeclTy *ActOnStartOfFunctionDef(Scope *S, DeclTy *D); |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 239 | virtual void ObjCActOnStartOfMethodDef(Scope *S, DeclTy *D); |
Steve Naroff | b313fc3 | 2007-11-11 23:20:51 +0000 | [diff] [blame] | 240 | |
| 241 | virtual DeclTy *ActOnFinishFunctionBody(DeclTy *Decl, StmtTy *Body); |
Chris Lattner | 38376f1 | 2008-01-12 07:05:38 +0000 | [diff] [blame] | 242 | virtual DeclTy *ActOnLinkageSpec(SourceLocation Loc, SourceLocation LBrace, |
Nate Begeman | 7dd8e72 | 2008-02-20 22:57:40 +0000 | [diff] [blame] | 243 | SourceLocation RBrace, const char *Lang, |
| 244 | unsigned StrSize, DeclTy *D); |
Anders Carlsson | 5c6c059 | 2008-02-08 00:33:21 +0000 | [diff] [blame] | 245 | virtual DeclTy *ActOnFileScopeAsmDecl(SourceLocation Loc, ExprTy *expr); |
| 246 | |
Steve Naroff | c62adb6 | 2007-10-09 22:01:59 +0000 | [diff] [blame] | 247 | /// Scope actions. |
| 248 | virtual void ActOnPopScope(SourceLocation Loc, Scope *S); |
| 249 | virtual void ActOnTranslationUnitScope(SourceLocation Loc, Scope *S); |
Chris Lattner | 01564d9 | 2007-01-27 19:27:06 +0000 | [diff] [blame] | 250 | |
Chris Lattner | 200bdc3 | 2006-11-19 02:43:37 +0000 | [diff] [blame] | 251 | /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with |
| 252 | /// no declarator (e.g. "struct foo;") is parsed. |
| 253 | virtual DeclTy *ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS); |
| 254 | |
Steve Naroff | 30d242c | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 255 | virtual DeclTy *ActOnTag(Scope *S, unsigned TagType, TagKind TK, |
Chris Lattner | f34c4da | 2007-01-23 04:08:05 +0000 | [diff] [blame] | 256 | SourceLocation KWLoc, IdentifierInfo *Name, |
Steve Naroff | b309644 | 2007-06-09 03:47:53 +0000 | [diff] [blame] | 257 | SourceLocation NameLoc, AttributeList *Attr); |
Ted Kremenek | 2147570 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 258 | |
| 259 | DeclTy* ActOnTagStruct(Scope *S, TagDecl::TagKind Kind, TagKind TK, |
| 260 | SourceLocation KWLoc, IdentifierInfo *Name, |
| 261 | SourceLocation NameLoc, AttributeList *Attr); |
| 262 | |
Chris Lattner | 2cc35ae | 2008-08-23 02:00:52 +0000 | [diff] [blame] | 263 | virtual void ActOnDefs(Scope *S, SourceLocation DeclStart, |
| 264 | IdentifierInfo *ClassName, |
| 265 | llvm::SmallVectorImpl<DeclTy*> &Decls); |
Fariborz Jahanian | de61583 | 2008-04-10 23:32:45 +0000 | [diff] [blame] | 266 | virtual DeclTy *ActOnField(Scope *S, SourceLocation DeclStart, |
Chris Lattner | 1300fb9 | 2007-01-23 23:42:53 +0000 | [diff] [blame] | 267 | Declarator &D, ExprTy *BitfieldWidth); |
Fariborz Jahanian | de61583 | 2008-04-10 23:32:45 +0000 | [diff] [blame] | 268 | |
| 269 | virtual DeclTy *ActOnIvar(Scope *S, SourceLocation DeclStart, |
| 270 | Declarator &D, ExprTy *BitfieldWidth, |
Fariborz Jahanian | 9637674 | 2008-04-11 16:55:42 +0000 | [diff] [blame] | 271 | tok::ObjCKeywordKind visibility); |
Fariborz Jahanian | de61583 | 2008-04-10 23:32:45 +0000 | [diff] [blame] | 272 | |
Steve Naroff | 2e688fd | 2007-09-14 23:09:53 +0000 | [diff] [blame] | 273 | // This is used for both record definitions and ObjC interface declarations. |
Fariborz Jahanian | 343f709 | 2007-09-29 00:54:24 +0000 | [diff] [blame] | 274 | virtual void ActOnFields(Scope* S, |
Steve Naroff | 33a1e80 | 2007-10-29 21:38:07 +0000 | [diff] [blame] | 275 | SourceLocation RecLoc, DeclTy *TagDecl, |
| 276 | DeclTy **Fields, unsigned NumFields, |
Fariborz Jahanian | de61583 | 2008-04-10 23:32:45 +0000 | [diff] [blame] | 277 | SourceLocation LBrac, SourceLocation RBrac); |
Steve Naroff | 30d242c | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 278 | virtual DeclTy *ActOnEnumConstant(Scope *S, DeclTy *EnumDecl, |
Chris Lattner | 4ef4001 | 2007-06-11 01:28:17 +0000 | [diff] [blame] | 279 | DeclTy *LastEnumConstant, |
Chris Lattner | c1915e2 | 2007-01-25 07:29:02 +0000 | [diff] [blame] | 280 | SourceLocation IdLoc, IdentifierInfo *Id, |
| 281 | SourceLocation EqualLoc, ExprTy *Val); |
Steve Naroff | 30d242c | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 282 | virtual void ActOnEnumBody(SourceLocation EnumLoc, DeclTy *EnumDecl, |
Chris Lattner | c1915e2 | 2007-01-25 07:29:02 +0000 | [diff] [blame] | 283 | DeclTy **Elements, unsigned NumElements); |
Steve Naroff | 3273c22 | 2007-03-14 21:52:03 +0000 | [diff] [blame] | 284 | private: |
Argyrios Kyrtzidis | ed98342 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 285 | DeclContext *getDCParent(DeclContext *DC); |
| 286 | |
Chris Lattner | c5ffed4 | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 287 | /// Set the current declaration context until it gets popped. |
Chris Lattner | bec4134 | 2008-04-22 18:39:57 +0000 | [diff] [blame] | 288 | void PushDeclContext(DeclContext *DC); |
Chris Lattner | 0a5ff0d | 2008-04-06 04:47:34 +0000 | [diff] [blame] | 289 | void PopDeclContext(); |
Argyrios Kyrtzidis | 853fbea | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 290 | |
| 291 | /// CurFunctionDecl - If inside of a function body, this returns a pointer to |
| 292 | /// the function decl for the function being parsed. |
| 293 | FunctionDecl *getCurFunctionDecl() { |
| 294 | return dyn_cast<FunctionDecl>(CurContext); |
| 295 | } |
| 296 | |
| 297 | /// CurMethodDecl - If inside of a method body, this returns a pointer to |
| 298 | /// the method decl for the method being parsed. |
Daniel Dunbar | 6e8aa53 | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 299 | ObjCMethodDecl *getCurMethodDecl(); |
Chris Lattner | c5ffed4 | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 300 | |
Argyrios Kyrtzidis | b8a4920 | 2008-04-12 00:47:19 +0000 | [diff] [blame] | 301 | /// Add this decl to the scope shadowed decl chains. |
| 302 | void PushOnScopeChains(NamedDecl *D, Scope *S); |
| 303 | |
Argyrios Kyrtzidis | 5b144d5 | 2008-09-09 21:18:04 +0000 | [diff] [blame] | 304 | /// isDeclInScope - If 'Ctx' is a function/method, isDeclInScope returns true |
| 305 | /// if 'D' is in Scope 'S', otherwise 'S' is ignored and isDeclInScope returns |
| 306 | /// true if 'D' belongs to the given declaration context. |
| 307 | bool isDeclInScope(Decl *D, DeclContext *Ctx, Scope *S = 0) { |
| 308 | return IdResolver.isDeclInScope(D, Ctx, S); |
| 309 | } |
| 310 | |
Chris Lattner | efedd9e | 2008-02-21 01:07:18 +0000 | [diff] [blame] | 311 | /// Subroutines of ActOnDeclarator(). |
Chris Lattner | 07b201d | 2007-11-14 06:34:38 +0000 | [diff] [blame] | 312 | TypedefDecl *ParseTypedefDecl(Scope *S, Declarator &D, QualType T, |
| 313 | ScopedDecl *LastDecl); |
Steve Naroff | 257520b | 2008-04-01 23:04:06 +0000 | [diff] [blame] | 314 | TypedefDecl *MergeTypeDefDecl(TypedefDecl *New, Decl *Old); |
Douglas Gregor | 89f238c | 2008-04-21 02:02:58 +0000 | [diff] [blame] | 315 | FunctionDecl *MergeFunctionDecl(FunctionDecl *New, Decl *Old, |
| 316 | bool &Redeclaration); |
Steve Naroff | 257520b | 2008-04-01 23:04:06 +0000 | [diff] [blame] | 317 | VarDecl *MergeVarDecl(VarDecl *New, Decl *Old); |
Chris Lattner | aa9c7ae | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 318 | FunctionDecl *MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old); |
Steve Naroff | 5bb8f22 | 2008-08-08 17:50:35 +0000 | [diff] [blame] | 319 | void CheckForFileScopedRedefinitions(Scope *S, VarDecl *VD); |
| 320 | |
Chris Lattner | aa9c7ae | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 321 | /// Helpers for dealing with function parameters |
| 322 | bool CheckParmsForFunctionDef(FunctionDecl *FD); |
Chris Lattner | aa9c7ae | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 323 | void CheckCXXDefaultArguments(FunctionDecl *FD); |
Douglas Gregor | caa8ace | 2008-05-07 04:49:29 +0000 | [diff] [blame] | 324 | void CheckExtraCXXDefaultArguments(Declarator &D); |
Steve Naroff | 6fbf0dc | 2007-03-16 00:33:25 +0000 | [diff] [blame] | 325 | |
Steve Naroff | 3273c22 | 2007-03-14 21:52:03 +0000 | [diff] [blame] | 326 | /// More parsing and symbol table subroutines... |
Steve Naroff | 2fc93f5 | 2008-04-02 14:35:35 +0000 | [diff] [blame] | 327 | Decl *LookupDecl(const IdentifierInfo *II, unsigned NSI, Scope *S, |
| 328 | bool enableLazyBuiltinCreation = true); |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 329 | ObjCInterfaceDecl *getObjCInterfaceDecl(IdentifierInfo *Id); |
Steve Naroff | 2fc93f5 | 2008-04-02 14:35:35 +0000 | [diff] [blame] | 330 | ScopedDecl *LazilyCreateBuiltin(IdentifierInfo *II, unsigned ID, |
| 331 | Scope *S); |
Steve Naroff | 2f74208 | 2007-09-16 16:16:00 +0000 | [diff] [blame] | 332 | ScopedDecl *ImplicitlyDefineFunction(SourceLocation Loc, IdentifierInfo &II, |
Steve Naroff | 3273c22 | 2007-03-14 21:52:03 +0000 | [diff] [blame] | 333 | Scope *S); |
Steve Naroff | a8fd973 | 2007-06-11 00:35:03 +0000 | [diff] [blame] | 334 | // Decl attributes - this routine is the top level dispatcher. |
Chris Lattner | 58418ff | 2008-06-29 00:16:31 +0000 | [diff] [blame] | 335 | void ProcessDeclAttributes(Decl *D, const Declarator &PD); |
Chris Lattner | a574154 | 2008-06-28 23:58:55 +0000 | [diff] [blame] | 336 | void ProcessDeclAttributeList(Decl *D, const AttributeList *AttrList); |
Christopher Lamb | 025b5fb | 2008-02-04 02:31:56 +0000 | [diff] [blame] | 337 | |
Steve Naroff | 15833ed | 2008-02-10 21:38:56 +0000 | [diff] [blame] | 338 | void WarnUndefinedMethod(SourceLocation ImpLoc, ObjCMethodDecl *method, |
| 339 | bool &IncompleteImpl); |
| 340 | |
Daniel Dunbar | c7dfbfd | 2008-09-04 20:01:15 +0000 | [diff] [blame] | 341 | /// CheckProtocolMethodDefs - This routine checks unimpletented |
| 342 | /// methods declared in protocol, and those referenced by it. |
| 343 | /// \param IDecl - Used for checking for methods which may have been |
| 344 | /// inherited. |
Steve Naroff | a3699224 | 2008-02-08 22:06:17 +0000 | [diff] [blame] | 345 | void CheckProtocolMethodDefs(SourceLocation ImpLoc, |
| 346 | ObjCProtocolDecl *PDecl, |
Fariborz Jahanian | adf84f3 | 2007-10-02 20:06:01 +0000 | [diff] [blame] | 347 | bool& IncompleteImpl, |
Steve Naroff | 71c3c1c | 2007-10-08 21:05:34 +0000 | [diff] [blame] | 348 | const llvm::DenseSet<Selector> &InsMap, |
Daniel Dunbar | c7dfbfd | 2008-09-04 20:01:15 +0000 | [diff] [blame] | 349 | const llvm::DenseSet<Selector> &ClsMap, |
| 350 | ObjCInterfaceDecl *IDecl); |
Fariborz Jahanian | ec7b333 | 2007-09-29 17:14:55 +0000 | [diff] [blame] | 351 | |
Steve Naroff | d174155 | 2007-10-02 21:43:37 +0000 | [diff] [blame] | 352 | /// CheckImplementationIvars - This routine checks if the instance variables |
| 353 | /// listed in the implelementation match those listed in the interface. |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 354 | void CheckImplementationIvars(ObjCImplementationDecl *ImpDecl, |
| 355 | ObjCIvarDecl **Fields, unsigned nIvars, |
Steve Naroff | 15833ed | 2008-02-10 21:38:56 +0000 | [diff] [blame] | 356 | SourceLocation Loc); |
Steve Naroff | d174155 | 2007-10-02 21:43:37 +0000 | [diff] [blame] | 357 | |
Fariborz Jahanian | ec7b333 | 2007-09-29 17:14:55 +0000 | [diff] [blame] | 358 | /// ImplMethodsVsClassMethods - This is main routine to warn if any method |
| 359 | /// remains unimplemented in the @implementation class. |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 360 | void ImplMethodsVsClassMethods(ObjCImplementationDecl* IMPDecl, |
| 361 | ObjCInterfaceDecl* IDecl); |
Fariborz Jahanian | ec7b333 | 2007-09-29 17:14:55 +0000 | [diff] [blame] | 362 | |
Fariborz Jahanian | 89b8ef9 | 2007-10-02 16:38:50 +0000 | [diff] [blame] | 363 | /// ImplCategoryMethodsVsIntfMethods - Checks that methods declared in the |
| 364 | /// category interface is implemented in the category @implementation. |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 365 | void ImplCategoryMethodsVsIntfMethods(ObjCCategoryImplDecl *CatImplDecl, |
| 366 | ObjCCategoryDecl *CatClassDecl); |
Fariborz Jahanian | 458f711 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 367 | /// MatchTwoMethodDeclarations - Checks if two methods' type match and returns |
| 368 | /// true, or false, accordingly. |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 369 | bool MatchTwoMethodDeclarations(const ObjCMethodDecl *Method, |
| 370 | const ObjCMethodDecl *PrevMethod); |
Steve Naroff | 7f549f1 | 2007-10-10 21:53:07 +0000 | [diff] [blame] | 371 | |
Steve Naroff | 5811baf | 2007-10-14 00:58:41 +0000 | [diff] [blame] | 372 | /// AddInstanceMethodToGlobalPool - All instance methods in a translation |
| 373 | /// unit are added to a global pool. This allows us to efficiently associate |
| 374 | /// a selector with a method declaraation for purposes of typechecking |
| 375 | /// messages sent to "id" (where the class of the object is unknown). |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 376 | void AddInstanceMethodToGlobalPool(ObjCMethodDecl *Method); |
Steve Naroff | 5811baf | 2007-10-14 00:58:41 +0000 | [diff] [blame] | 377 | |
| 378 | /// AddFactoryMethodToGlobalPool - Same as above, but for factory methods. |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 379 | void AddFactoryMethodToGlobalPool(ObjCMethodDecl *Method); |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 380 | //===--------------------------------------------------------------------===// |
Chris Lattner | e168f76 | 2006-11-10 05:29:30 +0000 | [diff] [blame] | 381 | // Statement Parsing Callbacks: SemaStmt.cpp. |
Steve Naroff | 3273c22 | 2007-03-14 21:52:03 +0000 | [diff] [blame] | 382 | public: |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 383 | virtual StmtResult ActOnExprStmt(ExprTy *Expr); |
Chris Lattner | 1ec5f56 | 2007-06-27 05:38:08 +0000 | [diff] [blame] | 384 | |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 385 | virtual StmtResult ActOnNullStmt(SourceLocation SemiLoc); |
| 386 | virtual StmtResult ActOnCompoundStmt(SourceLocation L, SourceLocation R, |
Chris Lattner | cac27a5 | 2007-08-31 21:49:55 +0000 | [diff] [blame] | 387 | StmtTy **Elts, unsigned NumElts, |
| 388 | bool isStmtExpr); |
Chris Lattner | 2e23209 | 2008-03-13 06:29:04 +0000 | [diff] [blame] | 389 | virtual StmtResult ActOnDeclStmt(DeclTy *Decl, SourceLocation StartLoc, |
| 390 | SourceLocation EndLoc); |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 391 | virtual StmtResult ActOnCaseStmt(SourceLocation CaseLoc, ExprTy *LHSVal, |
Chris Lattner | 6c0ff13 | 2006-11-05 00:19:50 +0000 | [diff] [blame] | 392 | SourceLocation DotDotDotLoc, ExprTy *RHSVal, |
| 393 | SourceLocation ColonLoc, StmtTy *SubStmt); |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 394 | virtual StmtResult ActOnDefaultStmt(SourceLocation DefaultLoc, |
Chris Lattner | 46eeb22 | 2007-07-18 02:28:47 +0000 | [diff] [blame] | 395 | SourceLocation ColonLoc, StmtTy *SubStmt, |
| 396 | Scope *CurScope); |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 397 | virtual StmtResult ActOnLabelStmt(SourceLocation IdentLoc, IdentifierInfo *II, |
Chris Lattner | 6c0ff13 | 2006-11-05 00:19:50 +0000 | [diff] [blame] | 398 | SourceLocation ColonLoc, StmtTy *SubStmt); |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 399 | virtual StmtResult ActOnIfStmt(SourceLocation IfLoc, ExprTy *CondVal, |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 400 | StmtTy *ThenVal, SourceLocation ElseLoc, |
| 401 | StmtTy *ElseVal); |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 402 | virtual StmtResult ActOnStartOfSwitchStmt(ExprTy *Cond); |
Chris Lattner | dadc762 | 2007-10-05 20:15:24 +0000 | [diff] [blame] | 403 | virtual StmtResult ActOnFinishSwitchStmt(SourceLocation SwitchLoc, |
| 404 | StmtTy *Switch, ExprTy *Body); |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 405 | virtual StmtResult ActOnWhileStmt(SourceLocation WhileLoc, ExprTy *Cond, |
Chris Lattner | 85ed873 | 2006-11-04 20:40:44 +0000 | [diff] [blame] | 406 | StmtTy *Body); |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 407 | virtual StmtResult ActOnDoStmt(SourceLocation DoLoc, StmtTy *Body, |
Chris Lattner | 85ed873 | 2006-11-04 20:40:44 +0000 | [diff] [blame] | 408 | SourceLocation WhileLoc, ExprTy *Cond); |
| 409 | |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 410 | virtual StmtResult ActOnForStmt(SourceLocation ForLoc, |
Chris Lattner | 71e23ce | 2006-11-04 20:18:38 +0000 | [diff] [blame] | 411 | SourceLocation LParenLoc, |
| 412 | StmtTy *First, ExprTy *Second, ExprTy *Third, |
| 413 | SourceLocation RParenLoc, StmtTy *Body); |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 414 | virtual StmtResult ActOnObjCForCollectionStmt(SourceLocation ForColLoc, |
Fariborz Jahanian | 732b8c2 | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 415 | SourceLocation LParenLoc, |
| 416 | StmtTy *First, ExprTy *Second, |
| 417 | SourceLocation RParenLoc, StmtTy *Body); |
| 418 | |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 419 | virtual StmtResult ActOnGotoStmt(SourceLocation GotoLoc, |
Chris Lattner | 16976d3 | 2006-11-05 01:46:01 +0000 | [diff] [blame] | 420 | SourceLocation LabelLoc, |
| 421 | IdentifierInfo *LabelII); |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 422 | virtual StmtResult ActOnIndirectGotoStmt(SourceLocation GotoLoc, |
Chris Lattner | 16976d3 | 2006-11-05 01:46:01 +0000 | [diff] [blame] | 423 | SourceLocation StarLoc, |
| 424 | ExprTy *DestExp); |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 425 | virtual StmtResult ActOnContinueStmt(SourceLocation ContinueLoc, |
Chris Lattner | eaafe122 | 2006-11-10 05:17:58 +0000 | [diff] [blame] | 426 | Scope *CurScope); |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 427 | virtual StmtResult ActOnBreakStmt(SourceLocation GotoLoc, Scope *CurScope); |
Chris Lattner | 71e23ce | 2006-11-04 20:18:38 +0000 | [diff] [blame] | 428 | |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 429 | virtual StmtResult ActOnReturnStmt(SourceLocation ReturnLoc, |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 430 | ExprTy *RetValExp); |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 431 | StmtResult ActOnBlockReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp); |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 432 | |
Anders Carlsson | 81a5a69 | 2007-11-20 19:21:03 +0000 | [diff] [blame] | 433 | virtual StmtResult ActOnAsmStmt(SourceLocation AsmLoc, |
Anders Carlsson | 19fe116 | 2008-02-05 23:03:50 +0000 | [diff] [blame] | 434 | bool IsSimple, |
Anders Carlsson | 660bdd1 | 2007-11-23 23:12:25 +0000 | [diff] [blame] | 435 | bool IsVolatile, |
Anders Carlsson | 94ea8aa | 2007-11-22 01:36:19 +0000 | [diff] [blame] | 436 | unsigned NumOutputs, |
| 437 | unsigned NumInputs, |
| 438 | std::string *Names, |
| 439 | ExprTy **Constraints, |
| 440 | ExprTy **Exprs, |
Anders Carlsson | 81a5a69 | 2007-11-20 19:21:03 +0000 | [diff] [blame] | 441 | ExprTy *AsmString, |
Anders Carlsson | 94ea8aa | 2007-11-22 01:36:19 +0000 | [diff] [blame] | 442 | unsigned NumClobbers, |
| 443 | ExprTy **Clobbers, |
Chris Lattner | 73c56c0 | 2007-10-29 04:04:16 +0000 | [diff] [blame] | 444 | SourceLocation RParenLoc); |
| 445 | |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 446 | virtual StmtResult ActOnObjCAtCatchStmt(SourceLocation AtLoc, |
Fariborz Jahanian | 9e63b98 | 2007-11-01 23:59:59 +0000 | [diff] [blame] | 447 | SourceLocation RParen, StmtTy *Parm, |
| 448 | StmtTy *Body, StmtTy *CatchList); |
| 449 | |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 450 | virtual StmtResult ActOnObjCAtFinallyStmt(SourceLocation AtLoc, |
Fariborz Jahanian | 71234d8 | 2007-11-02 00:18:53 +0000 | [diff] [blame] | 451 | StmtTy *Body); |
| 452 | |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 453 | virtual StmtResult ActOnObjCAtTryStmt(SourceLocation AtLoc, |
Fariborz Jahanian | f859ef2 | 2007-11-02 15:39:31 +0000 | [diff] [blame] | 454 | StmtTy *Try, |
| 455 | StmtTy *Catch, StmtTy *Finally); |
| 456 | |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 457 | virtual StmtResult ActOnObjCAtThrowStmt(SourceLocation AtLoc, |
Fariborz Jahanian | adfbbc3 | 2007-11-07 02:00:49 +0000 | [diff] [blame] | 458 | StmtTy *Throw); |
Fariborz Jahanian | 48085b8 | 2008-01-29 19:14:59 +0000 | [diff] [blame] | 459 | virtual StmtResult ActOnObjCAtSynchronizedStmt(SourceLocation AtLoc, |
| 460 | ExprTy *SynchExpr, |
| 461 | StmtTy *SynchBody); |
Fariborz Jahanian | adfbbc3 | 2007-11-07 02:00:49 +0000 | [diff] [blame] | 462 | |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 463 | //===--------------------------------------------------------------------===// |
Chris Lattner | e168f76 | 2006-11-10 05:29:30 +0000 | [diff] [blame] | 464 | // Expression Parsing Callbacks: SemaExpr.cpp. |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 465 | |
| 466 | // Primary Expressions. |
Steve Naroff | 30d242c | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 467 | virtual ExprResult ActOnIdentifierExpr(Scope *S, SourceLocation Loc, |
Chris Lattner | ac18be9 | 2006-11-20 06:49:47 +0000 | [diff] [blame] | 468 | IdentifierInfo &II, |
| 469 | bool HasTrailingLParen); |
Chris Lattner | 6307f19 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 470 | virtual ExprResult ActOnPredefinedExpr(SourceLocation Loc, |
| 471 | tok::TokenKind Kind); |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 472 | virtual ExprResult ActOnNumericConstant(const Token &); |
| 473 | virtual ExprResult ActOnCharacterConstant(const Token &); |
| 474 | virtual ExprResult ActOnParenExpr(SourceLocation L, SourceLocation R, |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 475 | ExprTy *Val); |
Chris Lattner | 697e5d6 | 2006-11-09 06:32:27 +0000 | [diff] [blame] | 476 | |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 477 | /// ActOnStringLiteral - The specified tokens were lexed as pasted string |
Chris Lattner | 697e5d6 | 2006-11-09 06:32:27 +0000 | [diff] [blame] | 478 | /// fragments (e.g. "foo" "bar" L"baz"). |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 479 | virtual ExprResult ActOnStringLiteral(const Token *Toks, unsigned NumToks); |
Chris Lattner | 697e5d6 | 2006-11-09 06:32:27 +0000 | [diff] [blame] | 480 | |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 481 | // Binary/Unary Operators. 'Tok' is the token for the operator. |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 482 | virtual ExprResult ActOnUnaryOp(SourceLocation OpLoc, tok::TokenKind Op, |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 483 | ExprTy *Input); |
| 484 | virtual ExprResult |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 485 | ActOnSizeOfAlignOfTypeExpr(SourceLocation OpLoc, bool isSizeof, |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 486 | SourceLocation LParenLoc, TypeTy *Ty, |
| 487 | SourceLocation RParenLoc); |
| 488 | |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 489 | virtual ExprResult ActOnPostfixUnaryOp(SourceLocation OpLoc, |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 490 | tok::TokenKind Kind, ExprTy *Input); |
| 491 | |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 492 | virtual ExprResult ActOnArraySubscriptExpr(ExprTy *Base, SourceLocation LLoc, |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 493 | ExprTy *Idx, SourceLocation RLoc); |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 494 | virtual ExprResult ActOnMemberReferenceExpr(ExprTy *Base,SourceLocation OpLoc, |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 495 | tok::TokenKind OpKind, |
| 496 | SourceLocation MemberLoc, |
| 497 | IdentifierInfo &Member); |
| 498 | |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 499 | /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments. |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 500 | /// This provides the location of the left/right parens and a list of comma |
| 501 | /// locations. |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 502 | virtual ExprResult ActOnCallExpr(ExprTy *Fn, SourceLocation LParenLoc, |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 503 | ExprTy **Args, unsigned NumArgs, |
| 504 | SourceLocation *CommaLocs, |
| 505 | SourceLocation RParenLoc); |
| 506 | |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 507 | virtual ExprResult ActOnCastExpr(SourceLocation LParenLoc, TypeTy *Ty, |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 508 | SourceLocation RParenLoc, ExprTy *Op); |
Steve Naroff | fbd0983 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 509 | |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 510 | virtual ExprResult ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty, |
Steve Naroff | fbd0983 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 511 | SourceLocation RParenLoc, ExprTy *Op); |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 512 | |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 513 | virtual ExprResult ActOnInitList(SourceLocation LParenLoc, |
Steve Naroff | fbd0983 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 514 | ExprTy **InitList, unsigned NumInit, |
| 515 | SourceLocation RParenLoc); |
| 516 | |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 517 | virtual ExprResult ActOnBinOp(SourceLocation TokLoc, tok::TokenKind Kind, |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 518 | ExprTy *LHS,ExprTy *RHS); |
| 519 | |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 520 | /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 521 | /// in the case of a the GNU conditional expr extension. |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 522 | virtual ExprResult ActOnConditionalOp(SourceLocation QuestionLoc, |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 523 | SourceLocation ColonLoc, |
| 524 | ExprTy *Cond, ExprTy *LHS, ExprTy *RHS); |
Chris Lattner | 2937565 | 2006-12-04 18:06:35 +0000 | [diff] [blame] | 525 | |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 526 | /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". |
| 527 | virtual ExprResult ActOnAddrLabel(SourceLocation OpLoc, SourceLocation LabLoc, |
Chris Lattner | eefa10e | 2007-05-28 06:56:27 +0000 | [diff] [blame] | 528 | IdentifierInfo *LabelII); |
| 529 | |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 530 | virtual ExprResult ActOnStmtExpr(SourceLocation LPLoc, StmtTy *SubStmt, |
Chris Lattner | 366727f | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 531 | SourceLocation RPLoc); // "({..})" |
Chris Lattner | f17bd42 | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 532 | |
| 533 | /// __builtin_offsetof(type, a.b[123][456].c) |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 534 | virtual ExprResult ActOnBuiltinOffsetOf(SourceLocation BuiltinLoc, |
Chris Lattner | f17bd42 | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 535 | SourceLocation TypeLoc, TypeTy *Arg1, |
| 536 | OffsetOfComponent *CompPtr, |
| 537 | unsigned NumComponents, |
| 538 | SourceLocation RParenLoc); |
| 539 | |
Steve Naroff | 7886467 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 540 | // __builtin_types_compatible_p(type1, type2) |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 541 | virtual ExprResult ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc, |
Steve Naroff | 7886467 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 542 | TypeTy *arg1, TypeTy *arg2, |
| 543 | SourceLocation RPLoc); |
Steve Naroff | 9efdabc | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 544 | |
| 545 | // __builtin_choose_expr(constExpr, expr1, expr2) |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 546 | virtual ExprResult ActOnChooseExpr(SourceLocation BuiltinLoc, |
Steve Naroff | 9efdabc | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 547 | ExprTy *cond, ExprTy *expr1, ExprTy *expr2, |
| 548 | SourceLocation RPLoc); |
Chris Lattner | 366727f | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 549 | |
Nate Begeman | 1e36a85 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 550 | // __builtin_overload(...) |
| 551 | virtual ExprResult ActOnOverloadExpr(ExprTy **Args, unsigned NumArgs, |
| 552 | SourceLocation *CommaLocs, |
| 553 | SourceLocation BuiltinLoc, |
| 554 | SourceLocation RParenLoc); |
Nate Begeman | 0a6192c | 2008-03-07 20:04:22 +0000 | [diff] [blame] | 555 | |
Anders Carlsson | 7e13ab8 | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 556 | // __builtin_va_arg(expr, type) |
| 557 | virtual ExprResult ActOnVAArg(SourceLocation BuiltinLoc, |
| 558 | ExprTy *expr, TypeTy *type, |
| 559 | SourceLocation RPLoc); |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 560 | |
| 561 | //===------------------------- "Block" Extension ------------------------===// |
| 562 | |
| 563 | /// ActOnBlockStart - This callback is invoked when a block literal is |
| 564 | /// started. |
| 565 | virtual void ActOnBlockStart(SourceLocation CaretLoc, Scope *CurScope, |
| 566 | Declarator &ParamInfo); |
| 567 | |
| 568 | /// ActOnBlockError - If there is an error parsing a block, this callback |
| 569 | /// is invoked to pop the information about the block from the action impl. |
| 570 | virtual void ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope); |
| 571 | |
| 572 | /// ActOnBlockStmtExpr - This is called when the body of a block statement |
| 573 | /// literal was successfully completed. ^(int x){...} |
| 574 | virtual ExprResult ActOnBlockStmtExpr(SourceLocation CaretLoc, StmtTy *Body, |
| 575 | Scope *CurScope); |
| 576 | |
Argyrios Kyrtzidis | 0811489 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 577 | // Act on C++ namespaces |
| 578 | virtual DeclTy *ActOnStartNamespaceDef(Scope *S, SourceLocation IdentLoc, |
| 579 | IdentifierInfo *Ident, |
| 580 | SourceLocation LBrace); |
| 581 | virtual void ActOnFinishNamespaceDef(DeclTy *Dcl, SourceLocation RBrace); |
| 582 | |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 583 | /// ActOnCXXCasts - Parse {dynamic,static,reinterpret,const}_cast's. |
| 584 | virtual ExprResult ActOnCXXCasts(SourceLocation OpLoc, tok::TokenKind Kind, |
Chris Lattner | 2937565 | 2006-12-04 18:06:35 +0000 | [diff] [blame] | 585 | SourceLocation LAngleBracketLoc, TypeTy *Ty, |
| 586 | SourceLocation RAngleBracketLoc, |
| 587 | SourceLocation LParenLoc, ExprTy *E, |
| 588 | SourceLocation RParenLoc); |
Bill Wendling | 4073ed5 | 2007-02-13 01:51:42 +0000 | [diff] [blame] | 589 | |
Argyrios Kyrtzidis | ed98342 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 590 | //// ActOnCXXThis - Parse 'this' pointer. |
| 591 | virtual ExprResult ActOnCXXThis(SourceLocation ThisLoc); |
| 592 | |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 593 | /// ActOnCXXBoolLiteral - Parse {true,false} literals. |
| 594 | virtual ExprResult ActOnCXXBoolLiteral(SourceLocation OpLoc, |
Bill Wendling | bf313b0 | 2007-02-13 20:09:46 +0000 | [diff] [blame] | 595 | tok::TokenKind Kind); |
Anders Carlsson | 76f4a90 | 2007-08-21 17:43:55 +0000 | [diff] [blame] | 596 | |
Chris Lattner | b7e656b | 2008-02-26 00:51:44 +0000 | [diff] [blame] | 597 | //// ActOnCXXThrow - Parse throw expressions. |
| 598 | virtual ExprResult ActOnCXXThrow(SourceLocation OpLoc, |
| 599 | ExprTy *expr); |
| 600 | |
Argyrios Kyrtzidis | 857fcc2 | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 601 | /// ActOnCXXTypeConstructExpr - Parse construction of a specified type. |
| 602 | /// Can be interpreted either as function-style casting ("int(x)") |
| 603 | /// or class type construction ("ClassType(x,y,z)") |
| 604 | /// or creation of a value-initialized type ("int()"). |
| 605 | virtual ExprResult ActOnCXXTypeConstructExpr(SourceRange TypeRange, |
| 606 | TypeTy *TypeRep, |
| 607 | SourceLocation LParenLoc, |
| 608 | ExprTy **Exprs, |
| 609 | unsigned NumExprs, |
| 610 | SourceLocation *CommaLocs, |
| 611 | SourceLocation RParenLoc); |
| 612 | |
Argyrios Kyrtzidis | 7620ee4 | 2008-09-10 02:17:11 +0000 | [diff] [blame] | 613 | /// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a |
| 614 | /// C++ if/switch/while/for statement. |
| 615 | /// e.g: "if (int x = f()) {...}" |
| 616 | virtual ExprResult ActOnCXXConditionDeclarationExpr(Scope *S, |
| 617 | SourceLocation StartLoc, |
| 618 | Declarator &D, |
| 619 | SourceLocation EqualLoc, |
| 620 | ExprTy *AssignExprVal); |
| 621 | |
Anders Carlsson | 76f4a90 | 2007-08-21 17:43:55 +0000 | [diff] [blame] | 622 | // ParseObjCStringLiteral - Parse Objective-C string literals. |
Chris Lattner | e002fbe | 2007-12-12 01:04:12 +0000 | [diff] [blame] | 623 | virtual ExprResult ParseObjCStringLiteral(SourceLocation *AtLocs, |
| 624 | ExprTy **Strings, |
| 625 | unsigned NumStrings); |
Anders Carlsson | c5a81eb | 2007-08-22 15:14:15 +0000 | [diff] [blame] | 626 | virtual ExprResult ParseObjCEncodeExpression(SourceLocation AtLoc, |
Chris Lattner | 37390be | 2007-10-16 22:51:17 +0000 | [diff] [blame] | 627 | SourceLocation EncodeLoc, |
Anders Carlsson | c5a81eb | 2007-08-22 15:14:15 +0000 | [diff] [blame] | 628 | SourceLocation LParenLoc, |
| 629 | TypeTy *Ty, |
| 630 | SourceLocation RParenLoc); |
| 631 | |
Fariborz Jahanian | 4bef462 | 2007-10-16 20:40:23 +0000 | [diff] [blame] | 632 | // ParseObjCSelectorExpression - Build selector expression for @selector |
| 633 | virtual ExprResult ParseObjCSelectorExpression(Selector Sel, |
| 634 | SourceLocation AtLoc, |
Fariborz Jahanian | 6bd1d61 | 2007-10-16 23:21:02 +0000 | [diff] [blame] | 635 | SourceLocation SelLoc, |
Fariborz Jahanian | 4bef462 | 2007-10-16 20:40:23 +0000 | [diff] [blame] | 636 | SourceLocation LParenLoc, |
| 637 | SourceLocation RParenLoc); |
| 638 | |
Fariborz Jahanian | a32aaef | 2007-10-17 16:58:11 +0000 | [diff] [blame] | 639 | // ParseObjCProtocolExpression - Build protocol expression for @protocol |
| 640 | virtual ExprResult ParseObjCProtocolExpression(IdentifierInfo * ProtocolName, |
| 641 | SourceLocation AtLoc, |
| 642 | SourceLocation ProtoLoc, |
| 643 | SourceLocation LParenLoc, |
| 644 | SourceLocation RParenLoc); |
Douglas Gregor | 556877c | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 645 | |
| 646 | //===--------------------------------------------------------------------===// |
| 647 | // C++ Classes |
| 648 | // |
| 649 | /// ActOnBaseSpecifier - Parsed a base specifier |
| 650 | virtual void ActOnBaseSpecifier(DeclTy *classdecl, SourceRange SpecifierRange, |
| 651 | bool Virtual, AccessSpecifier Access, |
Argyrios Kyrtzidis | 25d05e8 | 2008-08-01 10:35:27 +0000 | [diff] [blame] | 652 | TypeTy *basetype, SourceLocation BaseLoc); |
Fariborz Jahanian | a32aaef | 2007-10-17 16:58:11 +0000 | [diff] [blame] | 653 | |
Argyrios Kyrtzidis | ed98342 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 654 | virtual void ActOnStartCXXClassDef(Scope *S, DeclTy *TagDecl, |
| 655 | SourceLocation LBrace); |
| 656 | |
| 657 | virtual DeclTy *ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, |
| 658 | Declarator &D, ExprTy *BitfieldWidth, |
| 659 | ExprTy *Init, DeclTy *LastInGroup); |
| 660 | |
| 661 | virtual void ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc, |
| 662 | DeclTy *TagDecl, |
| 663 | SourceLocation LBrac, |
| 664 | SourceLocation RBrac); |
| 665 | |
Argyrios Kyrtzidis | 5c45c9b | 2008-08-09 00:39:29 +0000 | [diff] [blame] | 666 | virtual void ActOnFinishCXXClassDef(DeclTy *TagDecl); |
Argyrios Kyrtzidis | ed98342 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 667 | |
Douglas Gregor | 556877c | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 668 | |
Steve Naroff | 09bf815 | 2007-09-06 21:24:23 +0000 | [diff] [blame] | 669 | // Objective-C declarations. |
Chris Lattner | df59f5a | 2008-07-26 04:13:19 +0000 | [diff] [blame] | 670 | virtual DeclTy *ActOnStartClassInterface(SourceLocation AtInterfaceLoc, |
| 671 | IdentifierInfo *ClassName, |
| 672 | SourceLocation ClassLoc, |
| 673 | IdentifierInfo *SuperName, |
| 674 | SourceLocation SuperLoc, |
| 675 | DeclTy * const *ProtoRefs, |
| 676 | unsigned NumProtoRefs, |
| 677 | SourceLocation EndProtoLoc, |
| 678 | AttributeList *AttrList); |
Fariborz Jahanian | 49c6425 | 2007-10-11 23:42:27 +0000 | [diff] [blame] | 679 | |
| 680 | virtual DeclTy *ActOnCompatiblityAlias( |
| 681 | SourceLocation AtCompatibilityAliasLoc, |
| 682 | IdentifierInfo *AliasName, SourceLocation AliasLocation, |
| 683 | IdentifierInfo *ClassName, SourceLocation ClassLocation); |
Steve Naroff | 09bf815 | 2007-09-06 21:24:23 +0000 | [diff] [blame] | 684 | |
Steve Naroff | 93eb5f1 | 2007-10-10 17:32:04 +0000 | [diff] [blame] | 685 | virtual DeclTy *ActOnStartProtocolInterface( |
Nate Begeman | 7dd8e72 | 2008-02-20 22:57:40 +0000 | [diff] [blame] | 686 | SourceLocation AtProtoInterfaceLoc, |
Fariborz Jahanian | 39d641f | 2007-09-17 21:07:36 +0000 | [diff] [blame] | 687 | IdentifierInfo *ProtocolName, SourceLocation ProtocolLoc, |
Chris Lattner | 3bbae00 | 2008-07-26 04:03:38 +0000 | [diff] [blame] | 688 | DeclTy * const *ProtoRefNames, unsigned NumProtoRefs, |
Daniel Dunbar | 26e2ab4 | 2008-09-26 04:48:09 +0000 | [diff] [blame^] | 689 | SourceLocation EndProtoLoc, |
| 690 | AttributeList *AttrList); |
Fariborz Jahanian | 39d641f | 2007-09-17 21:07:36 +0000 | [diff] [blame] | 691 | |
Chris Lattner | b1f3c94 | 2008-07-26 04:07:02 +0000 | [diff] [blame] | 692 | virtual DeclTy *ActOnStartCategoryInterface(SourceLocation AtInterfaceLoc, |
| 693 | IdentifierInfo *ClassName, |
| 694 | SourceLocation ClassLoc, |
| 695 | IdentifierInfo *CategoryName, |
| 696 | SourceLocation CategoryLoc, |
| 697 | DeclTy * const *ProtoRefs, |
| 698 | unsigned NumProtoRefs, |
| 699 | SourceLocation EndProtoLoc); |
Fariborz Jahanian | 867a7eb | 2007-09-18 20:26:58 +0000 | [diff] [blame] | 700 | |
Steve Naroff | 93eb5f1 | 2007-10-10 17:32:04 +0000 | [diff] [blame] | 701 | virtual DeclTy *ActOnStartClassImplementation( |
Nate Begeman | 7dd8e72 | 2008-02-20 22:57:40 +0000 | [diff] [blame] | 702 | SourceLocation AtClassImplLoc, |
Fariborz Jahanian | bfe13c5 | 2007-09-25 18:38:09 +0000 | [diff] [blame] | 703 | IdentifierInfo *ClassName, SourceLocation ClassLoc, |
| 704 | IdentifierInfo *SuperClassname, |
| 705 | SourceLocation SuperClassLoc); |
| 706 | |
Steve Naroff | 93eb5f1 | 2007-10-10 17:32:04 +0000 | [diff] [blame] | 707 | virtual DeclTy *ActOnStartCategoryImplementation( |
Fariborz Jahanian | 89b8ef9 | 2007-10-02 16:38:50 +0000 | [diff] [blame] | 708 | SourceLocation AtCatImplLoc, |
| 709 | IdentifierInfo *ClassName, |
| 710 | SourceLocation ClassLoc, |
| 711 | IdentifierInfo *CatName, |
| 712 | SourceLocation CatLoc); |
| 713 | |
Steve Naroff | 93eb5f1 | 2007-10-10 17:32:04 +0000 | [diff] [blame] | 714 | virtual DeclTy *ActOnForwardClassDeclaration(SourceLocation Loc, |
Steve Naroff | 0c37b0c | 2007-10-02 22:39:18 +0000 | [diff] [blame] | 715 | IdentifierInfo **IdentList, |
| 716 | unsigned NumElts); |
Fariborz Jahanian | 876e27d | 2007-09-21 15:40:54 +0000 | [diff] [blame] | 717 | |
Steve Naroff | 93eb5f1 | 2007-10-10 17:32:04 +0000 | [diff] [blame] | 718 | virtual DeclTy *ActOnForwardProtocolDeclaration(SourceLocation AtProtocolLoc, |
Chris Lattner | d7352d6 | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 719 | const IdentifierLocPair *IdentList, |
Steve Naroff | 0c37b0c | 2007-10-02 22:39:18 +0000 | [diff] [blame] | 720 | unsigned NumElts); |
Fariborz Jahanian | ea7a98d | 2007-10-05 21:01:53 +0000 | [diff] [blame] | 721 | |
Chris Lattner | 3bbae00 | 2008-07-26 04:03:38 +0000 | [diff] [blame] | 722 | virtual void FindProtocolDeclaration(bool WarnOnDeclarations, |
Chris Lattner | d7352d6 | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 723 | const IdentifierLocPair *ProtocolId, |
Fariborz Jahanian | 70e8f10 | 2007-10-11 00:55:41 +0000 | [diff] [blame] | 724 | unsigned NumProtocols, |
Chris Lattner | d7352d6 | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 725 | llvm::SmallVectorImpl<DeclTy *> &Protocols); |
Fariborz Jahanian | 7cf1886 | 2008-05-01 00:03:38 +0000 | [diff] [blame] | 726 | |
Daniel Dunbar | e8a06e6 | 2008-09-23 21:53:23 +0000 | [diff] [blame] | 727 | /// Ensure attributes are consistent with type. |
| 728 | /// \param [in, out] Attributes The attributes to check; they will |
| 729 | /// be modified to be consistent with \arg PropertyTy. |
| 730 | void CheckObjCPropertyAttributes(QualType PropertyTy, |
| 731 | SourceLocation Loc, |
| 732 | unsigned &Attributes); |
Fariborz Jahanian | 7cf1886 | 2008-05-01 00:03:38 +0000 | [diff] [blame] | 733 | void DiagnosePropertyMismatch(ObjCPropertyDecl *Property, |
| 734 | ObjCPropertyDecl *SuperProperty, |
Fariborz Jahanian | 98a6c4f | 2008-05-02 19:17:30 +0000 | [diff] [blame] | 735 | const char *Name); |
Fariborz Jahanian | 7cf1886 | 2008-05-01 00:03:38 +0000 | [diff] [blame] | 736 | void ComparePropertiesInBaseAndSuper(ObjCInterfaceDecl *IDecl); |
Fariborz Jahanian | 0a070ff | 2008-04-24 19:58:34 +0000 | [diff] [blame] | 737 | |
Fariborz Jahanian | 98a6c4f | 2008-05-02 19:17:30 +0000 | [diff] [blame] | 738 | void MergeProtocolPropertiesIntoClass(ObjCInterfaceDecl *IDecl, |
| 739 | DeclTy *MergeProtocols); |
| 740 | |
| 741 | void MergeOneProtocolPropertiesIntoClass(ObjCInterfaceDecl *IDecl, |
| 742 | ObjCProtocolDecl *PDecl); |
| 743 | |
Steve Naroff | cac26f4 | 2007-11-11 17:19:15 +0000 | [diff] [blame] | 744 | virtual void ActOnAtEnd(SourceLocation AtEndLoc, DeclTy *classDecl, |
| 745 | DeclTy **allMethods = 0, unsigned allNum = 0, |
| 746 | DeclTy **allProperties = 0, unsigned pNum = 0); |
Fariborz Jahanian | 2a4dd31 | 2007-09-26 18:27:25 +0000 | [diff] [blame] | 747 | |
Fariborz Jahanian | 0152a1a | 2008-04-14 23:36:35 +0000 | [diff] [blame] | 748 | virtual DeclTy *ActOnProperty(Scope *S, SourceLocation AtLoc, |
Fariborz Jahanian | 8d91686 | 2008-05-05 18:51:55 +0000 | [diff] [blame] | 749 | FieldDeclarator &FD, ObjCDeclSpec &ODS, |
Fariborz Jahanian | 09367d6 | 2008-05-06 18:09:04 +0000 | [diff] [blame] | 750 | Selector GetterSel, Selector SetterSel, |
Fariborz Jahanian | 8d91686 | 2008-05-05 18:51:55 +0000 | [diff] [blame] | 751 | tok::ObjCKeywordKind MethodImplKind); |
| 752 | |
Fariborz Jahanian | ffe97a3 | 2008-04-18 00:19:30 +0000 | [diff] [blame] | 753 | virtual DeclTy *ActOnPropertyImplDecl(SourceLocation AtLoc, |
| 754 | SourceLocation PropertyLoc, |
| 755 | bool ImplKind, DeclTy *ClassImplDecl, |
| 756 | IdentifierInfo *PropertyId, |
| 757 | IdentifierInfo *PropertyIvar); |
| 758 | |
Steve Naroff | 161a92b | 2007-10-26 20:53:56 +0000 | [diff] [blame] | 759 | virtual DeclTy *ActOnMethodDeclaration( |
| 760 | SourceLocation BeginLoc, // location of the + or -. |
| 761 | SourceLocation EndLoc, // location of the ; or {. |
Fariborz Jahanian | b560517 | 2007-11-09 19:52:12 +0000 | [diff] [blame] | 762 | tok::TokenKind MethodType, |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 763 | DeclTy *ClassDecl, ObjCDeclSpec &ReturnQT, TypeTy *ReturnType, |
Fariborz Jahanian | 7a9c474 | 2007-10-31 23:53:01 +0000 | [diff] [blame] | 764 | Selector Sel, |
Steve Naroff | f73590d | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 765 | // optional arguments. The number of types/arguments is obtained |
| 766 | // from the Sel.getNumArgs(). |
Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 767 | ObjCDeclSpec *ArgQT, TypeTy **ArgTypes, IdentifierInfo **ArgNames, |
Steve Naroff | d8ea1ac | 2007-11-15 12:35:21 +0000 | [diff] [blame] | 768 | AttributeList *AttrList, tok::ObjCKeywordKind MethodImplKind, |
| 769 | bool isVariadic = false); |
Steve Naroff | 077c83b | 2007-10-16 23:12:48 +0000 | [diff] [blame] | 770 | |
Steve Naroff | f73590d | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 771 | // ActOnClassMessage - used for both unary and keyword messages. |
| 772 | // ArgExprs is optional - if it is present, the number of expressions |
Steve Naroff | e3ffc2f | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 773 | // is obtained from NumArgs. |
Steve Naroff | f73590d | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 774 | virtual ExprResult ActOnClassMessage( |
Fariborz Jahanian | d98a734 | 2007-11-12 20:13:27 +0000 | [diff] [blame] | 775 | Scope *S, |
Steve Naroff | 8017506 | 2007-09-28 22:22:11 +0000 | [diff] [blame] | 776 | IdentifierInfo *receivingClassName, Selector Sel, |
Steve Naroff | e3ffc2f | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 777 | SourceLocation lbrac, SourceLocation rbrac, |
| 778 | ExprTy **ArgExprs, unsigned NumArgs); |
Steve Naroff | f73590d | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 779 | |
| 780 | // ActOnInstanceMessage - used for both unary and keyword messages. |
| 781 | // ArgExprs is optional - if it is present, the number of expressions |
Steve Naroff | e3ffc2f | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 782 | // is obtained from NumArgs. |
Steve Naroff | f73590d | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 783 | virtual ExprResult ActOnInstanceMessage( |
Steve Naroff | 8017506 | 2007-09-28 22:22:11 +0000 | [diff] [blame] | 784 | ExprTy *receiver, Selector Sel, |
Steve Naroff | e3ffc2f | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 785 | SourceLocation lbrac, SourceLocation rbrac, |
| 786 | ExprTy **ArgExprs, unsigned NumArgs); |
Steve Naroff | 26c8ea5 | 2007-03-21 21:08:52 +0000 | [diff] [blame] | 787 | private: |
Chris Lattner | a65e1f3 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 788 | /// ImpCastExprToType - If Expr is not of type 'Type', insert an implicit |
| 789 | /// cast. If there is already an implicit cast, merge into the existing one. |
| 790 | void ImpCastExprToType(Expr *&Expr, QualType Type); |
| 791 | |
Steve Naroff | 71b59a9 | 2007-06-04 22:22:31 +0000 | [diff] [blame] | 792 | // UsualUnaryConversions - promotes integers (C99 6.3.1.1p2) and converts |
Chris Lattner | 0846494 | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 793 | // functions and arrays to their respective pointers (C99 6.3.2.1). |
| 794 | Expr *UsualUnaryConversions(Expr *&expr); |
Eli Friedman | 3e11340 | 2008-05-27 03:33:27 +0000 | [diff] [blame] | 795 | |
| 796 | // UsualUnaryConversionType - Same as UsualUnaryConversions, but works |
| 797 | // on types instead of expressions |
| 798 | QualType UsualUnaryConversionType(QualType Ty); |
Steve Naroff | 3109001 | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 799 | |
| 800 | // DefaultFunctionArrayConversion - converts functions and arrays |
| 801 | // to their respective pointers (C99 6.3.2.1). |
| 802 | void DefaultFunctionArrayConversion(Expr *&expr); |
Steve Naroff | b8ea4fb | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 803 | |
Steve Naroff | 0b66158 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 804 | // DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that |
| 805 | // do not have a prototype. Integer promotions are performed on each |
| 806 | // argument, and arguments that have type float are promoted to double. |
Chris Lattner | 0846494 | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 807 | void DefaultArgumentPromotion(Expr *&Expr); |
Steve Naroff | 0b66158 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 808 | |
Steve Naroff | 71b59a9 | 2007-06-04 22:22:31 +0000 | [diff] [blame] | 809 | // UsualArithmeticConversions - performs the UsualUnaryConversions on it's |
| 810 | // operands and then handles various conversions that are common to binary |
| 811 | // operators (C99 6.3.1.8). If both operands aren't arithmetic, this |
| 812 | // routine returns the first non-arithmetic type found. The client is |
| 813 | // responsible for emitting appropriate error diagnostics. |
Steve Naroff | be4c4d1 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 814 | QualType UsualArithmeticConversions(Expr *&lExpr, Expr *&rExpr, |
| 815 | bool isCompAssign = false); |
Chris Lattner | 940cfeb | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 816 | |
| 817 | /// AssignConvertType - All of the 'assignment' semantic checks return this |
| 818 | /// enum to indicate whether the assignment was allowed. These checks are |
| 819 | /// done for simple assignments, as well as initialization, return from |
| 820 | /// function, argument passing, etc. The query is phrased in terms of a |
| 821 | /// source and destination type. |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 822 | enum AssignConvertType { |
Chris Lattner | 940cfeb | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 823 | /// Compatible - the types are compatible according to the standard. |
Steve Naroff | 17f76e0 | 2007-05-03 21:03:48 +0000 | [diff] [blame] | 824 | Compatible, |
Chris Lattner | 940cfeb | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 825 | |
| 826 | /// PointerToInt - The assignment converts a pointer to an int, which we |
| 827 | /// accept as an extension. |
| 828 | PointerToInt, |
| 829 | |
| 830 | /// IntToPointer - The assignment converts an int to a pointer, which we |
| 831 | /// accept as an extension. |
| 832 | IntToPointer, |
| 833 | |
| 834 | /// FunctionVoidPointer - The assignment is between a function pointer and |
| 835 | /// void*, which the standard doesn't allow, but we accept as an extension. |
Chris Lattner | 0a78843 | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 836 | FunctionVoidPointer, |
Chris Lattner | 940cfeb | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 837 | |
| 838 | /// IncompatiblePointer - The assignment is between two pointers types that |
| 839 | /// are not compatible, but we accept them as an extension. |
Steve Naroff | 1f4d727 | 2007-05-11 04:00:31 +0000 | [diff] [blame] | 840 | IncompatiblePointer, |
Chris Lattner | 940cfeb | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 841 | |
| 842 | /// CompatiblePointerDiscardsQualifiers - The assignment discards |
| 843 | /// c/v/r qualifiers, which we accept as an extension. |
| 844 | CompatiblePointerDiscardsQualifiers, |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 845 | |
Steve Naroff | 991e99d | 2008-09-04 15:31:07 +0000 | [diff] [blame] | 846 | /// IntToBlockPointer - The assignment converts an int to a block |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 847 | /// pointer. We disallow this. |
| 848 | IntToBlockPointer, |
| 849 | |
Steve Naroff | 991e99d | 2008-09-04 15:31:07 +0000 | [diff] [blame] | 850 | /// IncompatibleBlockPointer - The assignment is between two block |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 851 | /// pointers types that are not compatible. |
| 852 | IncompatibleBlockPointer, |
| 853 | |
Steve Naroff | 991e99d | 2008-09-04 15:31:07 +0000 | [diff] [blame] | 854 | /// BlockVoidPointer - The assignment is between a block pointer and |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 855 | /// void*, we accept for now. |
| 856 | BlockVoidPointer, |
Chris Lattner | 940cfeb | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 857 | |
| 858 | /// Incompatible - We reject this conversion outright, it is invalid to |
| 859 | /// represent it in the AST. |
| 860 | Incompatible |
Steve Naroff | 17f76e0 | 2007-05-03 21:03:48 +0000 | [diff] [blame] | 861 | }; |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 862 | |
| 863 | /// DiagnoseAssignmentResult - Emit a diagnostic, if required, for the |
| 864 | /// assignment conversion type specified by ConvTy. This returns true if the |
| 865 | /// conversion was invalid or false if the conversion was accepted. |
| 866 | bool DiagnoseAssignmentResult(AssignConvertType ConvTy, |
| 867 | SourceLocation Loc, |
| 868 | QualType DstType, QualType SrcType, |
| 869 | Expr *SrcExpr, const char *Flavor); |
| 870 | |
| 871 | /// CheckAssignmentConstraints - Perform type checking for assignment, |
| 872 | /// argument passing, variable initialization, and function return values. |
| 873 | /// This routine is only used by the following two methods. C99 6.5.16. |
| 874 | AssignConvertType CheckAssignmentConstraints(QualType lhs, QualType rhs); |
Steve Naroff | b8ea4fb | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 875 | |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 876 | // CheckSingleAssignmentConstraints - Currently used by ActOnCallExpr, |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 877 | // CheckAssignmentOperands, and ActOnReturnStmt. Prior to type checking, |
Steve Naroff | b8ea4fb | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 878 | // this routine performs the default function/array converions. |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 879 | AssignConvertType CheckSingleAssignmentConstraints(QualType lhs, |
| 880 | Expr *&rExpr); |
Steve Naroff | b8ea4fb | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 881 | // CheckCompoundAssignmentConstraints - Type check without performing any |
| 882 | // conversions. For compound assignments, the "Check...Operands" methods |
| 883 | // perform the necessary conversions. |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 884 | AssignConvertType CheckCompoundAssignmentConstraints(QualType lhs, |
| 885 | QualType rhs); |
Steve Naroff | b8ea4fb | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 886 | |
Steve Naroff | 98cf3e9 | 2007-06-06 18:38:38 +0000 | [diff] [blame] | 887 | // Helper function for CheckAssignmentConstraints (C99 6.5.16.1p1) |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 888 | AssignConvertType CheckPointerTypesForAssignment(QualType lhsType, |
| 889 | QualType rhsType); |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 890 | |
| 891 | // Helper function for CheckAssignmentConstraints involving two |
| 892 | // blcok pointer types. |
| 893 | AssignConvertType CheckBlockPointerTypesForAssignment(QualType lhsType, |
| 894 | QualType rhsType); |
Douglas Gregor | aa1e21d | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 895 | |
| 896 | bool IsStringLiteralToNonConstPointerConversion(Expr *From, QualType ToType); |
Steve Naroff | 9eb2465 | 2007-05-02 21:58:15 +0000 | [diff] [blame] | 897 | |
Steve Naroff | 8eeeb13 | 2007-05-08 21:09:37 +0000 | [diff] [blame] | 898 | /// the following "Check" methods will return a valid/converted QualType |
| 899 | /// or a null QualType (indicating an error diagnostic was issued). |
| 900 | |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 901 | /// type checking binary operators (subroutines of ActOnBinOp). |
Chris Lattner | 5c11c41 | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 902 | inline QualType InvalidOperands(SourceLocation l, Expr *&lex, Expr *&rex); |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 903 | inline QualType CheckMultiplyDivideOperands( // C99 6.5.5 |
Steve Naroff | be4c4d1 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 904 | Expr *&lex, Expr *&rex, SourceLocation OpLoc, bool isCompAssign = false); |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 905 | inline QualType CheckRemainderOperands( // C99 6.5.5 |
Steve Naroff | be4c4d1 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 906 | Expr *&lex, Expr *&rex, SourceLocation OpLoc, bool isCompAssign = false); |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 907 | inline QualType CheckAdditionOperands( // C99 6.5.6 |
Steve Naroff | be4c4d1 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 908 | Expr *&lex, Expr *&rex, SourceLocation OpLoc, bool isCompAssign = false); |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 909 | inline QualType CheckSubtractionOperands( // C99 6.5.6 |
Steve Naroff | be4c4d1 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 910 | Expr *&lex, Expr *&rex, SourceLocation OpLoc, bool isCompAssign = false); |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 911 | inline QualType CheckShiftOperands( // C99 6.5.7 |
Steve Naroff | be4c4d1 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 912 | Expr *&lex, Expr *&rex, SourceLocation OpLoc, bool isCompAssign = false); |
Chris Lattner | b620c34 | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 913 | inline QualType CheckCompareOperands( // C99 6.5.8/9 |
| 914 | Expr *&lex, Expr *&rex, SourceLocation OpLoc, bool isRelational); |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 915 | inline QualType CheckBitwiseOperands( // C99 6.5.[10...12] |
Steve Naroff | be4c4d1 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 916 | Expr *&lex, Expr *&rex, SourceLocation OpLoc, bool isCompAssign = false); |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 917 | inline QualType CheckLogicalOperands( // C99 6.5.[13,14] |
Steve Naroff | 7a5af78 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 918 | Expr *&lex, Expr *&rex, SourceLocation OpLoc); |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 919 | // CheckAssignmentOperands is used for both simple and compound assignment. |
| 920 | // For simple assignment, pass both expressions and a null converted type. |
| 921 | // For compound assignment, pass both expressions and the converted type. |
| 922 | inline QualType CheckAssignmentOperands( // C99 6.5.16.[1,2] |
Steve Naroff | 0c1c7ed | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 923 | Expr *lex, Expr *&rex, SourceLocation OpLoc, QualType convertedType); |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 924 | inline QualType CheckCommaOperands( // C99 6.5.17 |
Steve Naroff | 7a5af78 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 925 | Expr *&lex, Expr *&rex, SourceLocation OpLoc); |
Steve Naroff | f8a28c5 | 2007-05-15 20:29:32 +0000 | [diff] [blame] | 926 | inline QualType CheckConditionalOperands( // C99 6.5.15 |
Steve Naroff | 7a5af78 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 927 | Expr *&cond, Expr *&lhs, Expr *&rhs, SourceLocation questionLoc); |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 928 | |
| 929 | /// type checking for vector binary operators. |
| 930 | inline QualType CheckVectorOperands(SourceLocation l, Expr *&lex, Expr *&rex); |
| 931 | inline QualType CheckVectorCompareOperands(Expr *&lex, Expr *&rx, |
| 932 | SourceLocation l, bool isRel); |
Steve Naroff | 95af013 | 2007-03-30 23:47:58 +0000 | [diff] [blame] | 933 | |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 934 | /// type checking unary operators (subroutines of ActOnUnaryOp). |
Steve Naroff | 9358c71 | 2007-05-27 23:58:33 +0000 | [diff] [blame] | 935 | /// C99 6.5.3.1, 6.5.3.2, 6.5.3.4 |
Steve Naroff | 71ce2e0 | 2007-05-18 22:53:50 +0000 | [diff] [blame] | 936 | QualType CheckIncrementDecrementOperand(Expr *op, SourceLocation OpLoc); |
| 937 | QualType CheckAddressOfOperand(Expr *op, SourceLocation OpLoc); |
| 938 | QualType CheckIndirectionOperand(Expr *op, SourceLocation OpLoc); |
Chris Lattner | 3f375d0 | 2008-07-25 21:45:37 +0000 | [diff] [blame] | 939 | QualType CheckSizeOfAlignOfOperand(QualType type, SourceLocation OpLoc, |
| 940 | const SourceRange &R, bool isSizeof); |
Chris Lattner | 74ed76b | 2007-08-24 21:41:10 +0000 | [diff] [blame] | 941 | QualType CheckRealImagOperand(Expr *&Op, SourceLocation OpLoc); |
Steve Naroff | f8fd09e | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 942 | |
| 943 | /// type checking primary expressions. |
Nate Begeman | ce4d7fc | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 944 | QualType CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc, |
Steve Naroff | f8fd09e | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 945 | IdentifierInfo &Comp, SourceLocation CmpLoc); |
| 946 | |
Steve Naroff | 2fea139 | 2007-09-02 02:04:30 +0000 | [diff] [blame] | 947 | /// type checking declaration initializers (C99 6.7.8) |
Steve Naroff | f8ecff2 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 948 | friend class InitListChecker; |
Steve Naroff | 98f7203 | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 949 | bool CheckInitializerTypes(Expr *&simpleInit_or_initList, QualType &declType); |
| 950 | bool CheckSingleInitializer(Expr *&simpleInit, QualType declType); |
Steve Naroff | 98f7203 | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 951 | bool CheckForConstantInitializer(Expr *e, QualType t); |
Eli Friedman | d5a55bd | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 952 | bool CheckArithmeticConstantExpression(const Expr* e); |
| 953 | bool CheckAddressConstantExpression(const Expr* e); |
| 954 | bool CheckAddressConstantExpressionLValue(const Expr* e); |
Steve Naroff | 91f7808 | 2007-12-10 22:44:33 +0000 | [diff] [blame] | 955 | |
Steve Naroff | af2a022 | 2008-01-22 00:55:40 +0000 | [diff] [blame] | 956 | StringLiteral *IsStringLiteralInit(Expr *Init, QualType DeclType); |
| 957 | bool CheckStringLiteralInit(StringLiteral *strLiteral, QualType &DeclT); |
Argyrios Kyrtzidis | 2ade390 | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 958 | |
| 959 | /// CheckCastTypes - Check type constraints for casting between types. |
Daniel Dunbar | 94834d8 | 2008-08-20 03:55:42 +0000 | [diff] [blame] | 960 | bool CheckCastTypes(SourceRange TyRange, QualType CastTy, Expr *&CastExpr); |
Steve Naroff | af2a022 | 2008-01-22 00:55:40 +0000 | [diff] [blame] | 961 | |
Anders Carlsson | 24c5995 | 2007-11-27 07:16:40 +0000 | [diff] [blame] | 962 | // CheckVectorCast - check type constraints for vectors. |
| 963 | // Since vectors are an extension, there are no C standard reference for this. |
| 964 | // We allow casting between vectors and integer datatypes of the same size. |
Anders Carlsson | de71adf | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 965 | // returns true if the cast is invalid |
| 966 | bool CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty); |
| 967 | |
Daniel Dunbar | aa9326c | 2008-09-11 00:01:56 +0000 | [diff] [blame] | 968 | /// CheckMessageArgumentTypes - Check types in an Obj-C message send. |
| 969 | /// \param Method - May be null. |
| 970 | /// \param [out] ReturnType - The return type of the send. |
| 971 | /// \return true iff there were any incompatible types. |
Daniel Dunbar | ce05c8e | 2008-09-11 00:50:25 +0000 | [diff] [blame] | 972 | bool CheckMessageArgumentTypes(Expr **Args, unsigned NumArgs, Selector Sel, |
Daniel Dunbar | aa9326c | 2008-09-11 00:01:56 +0000 | [diff] [blame] | 973 | ObjCMethodDecl *Method, const char *PrefixStr, |
| 974 | SourceLocation lbrac, SourceLocation rbrac, |
| 975 | QualType &ReturnType); |
Argyrios Kyrtzidis | 7620ee4 | 2008-09-10 02:17:11 +0000 | [diff] [blame] | 976 | |
| 977 | /// CheckCXXBooleanCondition - Returns true if conversion to bool is invalid. |
| 978 | bool CheckCXXBooleanCondition(Expr *&CondExpr); |
Steve Naroff | 077c83b | 2007-10-16 23:12:48 +0000 | [diff] [blame] | 979 | |
Chris Lattner | fc1c44a | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 980 | /// ConvertIntegerToTypeWarnOnOverflow - Convert the specified APInt to have |
| 981 | /// the specified width and sign. If an overflow occurs, detect it and emit |
| 982 | /// the specified diagnostic. |
| 983 | void ConvertIntegerToTypeWarnOnOverflow(llvm::APSInt &OldVal, |
| 984 | unsigned NewWidth, bool NewSign, |
| 985 | SourceLocation Loc, unsigned DiagID); |
| 986 | |
Chris Lattner | 2a3569b | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 987 | bool ObjCQualifiedIdTypesAreCompatible(QualType LHS, QualType RHS, |
| 988 | bool ForCompare); |
| 989 | |
| 990 | |
Anders Carlsson | 7e13ab8 | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 991 | void InitBuiltinVaListType(); |
Eli Friedman | 149614b | 2008-06-03 21:01:11 +0000 | [diff] [blame] | 992 | |
| 993 | // Helper method to turn variable array types into |
| 994 | // constant array types in certain situations which would otherwise |
| 995 | // be errors |
| 996 | QualType TryFixInvalidVariablyModifiedType(QualType T); |
Anders Carlsson | 7e13ab8 | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 997 | |
Chris Lattner | b87b1b3 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 998 | //===--------------------------------------------------------------------===// |
| 999 | // Extra semantic analysis beyond the C type system |
Chris Lattner | 0846494 | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 1000 | private: |
Eli Friedman | a1b4ed8 | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 1001 | Action::ExprResult CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall); |
Chris Lattner | 0846494 | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 1002 | bool CheckBuiltinCFStringArgument(Expr* Arg); |
| 1003 | bool SemaBuiltinVAStart(CallExpr *TheCall); |
| 1004 | bool SemaBuiltinUnorderedCompare(CallExpr *TheCall); |
Eli Friedman | f835303 | 2008-05-20 08:23:37 +0000 | [diff] [blame] | 1005 | bool SemaBuiltinStackAddress(CallExpr *TheCall); |
Eli Friedman | a1b4ed8 | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 1006 | Action::ExprResult SemaBuiltinShuffleVector(CallExpr *TheCall); |
Daniel Dunbar | b725726 | 2008-07-21 22:59:13 +0000 | [diff] [blame] | 1007 | bool SemaBuiltinPrefetch(CallExpr *TheCall); |
Daniel Dunbar | b0d34c8 | 2008-09-03 21:13:56 +0000 | [diff] [blame] | 1008 | bool SemaBuiltinObjectSize(CallExpr *TheCall); |
Chris Lattner | 0846494 | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 1009 | void CheckPrintfArguments(CallExpr *TheCall, |
| 1010 | bool HasVAListArg, unsigned format_idx); |
Ted Kremenek | cff94fa | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 1011 | void CheckReturnStackAddr(Expr *RetValExp, QualType lhsType, |
| 1012 | SourceLocation ReturnLoc); |
Ted Kremenek | 43fb8b0 | 2007-11-25 00:58:00 +0000 | [diff] [blame] | 1013 | void CheckFloatComparison(SourceLocation loc, Expr* lex, Expr* rex); |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 1014 | }; |
| 1015 | |
Steve Naroff | f8ecff2 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1016 | class InitListChecker { |
| 1017 | Sema *SemaRef; |
| 1018 | bool hadError; |
| 1019 | |
| 1020 | void CheckImplicitInitList(InitListExpr *ParentIList, QualType T, |
| 1021 | unsigned &Index); |
Steve Naroff | 125d73d | 2008-05-06 00:23:44 +0000 | [diff] [blame] | 1022 | void CheckExplicitInitList(InitListExpr *IList, QualType &T, |
Steve Naroff | f8ecff2 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1023 | unsigned &Index); |
| 1024 | |
Eli Friedman | 23a9e31 | 2008-05-19 19:16:24 +0000 | [diff] [blame] | 1025 | void CheckListElementTypes(InitListExpr *IList, QualType &DeclType, |
| 1026 | unsigned &Index); |
| 1027 | void CheckSubElementType(InitListExpr *IList, QualType ElemType, |
| 1028 | unsigned &Index); |
Steve Naroff | f8ecff2 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1029 | // FIXME: Does DeclType need to be a reference type? |
| 1030 | void CheckScalarType(InitListExpr *IList, QualType &DeclType, |
| 1031 | unsigned &Index); |
| 1032 | void CheckVectorType(InitListExpr *IList, QualType DeclType, unsigned &Index); |
| 1033 | void CheckStructUnionTypes(InitListExpr *IList, QualType DeclType, |
Eli Friedman | 23a9e31 | 2008-05-19 19:16:24 +0000 | [diff] [blame] | 1034 | unsigned &Index); |
Steve Naroff | f8ecff2 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1035 | void CheckArrayType(InitListExpr *IList, QualType &DeclType, unsigned &Index); |
| 1036 | |
| 1037 | int numArrayElements(QualType DeclType); |
| 1038 | int numStructUnionElements(QualType DeclType); |
| 1039 | public: |
| 1040 | InitListChecker(Sema *S, InitListExpr *IL, QualType &T); |
| 1041 | bool HadError() { return hadError; } |
| 1042 | }; |
| 1043 | |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 1044 | /// BlockSemaInfo - When a block is being parsed, this contains information |
| 1045 | /// about the block. It is pointed to from Sema::CurBlock. |
| 1046 | struct BlockSemaInfo { |
| 1047 | llvm::SmallVector<ParmVarDecl*, 8> Params; |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 1048 | bool hasPrototype; |
| 1049 | bool isVariadic; |
| 1050 | |
| 1051 | /// TheScope - This is the scope for the block itself, which contains |
| 1052 | /// arguments etc. |
| 1053 | Scope *TheScope; |
| 1054 | |
| 1055 | /// ReturnType - This will get set to block result type, by looking at |
| 1056 | /// return types, if any, in the block body. |
| 1057 | Type *ReturnType; |
| 1058 | |
| 1059 | /// PrevBlockInfo - If this is nested inside another block, this points |
| 1060 | /// to the outer block. |
| 1061 | BlockSemaInfo *PrevBlockInfo; |
| 1062 | }; |
| 1063 | |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 1064 | |
| 1065 | } // end namespace clang |
Chris Lattner | 7cee11f | 2006-11-03 06:42:29 +0000 | [diff] [blame] | 1066 | |
| 1067 | #endif |