Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by Chris Lattner and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements semantic analysis for declarations. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "Sema.h" |
| 15 | #include "clang/AST/ASTContext.h" |
| 16 | #include "clang/AST/Builtins.h" |
| 17 | #include "clang/AST/Decl.h" |
Steve Naroff | 980e508 | 2007-10-01 19:00:59 +0000 | [diff] [blame] | 18 | #include "clang/AST/DeclObjC.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 19 | #include "clang/AST/Expr.h" |
| 20 | #include "clang/AST/Type.h" |
| 21 | #include "clang/Parse/DeclSpec.h" |
| 22 | #include "clang/Parse/Scope.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 23 | #include "clang/Basic/LangOptions.h" |
| 24 | #include "clang/Basic/TargetInfo.h" |
Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/SmallString.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 26 | #include "llvm/ADT/SmallSet.h" |
Fariborz Jahanian | 85ff264 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 27 | #include "llvm/ADT/DenseSet.h" |
Steve Naroff | 8ee529b | 2007-10-31 18:42:27 +0000 | [diff] [blame] | 28 | #include "clang/Lex/Preprocessor.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 29 | using namespace clang; |
| 30 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 31 | Sema::DeclTy *Sema::isTypeName(const IdentifierInfo &II, Scope *S) const { |
Fariborz Jahanian | bece4ac | 2007-10-12 16:34:10 +0000 | [diff] [blame] | 32 | Decl *IIDecl = II.getFETokenInfo<Decl>(); |
| 33 | // Find first occurance of none-tagged declaration |
| 34 | while(IIDecl && IIDecl->getIdentifierNamespace() != Decl::IDNS_Ordinary) |
| 35 | IIDecl = cast<ScopedDecl>(IIDecl)->getNext(); |
| 36 | if (!IIDecl) |
| 37 | return 0; |
| 38 | if (isa<TypedefDecl>(IIDecl) || isa<ObjcInterfaceDecl>(IIDecl)) |
| 39 | return IIDecl; |
| 40 | if (ObjcCompatibleAliasDecl *ADecl = |
| 41 | dyn_cast<ObjcCompatibleAliasDecl>(IIDecl)) |
| 42 | return ADecl->getClassInterface(); |
Steve Naroff | 3536b44 | 2007-09-06 21:24:23 +0000 | [diff] [blame] | 43 | return 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 44 | } |
| 45 | |
Steve Naroff | b216c88 | 2007-10-09 22:01:59 +0000 | [diff] [blame] | 46 | void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) { |
Chris Lattner | 31e0572 | 2007-08-26 06:24:45 +0000 | [diff] [blame] | 47 | if (S->decl_empty()) return; |
| 48 | assert((S->getFlags() & Scope::DeclScope) &&"Scope shouldn't contain decls!"); |
| 49 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 50 | for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end(); |
| 51 | I != E; ++I) { |
Steve Naroff | c752d04 | 2007-09-13 18:10:37 +0000 | [diff] [blame] | 52 | Decl *TmpD = static_cast<Decl*>(*I); |
| 53 | assert(TmpD && "This decl didn't get pushed??"); |
| 54 | ScopedDecl *D = dyn_cast<ScopedDecl>(TmpD); |
| 55 | assert(D && "This decl isn't a ScopedDecl?"); |
| 56 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 57 | IdentifierInfo *II = D->getIdentifier(); |
| 58 | if (!II) continue; |
| 59 | |
| 60 | // Unlink this decl from the identifier. Because the scope contains decls |
| 61 | // in an unordered collection, and because we have multiple identifier |
| 62 | // namespaces (e.g. tag, normal, label),the decl may not be the first entry. |
| 63 | if (II->getFETokenInfo<Decl>() == D) { |
| 64 | // Normal case, no multiple decls in different namespaces. |
| 65 | II->setFETokenInfo(D->getNext()); |
| 66 | } else { |
| 67 | // Scan ahead. There are only three namespaces in C, so this loop can |
| 68 | // never execute more than 3 times. |
Steve Naroff | c752d04 | 2007-09-13 18:10:37 +0000 | [diff] [blame] | 69 | ScopedDecl *SomeDecl = II->getFETokenInfo<ScopedDecl>(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 70 | while (SomeDecl->getNext() != D) { |
| 71 | SomeDecl = SomeDecl->getNext(); |
| 72 | assert(SomeDecl && "Didn't find this decl on its identifier's chain!"); |
| 73 | } |
| 74 | SomeDecl->setNext(D->getNext()); |
| 75 | } |
| 76 | |
| 77 | // This will have to be revisited for C++: there we want to nest stuff in |
| 78 | // namespace decls etc. Even for C, we might want a top-level translation |
| 79 | // unit decl or something. |
| 80 | if (!CurFunctionDecl) |
| 81 | continue; |
| 82 | |
| 83 | // Chain this decl to the containing function, it now owns the memory for |
| 84 | // the decl. |
| 85 | D->setNext(CurFunctionDecl->getDeclChain()); |
| 86 | CurFunctionDecl->setDeclChain(D); |
| 87 | } |
| 88 | } |
| 89 | |
Fariborz Jahanian | 4cabdfc | 2007-10-12 19:38:20 +0000 | [diff] [blame] | 90 | /// LookupInterfaceDecl - Lookup interface declaration in the scope chain. |
| 91 | /// Return the first declaration found (which may or may not be a class |
Fariborz Jahanian | 3fe44e4 | 2007-10-12 19:53:08 +0000 | [diff] [blame] | 92 | /// declaration. Caller is responsible for handling the none-class case. |
Fariborz Jahanian | 4cabdfc | 2007-10-12 19:38:20 +0000 | [diff] [blame] | 93 | /// Bypassing the alias of a class by returning the aliased class. |
| 94 | ScopedDecl *Sema::LookupInterfaceDecl(IdentifierInfo *ClassName) { |
| 95 | ScopedDecl *IDecl; |
| 96 | // Scan up the scope chain looking for a decl that matches this identifier |
| 97 | // that is in the appropriate namespace. |
| 98 | for (IDecl = ClassName->getFETokenInfo<ScopedDecl>(); IDecl; |
| 99 | IDecl = IDecl->getNext()) |
| 100 | if (IDecl->getIdentifierNamespace() == Decl::IDNS_Ordinary) |
| 101 | break; |
| 102 | |
| 103 | if (ObjcCompatibleAliasDecl *ADecl = |
| 104 | dyn_cast_or_null<ObjcCompatibleAliasDecl>(IDecl)) |
| 105 | return ADecl->getClassInterface(); |
| 106 | return IDecl; |
| 107 | } |
| 108 | |
Fariborz Jahanian | 1b6351f | 2007-09-29 17:04:06 +0000 | [diff] [blame] | 109 | /// getObjcInterfaceDecl - Look up a for a class declaration in the scope. |
Fariborz Jahanian | 9d048ff | 2007-09-29 00:54:24 +0000 | [diff] [blame] | 110 | /// return 0 if one not found. |
Steve Naroff | 6a8a9a4 | 2007-10-02 20:01:56 +0000 | [diff] [blame] | 111 | ObjcInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *Id) { |
Fariborz Jahanian | 4cabdfc | 2007-10-12 19:38:20 +0000 | [diff] [blame] | 112 | ScopedDecl *IdDecl = LookupInterfaceDecl(Id); |
| 113 | return cast_or_null<ObjcInterfaceDecl>(IdDecl); |
Fariborz Jahanian | 9d048ff | 2007-09-29 00:54:24 +0000 | [diff] [blame] | 114 | } |
| 115 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 116 | /// LookupScopedDecl - Look up the inner-most declaration in the specified |
| 117 | /// namespace. |
Steve Naroff | c752d04 | 2007-09-13 18:10:37 +0000 | [diff] [blame] | 118 | ScopedDecl *Sema::LookupScopedDecl(IdentifierInfo *II, unsigned NSI, |
| 119 | SourceLocation IdLoc, Scope *S) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 120 | if (II == 0) return 0; |
| 121 | Decl::IdentifierNamespace NS = (Decl::IdentifierNamespace)NSI; |
| 122 | |
| 123 | // Scan up the scope chain looking for a decl that matches this identifier |
| 124 | // that is in the appropriate namespace. This search should not take long, as |
| 125 | // shadowing of names is uncommon, and deep shadowing is extremely uncommon. |
Steve Naroff | c752d04 | 2007-09-13 18:10:37 +0000 | [diff] [blame] | 126 | for (ScopedDecl *D = II->getFETokenInfo<ScopedDecl>(); D; D = D->getNext()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 127 | if (D->getIdentifierNamespace() == NS) |
| 128 | return D; |
| 129 | |
| 130 | // If we didn't find a use of this identifier, and if the identifier |
| 131 | // corresponds to a compiler builtin, create the decl object for the builtin |
| 132 | // now, injecting it into translation unit scope, and return it. |
| 133 | if (NS == Decl::IDNS_Ordinary) { |
| 134 | // If this is a builtin on some other target, or if this builtin varies |
| 135 | // across targets (e.g. in type), emit a diagnostic and mark the translation |
| 136 | // unit non-portable for using it. |
| 137 | if (II->isNonPortableBuiltin()) { |
| 138 | // Only emit this diagnostic once for this builtin. |
| 139 | II->setNonPortableBuiltin(false); |
| 140 | Context.Target.DiagnoseNonPortability(IdLoc, |
| 141 | diag::port_target_builtin_use); |
| 142 | } |
| 143 | // If this is a builtin on this (or all) targets, create the decl. |
| 144 | if (unsigned BuiltinID = II->getBuiltinID()) |
| 145 | return LazilyCreateBuiltin(II, BuiltinID, S); |
| 146 | } |
| 147 | return 0; |
| 148 | } |
| 149 | |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 150 | void Sema::InitBuiltinVaListType() |
| 151 | { |
| 152 | if (!Context.getBuiltinVaListType().isNull()) |
| 153 | return; |
| 154 | |
| 155 | IdentifierInfo *VaIdent = &Context.Idents.get("__builtin_va_list"); |
| 156 | ScopedDecl *VaDecl = LookupScopedDecl(VaIdent, Decl::IDNS_Ordinary, |
| 157 | SourceLocation(), TUScope); |
Steve Naroff | 733002f | 2007-10-18 22:17:45 +0000 | [diff] [blame] | 158 | TypedefDecl *VaTypedef = cast<TypedefDecl>(VaDecl); |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 159 | Context.setBuiltinVaListType(Context.getTypedefType(VaTypedef)); |
| 160 | } |
| 161 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 162 | /// LazilyCreateBuiltin - The specified Builtin-ID was first used at file scope. |
| 163 | /// lazily create a decl for it. |
Chris Lattner | 22b73ba | 2007-10-10 23:42:28 +0000 | [diff] [blame] | 164 | ScopedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid, |
| 165 | Scope *S) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 166 | Builtin::ID BID = (Builtin::ID)bid; |
| 167 | |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 168 | if (BID == Builtin::BI__builtin_va_start || |
Anders Carlsson | 793680e | 2007-10-12 23:56:29 +0000 | [diff] [blame] | 169 | BID == Builtin::BI__builtin_va_copy || |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 170 | BID == Builtin::BI__builtin_va_end) |
| 171 | InitBuiltinVaListType(); |
| 172 | |
Anders Carlsson | b2cf357 | 2007-10-11 01:00:40 +0000 | [diff] [blame] | 173 | QualType R = Context.BuiltinInfo.GetBuiltinType(BID, Context); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 174 | FunctionDecl *New = new FunctionDecl(SourceLocation(), II, R, |
Chris Lattner | 70c8b2e | 2007-08-26 04:02:13 +0000 | [diff] [blame] | 175 | FunctionDecl::Extern, false, 0); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 176 | |
| 177 | // Find translation-unit scope to insert this function into. |
Chris Lattner | 31e0572 | 2007-08-26 06:24:45 +0000 | [diff] [blame] | 178 | if (Scope *FnS = S->getFnParent()) |
| 179 | S = FnS->getParent(); // Skip all scopes in a function at once. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 180 | while (S->getParent()) |
| 181 | S = S->getParent(); |
| 182 | S->AddDecl(New); |
| 183 | |
| 184 | // Add this decl to the end of the identifier info. |
Steve Naroff | c752d04 | 2007-09-13 18:10:37 +0000 | [diff] [blame] | 185 | if (ScopedDecl *LastDecl = II->getFETokenInfo<ScopedDecl>()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 186 | // Scan until we find the last (outermost) decl in the id chain. |
| 187 | while (LastDecl->getNext()) |
| 188 | LastDecl = LastDecl->getNext(); |
| 189 | // Insert before (outside) it. |
| 190 | LastDecl->setNext(New); |
| 191 | } else { |
| 192 | II->setFETokenInfo(New); |
| 193 | } |
| 194 | // Make sure clients iterating over decls see this. |
| 195 | LastInGroupList.push_back(New); |
| 196 | |
| 197 | return New; |
| 198 | } |
| 199 | |
| 200 | /// MergeTypeDefDecl - We just parsed a typedef 'New' which has the same name |
| 201 | /// and scope as a previous declaration 'Old'. Figure out how to resolve this |
| 202 | /// situation, merging decls or emitting diagnostics as appropriate. |
| 203 | /// |
Steve Naroff | 8e74c93 | 2007-09-13 21:41:19 +0000 | [diff] [blame] | 204 | TypedefDecl *Sema::MergeTypeDefDecl(TypedefDecl *New, ScopedDecl *OldD) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 205 | // Verify the old decl was also a typedef. |
| 206 | TypedefDecl *Old = dyn_cast<TypedefDecl>(OldD); |
| 207 | if (!Old) { |
| 208 | Diag(New->getLocation(), diag::err_redefinition_different_kind, |
| 209 | New->getName()); |
| 210 | Diag(OldD->getLocation(), diag::err_previous_definition); |
| 211 | return New; |
| 212 | } |
| 213 | |
Steve Naroff | 8ee529b | 2007-10-31 18:42:27 +0000 | [diff] [blame] | 214 | // Allow multiple definitions for ObjC built-in typedefs. |
| 215 | // FIXME: Verify the underlying types are equivalent! |
| 216 | if (PP.getLangOptions().ObjC1 && isBuiltinObjcType(New)) |
| 217 | return Old; |
| 218 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 219 | // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope. |
| 220 | // TODO: This is totally simplistic. It should handle merging functions |
| 221 | // together etc, merging extern int X; int X; ... |
| 222 | Diag(New->getLocation(), diag::err_redefinition, New->getName()); |
| 223 | Diag(Old->getLocation(), diag::err_previous_definition); |
| 224 | return New; |
| 225 | } |
| 226 | |
| 227 | /// MergeFunctionDecl - We just parsed a function 'New' which has the same name |
| 228 | /// and scope as a previous declaration 'Old'. Figure out how to resolve this |
| 229 | /// situation, merging decls or emitting diagnostics as appropriate. |
| 230 | /// |
Steve Naroff | 8e74c93 | 2007-09-13 21:41:19 +0000 | [diff] [blame] | 231 | FunctionDecl *Sema::MergeFunctionDecl(FunctionDecl *New, ScopedDecl *OldD) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 232 | // Verify the old decl was also a function. |
| 233 | FunctionDecl *Old = dyn_cast<FunctionDecl>(OldD); |
| 234 | if (!Old) { |
| 235 | Diag(New->getLocation(), diag::err_redefinition_different_kind, |
| 236 | New->getName()); |
| 237 | Diag(OldD->getLocation(), diag::err_previous_definition); |
| 238 | return New; |
| 239 | } |
| 240 | |
| 241 | // This is not right, but it's a start. If 'Old' is a function prototype with |
| 242 | // the same type as 'New', silently allow this. FIXME: We should link up decl |
| 243 | // objects here. |
| 244 | if (Old->getBody() == 0 && |
| 245 | Old->getCanonicalType() == New->getCanonicalType()) { |
| 246 | return New; |
| 247 | } |
Chris Lattner | e3995fe | 2007-11-06 06:07:26 +0000 | [diff] [blame] | 248 | |
| 249 | if (New->getBody() == 0 && |
| 250 | Old->getCanonicalType() == New->getCanonicalType()) { |
| 251 | return 0; |
| 252 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 253 | |
| 254 | // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope. |
| 255 | // TODO: This is totally simplistic. It should handle merging functions |
| 256 | // together etc, merging extern int X; int X; ... |
| 257 | Diag(New->getLocation(), diag::err_redefinition, New->getName()); |
| 258 | Diag(Old->getLocation(), diag::err_previous_definition); |
| 259 | return New; |
| 260 | } |
| 261 | |
Chris Lattner | fcc2d26 | 2007-11-06 04:28:31 +0000 | [diff] [blame] | 262 | |
| 263 | /// hasUndefinedLength - Used by equivalentArrayTypes to determine whether the |
| 264 | /// the outermost VariableArrayType has no size defined. |
| 265 | static bool hasUndefinedLength(const ArrayType *Array) { |
| 266 | const VariableArrayType *VAT = Array->getAsVariableArrayType(); |
| 267 | return VAT && !VAT->getSizeExpr(); |
| 268 | } |
| 269 | |
| 270 | /// equivalentArrayTypes - Used to determine whether two array types are |
| 271 | /// equivalent. |
| 272 | /// We need to check this explicitly as an incomplete array definition is |
| 273 | /// considered a VariableArrayType, so will not match a complete array |
| 274 | /// definition that would be otherwise equivalent. |
| 275 | static bool areEquivalentArrayTypes(QualType NewQType, QualType OldQType) { |
| 276 | const ArrayType *NewAT = NewQType->getAsArrayType(); |
| 277 | const ArrayType *OldAT = OldQType->getAsArrayType(); |
| 278 | |
| 279 | if (!NewAT || !OldAT) |
| 280 | return false; |
| 281 | |
| 282 | // If either (or both) array types in incomplete we need to strip off the |
| 283 | // outer VariableArrayType. Once the outer VAT is removed the remaining |
| 284 | // types must be identical if the array types are to be considered |
| 285 | // equivalent. |
| 286 | // eg. int[][1] and int[1][1] become |
| 287 | // VAT(null, CAT(1, int)) and CAT(1, CAT(1, int)) |
| 288 | // removing the outermost VAT gives |
| 289 | // CAT(1, int) and CAT(1, int) |
| 290 | // which are equal, therefore the array types are equivalent. |
| 291 | if (hasUndefinedLength(NewAT) || hasUndefinedLength(OldAT)) { |
| 292 | if (NewAT->getIndexTypeQualifier() != OldAT->getIndexTypeQualifier()) |
| 293 | return false; |
| 294 | NewQType = NewAT->getElementType(); |
| 295 | OldQType = OldAT->getElementType(); |
| 296 | } |
| 297 | |
| 298 | return NewQType == OldQType; |
| 299 | } |
| 300 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 301 | /// MergeVarDecl - We just parsed a variable 'New' which has the same name |
| 302 | /// and scope as a previous declaration 'Old'. Figure out how to resolve this |
| 303 | /// situation, merging decls or emitting diagnostics as appropriate. |
| 304 | /// |
| 305 | /// FIXME: Need to carefully consider tentative definition rules (C99 6.9.2p2). |
| 306 | /// For example, we incorrectly complain about i1, i4 from C99 6.9.2p4. |
| 307 | /// |
Steve Naroff | 8e74c93 | 2007-09-13 21:41:19 +0000 | [diff] [blame] | 308 | VarDecl *Sema::MergeVarDecl(VarDecl *New, ScopedDecl *OldD) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 309 | // Verify the old decl was also a variable. |
| 310 | VarDecl *Old = dyn_cast<VarDecl>(OldD); |
| 311 | if (!Old) { |
| 312 | Diag(New->getLocation(), diag::err_redefinition_different_kind, |
| 313 | New->getName()); |
| 314 | Diag(OldD->getLocation(), diag::err_previous_definition); |
| 315 | return New; |
| 316 | } |
Steve Naroff | fb22d96 | 2007-08-30 01:06:46 +0000 | [diff] [blame] | 317 | FileVarDecl *OldFSDecl = dyn_cast<FileVarDecl>(Old); |
| 318 | FileVarDecl *NewFSDecl = dyn_cast<FileVarDecl>(New); |
| 319 | bool OldIsTentative = false; |
| 320 | |
| 321 | if (OldFSDecl && NewFSDecl) { // C99 6.9.2 |
| 322 | // Handle C "tentative" external object definitions. FIXME: finish! |
| 323 | if (!OldFSDecl->getInit() && |
| 324 | (OldFSDecl->getStorageClass() == VarDecl::None || |
| 325 | OldFSDecl->getStorageClass() == VarDecl::Static)) |
| 326 | OldIsTentative = true; |
| 327 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 328 | // Verify the types match. |
Chris Lattner | fcc2d26 | 2007-11-06 04:28:31 +0000 | [diff] [blame] | 329 | if (Old->getCanonicalType() != New->getCanonicalType() && |
| 330 | !areEquivalentArrayTypes(New->getCanonicalType(), Old->getCanonicalType())) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 331 | Diag(New->getLocation(), diag::err_redefinition, New->getName()); |
| 332 | Diag(Old->getLocation(), diag::err_previous_definition); |
| 333 | return New; |
| 334 | } |
| 335 | // We've verified the types match, now check if Old is "extern". |
| 336 | if (Old->getStorageClass() != VarDecl::Extern) { |
| 337 | Diag(New->getLocation(), diag::err_redefinition, New->getName()); |
| 338 | Diag(Old->getLocation(), diag::err_previous_definition); |
| 339 | } |
| 340 | return New; |
| 341 | } |
| 342 | |
| 343 | /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with |
| 344 | /// no declarator (e.g. "struct foo;") is parsed. |
| 345 | Sema::DeclTy *Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) { |
| 346 | // TODO: emit error on 'int;' or 'const enum foo;'. |
| 347 | // TODO: emit error on 'typedef int;' |
| 348 | // if (!DS.isMissingDeclaratorOk()) Diag(...); |
| 349 | |
| 350 | return 0; |
| 351 | } |
| 352 | |
Anders Carlsson | 1a86b33 | 2007-10-17 00:52:43 +0000 | [diff] [blame] | 353 | bool Sema::CheckSingleInitializer(Expr *&Init, bool isStatic, |
| 354 | QualType DeclType) { |
| 355 | SourceLocation loc; |
| 356 | |
| 357 | // FIXME: Remove the isReferenceType check and handle assignment |
| 358 | // to a reference. |
| 359 | if (isStatic && !DeclType->isReferenceType() && |
| 360 | !Init->isConstantExpr(Context, &loc)) { // C99 6.7.8p4. |
| 361 | Diag(loc, diag::err_init_element_not_constant, Init->getSourceRange()); |
| 362 | return true; |
| 363 | } |
| 364 | |
Steve Naroff | f009063 | 2007-09-02 02:04:30 +0000 | [diff] [blame] | 365 | AssignmentCheckResult result; |
Anders Carlsson | 1a86b33 | 2007-10-17 00:52:43 +0000 | [diff] [blame] | 366 | loc = Init->getLocStart(); |
Steve Naroff | f009063 | 2007-09-02 02:04:30 +0000 | [diff] [blame] | 367 | // Get the type before calling CheckSingleAssignmentConstraints(), since |
| 368 | // it can promote the expression. |
| 369 | QualType rhsType = Init->getType(); |
| 370 | |
| 371 | result = CheckSingleAssignmentConstraints(DeclType, Init); |
| 372 | |
| 373 | // decode the result (notice that extensions still return a type). |
| 374 | switch (result) { |
| 375 | case Compatible: |
| 376 | break; |
| 377 | case Incompatible: |
Steve Naroff | 6f9f307 | 2007-09-02 15:34:30 +0000 | [diff] [blame] | 378 | // FIXME: tighten up this check which should allow: |
| 379 | // char s[] = "abc", which is identical to char s[] = { 'a', 'b', 'c' }; |
| 380 | if (rhsType == Context.getPointerType(Context.CharTy)) |
| 381 | break; |
Steve Naroff | f009063 | 2007-09-02 02:04:30 +0000 | [diff] [blame] | 382 | Diag(loc, diag::err_typecheck_assign_incompatible, |
| 383 | DeclType.getAsString(), rhsType.getAsString(), |
| 384 | Init->getSourceRange()); |
| 385 | return true; |
| 386 | case PointerFromInt: |
| 387 | // check for null pointer constant (C99 6.3.2.3p3) |
| 388 | if (!Init->isNullPointerConstant(Context)) { |
| 389 | Diag(loc, diag::ext_typecheck_assign_pointer_int, |
| 390 | DeclType.getAsString(), rhsType.getAsString(), |
| 391 | Init->getSourceRange()); |
| 392 | return true; |
| 393 | } |
| 394 | break; |
| 395 | case IntFromPointer: |
| 396 | Diag(loc, diag::ext_typecheck_assign_pointer_int, |
| 397 | DeclType.getAsString(), rhsType.getAsString(), |
| 398 | Init->getSourceRange()); |
| 399 | break; |
| 400 | case IncompatiblePointer: |
| 401 | Diag(loc, diag::ext_typecheck_assign_incompatible_pointer, |
| 402 | DeclType.getAsString(), rhsType.getAsString(), |
| 403 | Init->getSourceRange()); |
| 404 | break; |
| 405 | case CompatiblePointerDiscardsQualifiers: |
| 406 | Diag(loc, diag::ext_typecheck_assign_discards_qualifiers, |
| 407 | DeclType.getAsString(), rhsType.getAsString(), |
| 408 | Init->getSourceRange()); |
| 409 | break; |
| 410 | } |
| 411 | return false; |
| 412 | } |
| 413 | |
Steve Naroff | 9e8925e | 2007-09-04 14:36:54 +0000 | [diff] [blame] | 414 | bool Sema::CheckInitExpr(Expr *expr, InitListExpr *IList, unsigned slot, |
| 415 | bool isStatic, QualType ElementType) { |
Steve Naroff | 371227d | 2007-09-04 02:20:04 +0000 | [diff] [blame] | 416 | SourceLocation loc; |
Steve Naroff | 9e8925e | 2007-09-04 14:36:54 +0000 | [diff] [blame] | 417 | Expr *savExpr = expr; // Might be promoted by CheckSingleInitializer. |
Steve Naroff | 371227d | 2007-09-04 02:20:04 +0000 | [diff] [blame] | 418 | |
| 419 | if (isStatic && !expr->isConstantExpr(Context, &loc)) { // C99 6.7.8p4. |
| 420 | Diag(loc, diag::err_init_element_not_constant, expr->getSourceRange()); |
| 421 | return true; |
Anders Carlsson | 1a86b33 | 2007-10-17 00:52:43 +0000 | [diff] [blame] | 422 | } else if (CheckSingleInitializer(expr, isStatic, ElementType)) { |
Steve Naroff | 371227d | 2007-09-04 02:20:04 +0000 | [diff] [blame] | 423 | return true; // types weren't compatible. |
| 424 | } |
Steve Naroff | 9e8925e | 2007-09-04 14:36:54 +0000 | [diff] [blame] | 425 | if (savExpr != expr) // The type was promoted, update initializer list. |
| 426 | IList->setInit(slot, expr); |
Steve Naroff | 371227d | 2007-09-04 02:20:04 +0000 | [diff] [blame] | 427 | return false; |
| 428 | } |
| 429 | |
| 430 | void Sema::CheckVariableInitList(QualType DeclType, InitListExpr *IList, |
| 431 | QualType ElementType, bool isStatic, |
| 432 | int &nInitializers, bool &hadError) { |
Steve Naroff | 6f9f307 | 2007-09-02 15:34:30 +0000 | [diff] [blame] | 433 | for (unsigned i = 0; i < IList->getNumInits(); i++) { |
| 434 | Expr *expr = IList->getInit(i); |
| 435 | |
Steve Naroff | 371227d | 2007-09-04 02:20:04 +0000 | [diff] [blame] | 436 | if (InitListExpr *InitList = dyn_cast<InitListExpr>(expr)) { |
| 437 | if (const ConstantArrayType *CAT = DeclType->getAsConstantArrayType()) { |
Steve Naroff | 7cf8c44 | 2007-09-04 21:13:33 +0000 | [diff] [blame] | 438 | int maxElements = CAT->getMaximumElements(); |
Steve Naroff | 371227d | 2007-09-04 02:20:04 +0000 | [diff] [blame] | 439 | CheckConstantInitList(DeclType, InitList, ElementType, isStatic, |
| 440 | maxElements, hadError); |
Steve Naroff | 6f9f307 | 2007-09-02 15:34:30 +0000 | [diff] [blame] | 441 | } |
Steve Naroff | 371227d | 2007-09-04 02:20:04 +0000 | [diff] [blame] | 442 | } else { |
Steve Naroff | 9e8925e | 2007-09-04 14:36:54 +0000 | [diff] [blame] | 443 | hadError = CheckInitExpr(expr, IList, i, isStatic, ElementType); |
Steve Naroff | 6f9f307 | 2007-09-02 15:34:30 +0000 | [diff] [blame] | 444 | } |
Steve Naroff | 371227d | 2007-09-04 02:20:04 +0000 | [diff] [blame] | 445 | nInitializers++; |
| 446 | } |
| 447 | return; |
| 448 | } |
| 449 | |
| 450 | // FIXME: Doesn't deal with arrays of structures yet. |
| 451 | void Sema::CheckConstantInitList(QualType DeclType, InitListExpr *IList, |
| 452 | QualType ElementType, bool isStatic, |
| 453 | int &totalInits, bool &hadError) { |
| 454 | int maxElementsAtThisLevel = 0; |
| 455 | int nInitsAtLevel = 0; |
| 456 | |
| 457 | if (const ConstantArrayType *CAT = DeclType->getAsConstantArrayType()) { |
| 458 | // We have a constant array type, compute maxElements *at this level*. |
Steve Naroff | 7cf8c44 | 2007-09-04 21:13:33 +0000 | [diff] [blame] | 459 | maxElementsAtThisLevel = CAT->getMaximumElements(); |
| 460 | // Set DeclType, used below to recurse (for multi-dimensional arrays). |
| 461 | DeclType = CAT->getElementType(); |
Steve Naroff | 371227d | 2007-09-04 02:20:04 +0000 | [diff] [blame] | 462 | } else if (DeclType->isScalarType()) { |
| 463 | Diag(IList->getLocStart(), diag::warn_braces_around_scalar_init, |
| 464 | IList->getSourceRange()); |
| 465 | maxElementsAtThisLevel = 1; |
| 466 | } |
| 467 | // The empty init list "{ }" is treated specially below. |
| 468 | unsigned numInits = IList->getNumInits(); |
| 469 | if (numInits) { |
| 470 | for (unsigned i = 0; i < numInits; i++) { |
| 471 | Expr *expr = IList->getInit(i); |
| 472 | |
| 473 | if (InitListExpr *InitList = dyn_cast<InitListExpr>(expr)) { |
| 474 | CheckConstantInitList(DeclType, InitList, ElementType, isStatic, |
| 475 | totalInits, hadError); |
| 476 | } else { |
Steve Naroff | 9e8925e | 2007-09-04 14:36:54 +0000 | [diff] [blame] | 477 | hadError = CheckInitExpr(expr, IList, i, isStatic, ElementType); |
Steve Naroff | 371227d | 2007-09-04 02:20:04 +0000 | [diff] [blame] | 478 | nInitsAtLevel++; // increment the number of initializers at this level. |
| 479 | totalInits--; // decrement the total number of initializers. |
| 480 | |
| 481 | // Check if we have space for another initializer. |
| 482 | if ((nInitsAtLevel > maxElementsAtThisLevel) || (totalInits < 0)) |
| 483 | Diag(expr->getLocStart(), diag::warn_excess_initializers, |
| 484 | expr->getSourceRange()); |
| 485 | } |
| 486 | } |
| 487 | if (nInitsAtLevel < maxElementsAtThisLevel) // fill the remaining elements. |
| 488 | totalInits -= (maxElementsAtThisLevel - nInitsAtLevel); |
| 489 | } else { |
| 490 | // we have an initializer list with no elements. |
| 491 | totalInits -= maxElementsAtThisLevel; |
| 492 | if (totalInits < 0) |
| 493 | Diag(IList->getLocStart(), diag::warn_excess_initializers, |
| 494 | IList->getSourceRange()); |
Steve Naroff | 6f9f307 | 2007-09-02 15:34:30 +0000 | [diff] [blame] | 495 | } |
Steve Naroff | d35005e | 2007-09-03 01:24:23 +0000 | [diff] [blame] | 496 | return; |
Steve Naroff | 6f9f307 | 2007-09-02 15:34:30 +0000 | [diff] [blame] | 497 | } |
| 498 | |
Steve Naroff | 9e8925e | 2007-09-04 14:36:54 +0000 | [diff] [blame] | 499 | bool Sema::CheckInitializer(Expr *&Init, QualType &DeclType, bool isStatic) { |
Steve Naroff | f009063 | 2007-09-02 02:04:30 +0000 | [diff] [blame] | 500 | InitListExpr *InitList = dyn_cast<InitListExpr>(Init); |
Steve Naroff | d35005e | 2007-09-03 01:24:23 +0000 | [diff] [blame] | 501 | if (!InitList) |
Anders Carlsson | 1a86b33 | 2007-10-17 00:52:43 +0000 | [diff] [blame] | 502 | return CheckSingleInitializer(Init, isStatic, DeclType); |
| 503 | |
Steve Naroff | f009063 | 2007-09-02 02:04:30 +0000 | [diff] [blame] | 504 | // We have an InitListExpr, make sure we set the type. |
| 505 | Init->setType(DeclType); |
Steve Naroff | d35005e | 2007-09-03 01:24:23 +0000 | [diff] [blame] | 506 | |
| 507 | bool hadError = false; |
Steve Naroff | 6f9f307 | 2007-09-02 15:34:30 +0000 | [diff] [blame] | 508 | |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 509 | // C99 6.7.8p3: The type of the entity to be initialized shall be an array |
| 510 | // of unknown size ("[]") or an object type that is not a variable array type. |
| 511 | if (const VariableArrayType *VAT = DeclType->getAsVariableArrayType()) { |
| 512 | Expr *expr = VAT->getSizeExpr(); |
Steve Naroff | d35005e | 2007-09-03 01:24:23 +0000 | [diff] [blame] | 513 | if (expr) |
| 514 | return Diag(expr->getLocStart(), diag::err_variable_object_no_init, |
| 515 | expr->getSourceRange()); |
| 516 | |
Steve Naroff | 7cf8c44 | 2007-09-04 21:13:33 +0000 | [diff] [blame] | 517 | // We have a VariableArrayType with unknown size. Note that only the first |
| 518 | // array can have unknown size. For example, "int [][]" is illegal. |
Steve Naroff | 371227d | 2007-09-04 02:20:04 +0000 | [diff] [blame] | 519 | int numInits = 0; |
Steve Naroff | 7cf8c44 | 2007-09-04 21:13:33 +0000 | [diff] [blame] | 520 | CheckVariableInitList(VAT->getElementType(), InitList, VAT->getBaseType(), |
| 521 | isStatic, numInits, hadError); |
Steve Naroff | d35005e | 2007-09-03 01:24:23 +0000 | [diff] [blame] | 522 | if (!hadError) { |
| 523 | // Return a new array type from the number of initializers (C99 6.7.8p22). |
| 524 | llvm::APSInt ConstVal(32); |
Steve Naroff | 371227d | 2007-09-04 02:20:04 +0000 | [diff] [blame] | 525 | ConstVal = numInits; |
Steve Naroff | fd8b4a4 | 2007-10-18 03:27:23 +0000 | [diff] [blame] | 526 | DeclType = Context.getConstantArrayType(VAT->getElementType(), ConstVal, |
Steve Naroff | d35005e | 2007-09-03 01:24:23 +0000 | [diff] [blame] | 527 | ArrayType::Normal, 0); |
| 528 | } |
| 529 | return hadError; |
| 530 | } |
| 531 | if (const ConstantArrayType *CAT = DeclType->getAsConstantArrayType()) { |
Steve Naroff | 7cf8c44 | 2007-09-04 21:13:33 +0000 | [diff] [blame] | 532 | int maxElements = CAT->getMaximumElements(); |
| 533 | CheckConstantInitList(DeclType, InitList, CAT->getBaseType(), |
| 534 | isStatic, maxElements, hadError); |
Steve Naroff | d35005e | 2007-09-03 01:24:23 +0000 | [diff] [blame] | 535 | return hadError; |
| 536 | } |
Steve Naroff | 371227d | 2007-09-04 02:20:04 +0000 | [diff] [blame] | 537 | if (DeclType->isScalarType()) { // C99 6.7.8p11: Allow "int x = { 1, 2 };" |
| 538 | int maxElements = 1; |
| 539 | CheckConstantInitList(DeclType, InitList, DeclType, isStatic, maxElements, |
| 540 | hadError); |
Steve Naroff | d35005e | 2007-09-03 01:24:23 +0000 | [diff] [blame] | 541 | return hadError; |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 542 | } |
| 543 | // FIXME: Handle struct/union types. |
Steve Naroff | d35005e | 2007-09-03 01:24:23 +0000 | [diff] [blame] | 544 | return hadError; |
Steve Naroff | f009063 | 2007-09-02 02:04:30 +0000 | [diff] [blame] | 545 | } |
| 546 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 547 | Sema::DeclTy * |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 548 | Sema::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *lastDecl) { |
Steve Naroff | 9474504 | 2007-09-13 23:52:58 +0000 | [diff] [blame] | 549 | ScopedDecl *LastDeclarator = dyn_cast_or_null<ScopedDecl>((Decl *)lastDecl); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 550 | IdentifierInfo *II = D.getIdentifier(); |
| 551 | |
Chris Lattner | e80a59c | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 552 | // All of these full declarators require an identifier. If it doesn't have |
| 553 | // one, the ParsedFreeStandingDeclSpec action should be used. |
| 554 | if (II == 0) { |
Chris Lattner | 311ff02 | 2007-10-16 22:36:42 +0000 | [diff] [blame] | 555 | Diag(D.getDeclSpec().getSourceRange().getBegin(), |
Chris Lattner | 98e0863 | 2007-08-28 06:17:15 +0000 | [diff] [blame] | 556 | diag::err_declarator_need_ident, |
Chris Lattner | e80a59c | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 557 | D.getDeclSpec().getSourceRange(), D.getSourceRange()); |
| 558 | return 0; |
| 559 | } |
| 560 | |
Chris Lattner | 31e0572 | 2007-08-26 06:24:45 +0000 | [diff] [blame] | 561 | // The scope passed in may not be a decl scope. Zip up the scope tree until |
| 562 | // we find one that is. |
| 563 | while ((S->getFlags() & Scope::DeclScope) == 0) |
| 564 | S = S->getParent(); |
| 565 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 566 | // See if this is a redefinition of a variable in the same scope. |
Steve Naroff | c752d04 | 2007-09-13 18:10:37 +0000 | [diff] [blame] | 567 | ScopedDecl *PrevDecl = LookupScopedDecl(II, Decl::IDNS_Ordinary, |
| 568 | D.getIdentifierLoc(), S); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 569 | if (PrevDecl && !S->isDeclScope(PrevDecl)) |
| 570 | PrevDecl = 0; // If in outer scope, it isn't the same thing. |
| 571 | |
Steve Naroff | c752d04 | 2007-09-13 18:10:37 +0000 | [diff] [blame] | 572 | ScopedDecl *New; |
Steve Naroff | 5912a35 | 2007-08-28 20:14:24 +0000 | [diff] [blame] | 573 | bool InvalidDecl = false; |
| 574 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 575 | if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) { |
| 576 | TypedefDecl *NewTD = ParseTypedefDecl(S, D, LastDeclarator); |
| 577 | if (!NewTD) return 0; |
| 578 | |
| 579 | // Handle attributes prior to checking for duplicates in MergeVarDecl |
| 580 | HandleDeclAttributes(NewTD, D.getDeclSpec().getAttributes(), |
| 581 | D.getAttributes()); |
| 582 | // Merge the decl with the existing one if appropriate. |
| 583 | if (PrevDecl) { |
| 584 | NewTD = MergeTypeDefDecl(NewTD, PrevDecl); |
| 585 | if (NewTD == 0) return 0; |
| 586 | } |
| 587 | New = NewTD; |
| 588 | if (S->getParent() == 0) { |
| 589 | // C99 6.7.7p2: If a typedef name specifies a variably modified type |
| 590 | // then it shall have block scope. |
Steve Naroff | d7444aa | 2007-08-31 17:20:07 +0000 | [diff] [blame] | 591 | if (const VariableArrayType *VAT = |
| 592 | NewTD->getUnderlyingType()->getAsVariablyModifiedType()) { |
| 593 | Diag(D.getIdentifierLoc(), diag::err_typecheck_illegal_vla, |
| 594 | VAT->getSizeExpr()->getSourceRange()); |
| 595 | InvalidDecl = true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 596 | } |
| 597 | } |
| 598 | } else if (D.isFunctionDeclarator()) { |
| 599 | QualType R = GetTypeForDeclarator(D, S); |
Steve Naroff | 5912a35 | 2007-08-28 20:14:24 +0000 | [diff] [blame] | 600 | assert(!R.isNull() && "GetTypeForDeclarator() returned null type"); |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 601 | |
Chris Lattner | 271f1a6 | 2007-09-27 15:15:46 +0000 | [diff] [blame] | 602 | FunctionDecl::StorageClass SC = FunctionDecl::None; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 603 | switch (D.getDeclSpec().getStorageClassSpec()) { |
| 604 | default: assert(0 && "Unknown storage class!"); |
| 605 | case DeclSpec::SCS_auto: |
| 606 | case DeclSpec::SCS_register: |
| 607 | Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_func, |
| 608 | R.getAsString()); |
Steve Naroff | 5912a35 | 2007-08-28 20:14:24 +0000 | [diff] [blame] | 609 | InvalidDecl = true; |
| 610 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 611 | case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break; |
| 612 | case DeclSpec::SCS_extern: SC = FunctionDecl::Extern; break; |
| 613 | case DeclSpec::SCS_static: SC = FunctionDecl::Static; break; |
| 614 | } |
| 615 | |
| 616 | FunctionDecl *NewFD = new FunctionDecl(D.getIdentifierLoc(), II, R, SC, |
Chris Lattner | 70c8b2e | 2007-08-26 04:02:13 +0000 | [diff] [blame] | 617 | D.getDeclSpec().isInlineSpecified(), |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 618 | LastDeclarator); |
| 619 | |
| 620 | // Merge the decl with the existing one if appropriate. |
| 621 | if (PrevDecl) { |
| 622 | NewFD = MergeFunctionDecl(NewFD, PrevDecl); |
| 623 | if (NewFD == 0) return 0; |
| 624 | } |
| 625 | New = NewFD; |
| 626 | } else { |
| 627 | QualType R = GetTypeForDeclarator(D, S); |
Steve Naroff | 53a3234 | 2007-08-28 18:45:29 +0000 | [diff] [blame] | 628 | assert(!R.isNull() && "GetTypeForDeclarator() returned null type"); |
Fariborz Jahanian | e7f64cc | 2007-10-12 22:10:42 +0000 | [diff] [blame] | 629 | if (R.getTypePtr()->isObjcInterfaceType()) { |
| 630 | Diag(D.getIdentifierLoc(), diag::err_statically_allocated_object, |
| 631 | D.getIdentifier()->getName()); |
| 632 | InvalidDecl = true; |
| 633 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 634 | |
| 635 | VarDecl *NewVD; |
| 636 | VarDecl::StorageClass SC; |
| 637 | switch (D.getDeclSpec().getStorageClassSpec()) { |
| 638 | default: assert(0 && "Unknown storage class!"); |
| 639 | case DeclSpec::SCS_unspecified: SC = VarDecl::None; break; |
| 640 | case DeclSpec::SCS_extern: SC = VarDecl::Extern; break; |
| 641 | case DeclSpec::SCS_static: SC = VarDecl::Static; break; |
| 642 | case DeclSpec::SCS_auto: SC = VarDecl::Auto; break; |
| 643 | case DeclSpec::SCS_register: SC = VarDecl::Register; break; |
| 644 | } |
| 645 | if (S->getParent() == 0) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 646 | // C99 6.9p2: The storage-class specifiers auto and register shall not |
| 647 | // appear in the declaration specifiers in an external declaration. |
| 648 | if (SC == VarDecl::Auto || SC == VarDecl::Register) { |
| 649 | Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope, |
| 650 | R.getAsString()); |
Steve Naroff | 53a3234 | 2007-08-28 18:45:29 +0000 | [diff] [blame] | 651 | InvalidDecl = true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 652 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 653 | NewVD = new FileVarDecl(D.getIdentifierLoc(), II, R, SC, LastDeclarator); |
Steve Naroff | f009063 | 2007-09-02 02:04:30 +0000 | [diff] [blame] | 654 | } else { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 655 | NewVD = new BlockVarDecl(D.getIdentifierLoc(), II, R, SC, LastDeclarator); |
Steve Naroff | 53a3234 | 2007-08-28 18:45:29 +0000 | [diff] [blame] | 656 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 657 | // Handle attributes prior to checking for duplicates in MergeVarDecl |
| 658 | HandleDeclAttributes(NewVD, D.getDeclSpec().getAttributes(), |
| 659 | D.getAttributes()); |
| 660 | |
| 661 | // Merge the decl with the existing one if appropriate. |
| 662 | if (PrevDecl) { |
| 663 | NewVD = MergeVarDecl(NewVD, PrevDecl); |
| 664 | if (NewVD == 0) return 0; |
| 665 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 666 | New = NewVD; |
| 667 | } |
| 668 | |
| 669 | // If this has an identifier, add it to the scope stack. |
| 670 | if (II) { |
Steve Naroff | c752d04 | 2007-09-13 18:10:37 +0000 | [diff] [blame] | 671 | New->setNext(II->getFETokenInfo<ScopedDecl>()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 672 | II->setFETokenInfo(New); |
| 673 | S->AddDecl(New); |
| 674 | } |
| 675 | |
| 676 | if (S->getParent() == 0) |
| 677 | AddTopLevelDecl(New, LastDeclarator); |
Steve Naroff | 5912a35 | 2007-08-28 20:14:24 +0000 | [diff] [blame] | 678 | |
| 679 | // If any semantic error occurred, mark the decl as invalid. |
| 680 | if (D.getInvalidType() || InvalidDecl) |
| 681 | New->setInvalidDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 682 | |
| 683 | return New; |
| 684 | } |
| 685 | |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 686 | void Sema::AddInitializerToDecl(DeclTy *dcl, ExprTy *init) { |
Steve Naroff | 410e3e2 | 2007-09-12 20:13:48 +0000 | [diff] [blame] | 687 | Decl *RealDecl = static_cast<Decl *>(dcl); |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 688 | Expr *Init = static_cast<Expr *>(init); |
Chris Lattner | 9a11b9a | 2007-10-19 20:10:30 +0000 | [diff] [blame] | 689 | assert(Init && "missing initializer"); |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 690 | |
Chris Lattner | 9a11b9a | 2007-10-19 20:10:30 +0000 | [diff] [blame] | 691 | // If there is no declaration, there was an error parsing it. Just ignore |
| 692 | // the initializer. |
| 693 | if (RealDecl == 0) { |
| 694 | delete Init; |
| 695 | return; |
| 696 | } |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 697 | |
Steve Naroff | 410e3e2 | 2007-09-12 20:13:48 +0000 | [diff] [blame] | 698 | VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl); |
| 699 | if (!VDecl) { |
Steve Naroff | 8e74c93 | 2007-09-13 21:41:19 +0000 | [diff] [blame] | 700 | Diag(dyn_cast<ScopedDecl>(RealDecl)->getLocation(), |
| 701 | diag::err_illegal_initializer); |
Steve Naroff | 410e3e2 | 2007-09-12 20:13:48 +0000 | [diff] [blame] | 702 | RealDecl->setInvalidDecl(); |
| 703 | return; |
| 704 | } |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 705 | // Get the decls type and save a reference for later, since |
| 706 | // CheckInitializer may change it. |
Steve Naroff | 410e3e2 | 2007-09-12 20:13:48 +0000 | [diff] [blame] | 707 | QualType DclT = VDecl->getType(), SavT = DclT; |
| 708 | if (BlockVarDecl *BVD = dyn_cast<BlockVarDecl>(VDecl)) { |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 709 | VarDecl::StorageClass SC = BVD->getStorageClass(); |
| 710 | if (SC == VarDecl::Extern) { // C99 6.7.8p5 |
Steve Naroff | 410e3e2 | 2007-09-12 20:13:48 +0000 | [diff] [blame] | 711 | Diag(VDecl->getLocation(), diag::err_block_extern_cant_init); |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 712 | BVD->setInvalidDecl(); |
| 713 | } else if (!BVD->isInvalidDecl()) { |
| 714 | CheckInitializer(Init, DclT, SC == VarDecl::Static); |
| 715 | } |
Steve Naroff | 410e3e2 | 2007-09-12 20:13:48 +0000 | [diff] [blame] | 716 | } else if (FileVarDecl *FVD = dyn_cast<FileVarDecl>(VDecl)) { |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 717 | if (FVD->getStorageClass() == VarDecl::Extern) |
Steve Naroff | 410e3e2 | 2007-09-12 20:13:48 +0000 | [diff] [blame] | 718 | Diag(VDecl->getLocation(), diag::warn_extern_init); |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 719 | if (!FVD->isInvalidDecl()) |
| 720 | CheckInitializer(Init, DclT, true); |
| 721 | } |
| 722 | // If the type changed, it means we had an incomplete type that was |
| 723 | // completed by the initializer. For example: |
| 724 | // int ary[] = { 1, 3, 5 }; |
| 725 | // "ary" transitions from a VariableArrayType to a ConstantArrayType. |
Steve Naroff | 410e3e2 | 2007-09-12 20:13:48 +0000 | [diff] [blame] | 726 | if (!VDecl->isInvalidDecl() && (DclT != SavT)) |
| 727 | VDecl->setType(DclT); |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 728 | |
| 729 | // Attach the initializer to the decl. |
Steve Naroff | 410e3e2 | 2007-09-12 20:13:48 +0000 | [diff] [blame] | 730 | VDecl->setInit(Init); |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 731 | return; |
| 732 | } |
| 733 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 734 | /// The declarators are chained together backwards, reverse the list. |
| 735 | Sema::DeclTy *Sema::FinalizeDeclaratorGroup(Scope *S, DeclTy *group) { |
| 736 | // Often we have single declarators, handle them quickly. |
Steve Naroff | 9474504 | 2007-09-13 23:52:58 +0000 | [diff] [blame] | 737 | Decl *GroupDecl = static_cast<Decl*>(group); |
| 738 | if (GroupDecl == 0) |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 739 | return 0; |
Steve Naroff | 9474504 | 2007-09-13 23:52:58 +0000 | [diff] [blame] | 740 | |
| 741 | ScopedDecl *Group = dyn_cast<ScopedDecl>(GroupDecl); |
| 742 | ScopedDecl *NewGroup = 0; |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 743 | if (Group->getNextDeclarator() == 0) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 744 | NewGroup = Group; |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 745 | else { // reverse the list. |
| 746 | while (Group) { |
Steve Naroff | 9474504 | 2007-09-13 23:52:58 +0000 | [diff] [blame] | 747 | ScopedDecl *Next = Group->getNextDeclarator(); |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 748 | Group->setNextDeclarator(NewGroup); |
| 749 | NewGroup = Group; |
| 750 | Group = Next; |
| 751 | } |
| 752 | } |
| 753 | // Perform semantic analysis that depends on having fully processed both |
| 754 | // the declarator and initializer. |
Steve Naroff | 9474504 | 2007-09-13 23:52:58 +0000 | [diff] [blame] | 755 | for (ScopedDecl *ID = NewGroup; ID; ID = ID->getNextDeclarator()) { |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 756 | VarDecl *IDecl = dyn_cast<VarDecl>(ID); |
| 757 | if (!IDecl) |
| 758 | continue; |
| 759 | FileVarDecl *FVD = dyn_cast<FileVarDecl>(IDecl); |
| 760 | BlockVarDecl *BVD = dyn_cast<BlockVarDecl>(IDecl); |
| 761 | QualType T = IDecl->getType(); |
| 762 | |
| 763 | // C99 6.7.5.2p2: If an identifier is declared to be an object with |
| 764 | // static storage duration, it shall not have a variable length array. |
| 765 | if ((FVD || BVD) && IDecl->getStorageClass() == VarDecl::Static) { |
| 766 | if (const VariableArrayType *VLA = T->getAsVariableArrayType()) { |
| 767 | if (VLA->getSizeExpr()) { |
| 768 | Diag(IDecl->getLocation(), diag::err_typecheck_illegal_vla); |
| 769 | IDecl->setInvalidDecl(); |
| 770 | } |
| 771 | } |
| 772 | } |
| 773 | // Block scope. C99 6.7p7: If an identifier for an object is declared with |
| 774 | // no linkage (C99 6.2.2p6), the type for the object shall be complete... |
| 775 | if (BVD && IDecl->getStorageClass() != VarDecl::Extern) { |
| 776 | if (T->isIncompleteType()) { |
| 777 | Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type, |
| 778 | T.getAsString()); |
| 779 | IDecl->setInvalidDecl(); |
| 780 | } |
| 781 | } |
| 782 | // File scope. C99 6.9.2p2: A declaration of an identifier for and |
| 783 | // object that has file scope without an initializer, and without a |
| 784 | // storage-class specifier or with the storage-class specifier "static", |
| 785 | // constitutes a tentative definition. Note: A tentative definition with |
| 786 | // external linkage is valid (C99 6.2.2p5). |
| 787 | if (FVD && !FVD->getInit() && FVD->getStorageClass() == VarDecl::Static) { |
| 788 | // C99 6.9.2p3: If the declaration of an identifier for an object is |
| 789 | // a tentative definition and has internal linkage (C99 6.2.2p3), the |
| 790 | // declared type shall not be an incomplete type. |
| 791 | if (T->isIncompleteType()) { |
| 792 | Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type, |
| 793 | T.getAsString()); |
| 794 | IDecl->setInvalidDecl(); |
| 795 | } |
| 796 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 797 | } |
| 798 | return NewGroup; |
| 799 | } |
Steve Naroff | e1223f7 | 2007-08-28 03:03:08 +0000 | [diff] [blame] | 800 | |
| 801 | // Called from Sema::ParseStartOfFunctionDef(). |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 802 | ParmVarDecl * |
| 803 | Sema::ParseParamDeclarator(DeclaratorChunk &FTI, unsigned ArgNo, |
| 804 | Scope *FnScope) { |
| 805 | const DeclaratorChunk::ParamInfo &PI = FTI.Fun.ArgInfo[ArgNo]; |
| 806 | |
| 807 | IdentifierInfo *II = PI.Ident; |
| 808 | // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope. |
| 809 | // Can this happen for params? We already checked that they don't conflict |
| 810 | // among each other. Here they can only shadow globals, which is ok. |
Chris Lattner | 8b9023b | 2007-07-13 03:05:23 +0000 | [diff] [blame] | 811 | if (/*Decl *PrevDecl = */LookupScopedDecl(II, Decl::IDNS_Ordinary, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 812 | PI.IdentLoc, FnScope)) { |
| 813 | |
| 814 | } |
| 815 | |
| 816 | // FIXME: Handle storage class (auto, register). No declarator? |
| 817 | // TODO: Chain to previous parameter with the prevdeclarator chain? |
Steve Naroff | 6a9f3e3 | 2007-08-07 22:44:21 +0000 | [diff] [blame] | 818 | |
| 819 | // Perform the default function/array conversion (C99 6.7.5.3p[7,8]). |
| 820 | // Doing the promotion here has a win and a loss. The win is the type for |
| 821 | // both Decl's and DeclRefExpr's will match (a convenient invariant for the |
| 822 | // code generator). The loss is the orginal type isn't preserved. For example: |
| 823 | // |
| 824 | // void func(int parmvardecl[5]) { // convert "int [5]" to "int *" |
| 825 | // int blockvardecl[5]; |
| 826 | // sizeof(parmvardecl); // size == 4 |
| 827 | // sizeof(blockvardecl); // size == 20 |
| 828 | // } |
| 829 | // |
| 830 | // For expressions, all implicit conversions are captured using the |
| 831 | // ImplicitCastExpr AST node (we have no such mechanism for Decl's). |
| 832 | // |
| 833 | // FIXME: If a source translation tool needs to see the original type, then |
| 834 | // we need to consider storing both types (in ParmVarDecl)... |
| 835 | // |
| 836 | QualType parmDeclType = QualType::getFromOpaquePtr(PI.TypeInfo); |
| 837 | if (const ArrayType *AT = parmDeclType->getAsArrayType()) |
| 838 | parmDeclType = Context.getPointerType(AT->getElementType()); |
| 839 | else if (parmDeclType->isFunctionType()) |
| 840 | parmDeclType = Context.getPointerType(parmDeclType); |
| 841 | |
| 842 | ParmVarDecl *New = new ParmVarDecl(PI.IdentLoc, II, parmDeclType, |
Steve Naroff | 53a3234 | 2007-08-28 18:45:29 +0000 | [diff] [blame] | 843 | VarDecl::None, 0); |
| 844 | if (PI.InvalidType) |
| 845 | New->setInvalidDecl(); |
| 846 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 847 | // If this has an identifier, add it to the scope stack. |
| 848 | if (II) { |
Steve Naroff | c752d04 | 2007-09-13 18:10:37 +0000 | [diff] [blame] | 849 | New->setNext(II->getFETokenInfo<ScopedDecl>()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 850 | II->setFETokenInfo(New); |
| 851 | FnScope->AddDecl(New); |
| 852 | } |
| 853 | |
| 854 | return New; |
| 855 | } |
| 856 | |
| 857 | |
Chris Lattner | b652cea | 2007-10-09 17:14:05 +0000 | [diff] [blame] | 858 | Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 859 | assert(CurFunctionDecl == 0 && "Function parsing confused"); |
| 860 | assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function && |
| 861 | "Not a function declarator!"); |
| 862 | DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun; |
| 863 | |
| 864 | // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared' |
| 865 | // for a K&R function. |
| 866 | if (!FTI.hasPrototype) { |
| 867 | for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) { |
| 868 | if (FTI.ArgInfo[i].TypeInfo == 0) { |
| 869 | Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared, |
| 870 | FTI.ArgInfo[i].Ident->getName()); |
| 871 | // Implicitly declare the argument as type 'int' for lack of a better |
| 872 | // type. |
| 873 | FTI.ArgInfo[i].TypeInfo = Context.IntTy.getAsOpaquePtr(); |
| 874 | } |
| 875 | } |
| 876 | |
| 877 | // Since this is a function definition, act as though we have information |
| 878 | // about the arguments. |
| 879 | FTI.hasPrototype = true; |
| 880 | } else { |
| 881 | // FIXME: Diagnose arguments without names in C. |
| 882 | |
| 883 | } |
| 884 | |
| 885 | Scope *GlobalScope = FnBodyScope->getParent(); |
| 886 | |
| 887 | FunctionDecl *FD = |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 888 | static_cast<FunctionDecl*>(ActOnDeclarator(GlobalScope, D, 0)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 889 | CurFunctionDecl = FD; |
| 890 | |
| 891 | // Create Decl objects for each parameter, adding them to the FunctionDecl. |
| 892 | llvm::SmallVector<ParmVarDecl*, 16> Params; |
| 893 | |
| 894 | // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes |
| 895 | // no arguments, not a function that takes a single void argument. |
| 896 | if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 && |
| 897 | FTI.ArgInfo[0].TypeInfo == Context.VoidTy.getAsOpaquePtr()) { |
| 898 | // empty arg list, don't push any params. |
| 899 | } else { |
| 900 | for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) |
| 901 | Params.push_back(ParseParamDeclarator(D.getTypeObject(0), i,FnBodyScope)); |
| 902 | } |
| 903 | |
| 904 | FD->setParams(&Params[0], Params.size()); |
| 905 | |
| 906 | return FD; |
| 907 | } |
| 908 | |
Chris Lattner | b652cea | 2007-10-09 17:14:05 +0000 | [diff] [blame] | 909 | Sema::DeclTy *Sema::ActOnFunctionDefBody(DeclTy *D, StmtTy *Body) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 910 | FunctionDecl *FD = static_cast<FunctionDecl*>(D); |
| 911 | FD->setBody((Stmt*)Body); |
| 912 | |
| 913 | assert(FD == CurFunctionDecl && "Function parsing confused"); |
| 914 | CurFunctionDecl = 0; |
| 915 | |
| 916 | // Verify and clean out per-function state. |
| 917 | |
| 918 | // Check goto/label use. |
| 919 | for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator |
| 920 | I = LabelMap.begin(), E = LabelMap.end(); I != E; ++I) { |
| 921 | // Verify that we have no forward references left. If so, there was a goto |
| 922 | // or address of a label taken, but no definition of it. Label fwd |
| 923 | // definitions are indicated with a null substmt. |
| 924 | if (I->second->getSubStmt() == 0) { |
| 925 | LabelStmt *L = I->second; |
| 926 | // Emit error. |
| 927 | Diag(L->getIdentLoc(), diag::err_undeclared_label_use, L->getName()); |
| 928 | |
| 929 | // At this point, we have gotos that use the bogus label. Stitch it into |
| 930 | // the function body so that they aren't leaked and that the AST is well |
| 931 | // formed. |
| 932 | L->setSubStmt(new NullStmt(L->getIdentLoc())); |
| 933 | cast<CompoundStmt>((Stmt*)Body)->push_back(L); |
| 934 | } |
| 935 | } |
| 936 | LabelMap.clear(); |
| 937 | |
| 938 | return FD; |
| 939 | } |
| 940 | |
| 941 | |
| 942 | /// ImplicitlyDefineFunction - An undeclared identifier was used in a function |
| 943 | /// call, forming a call to an implicitly defined function (per C99 6.5.1p2). |
Steve Naroff | 8c9f13e | 2007-09-16 16:16:00 +0000 | [diff] [blame] | 944 | ScopedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc, |
| 945 | IdentifierInfo &II, Scope *S) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 946 | if (getLangOptions().C99) // Extension in C99. |
| 947 | Diag(Loc, diag::ext_implicit_function_decl, II.getName()); |
| 948 | else // Legal in C90, but warn about it. |
| 949 | Diag(Loc, diag::warn_implicit_function_decl, II.getName()); |
| 950 | |
| 951 | // FIXME: handle stuff like: |
| 952 | // void foo() { extern float X(); } |
| 953 | // void bar() { X(); } <-- implicit decl for X in another scope. |
| 954 | |
| 955 | // Set a Declarator for the implicit definition: int foo(); |
| 956 | const char *Dummy; |
| 957 | DeclSpec DS; |
| 958 | bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy); |
| 959 | Error = Error; // Silence warning. |
| 960 | assert(!Error && "Error setting up implicit decl!"); |
| 961 | Declarator D(DS, Declarator::BlockContext); |
| 962 | D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, 0, 0, Loc)); |
| 963 | D.SetIdentifier(&II, Loc); |
| 964 | |
| 965 | // Find translation-unit scope to insert this function into. |
Chris Lattner | 31e0572 | 2007-08-26 06:24:45 +0000 | [diff] [blame] | 966 | if (Scope *FnS = S->getFnParent()) |
| 967 | S = FnS->getParent(); // Skip all scopes in a function at once. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 968 | while (S->getParent()) |
| 969 | S = S->getParent(); |
| 970 | |
Steve Naroff | 8c9f13e | 2007-09-16 16:16:00 +0000 | [diff] [blame] | 971 | return dyn_cast<ScopedDecl>(static_cast<Decl*>(ActOnDeclarator(S, D, 0))); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 972 | } |
| 973 | |
| 974 | |
| 975 | TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, |
Steve Naroff | 9474504 | 2007-09-13 23:52:58 +0000 | [diff] [blame] | 976 | ScopedDecl *LastDeclarator) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 977 | assert(D.getIdentifier() && "Wrong callback for declspec without declarator"); |
| 978 | |
| 979 | QualType T = GetTypeForDeclarator(D, S); |
Steve Naroff | 5912a35 | 2007-08-28 20:14:24 +0000 | [diff] [blame] | 980 | assert(!T.isNull() && "GetTypeForDeclarator() returned null type"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 981 | |
| 982 | // Scope manipulation handled by caller. |
Steve Naroff | 5912a35 | 2007-08-28 20:14:24 +0000 | [diff] [blame] | 983 | TypedefDecl *NewTD = new TypedefDecl(D.getIdentifierLoc(), D.getIdentifier(), |
| 984 | T, LastDeclarator); |
| 985 | if (D.getInvalidType()) |
| 986 | NewTD->setInvalidDecl(); |
| 987 | return NewTD; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 988 | } |
| 989 | |
Steve Naroff | e440eb8 | 2007-10-10 17:32:04 +0000 | [diff] [blame] | 990 | Sema::DeclTy *Sema::ActOnStartClassInterface( |
Fariborz Jahanian | ccb4f31 | 2007-09-25 18:38:09 +0000 | [diff] [blame] | 991 | SourceLocation AtInterfaceLoc, |
Steve Naroff | 3536b44 | 2007-09-06 21:24:23 +0000 | [diff] [blame] | 992 | IdentifierInfo *ClassName, SourceLocation ClassLoc, |
| 993 | IdentifierInfo *SuperName, SourceLocation SuperLoc, |
| 994 | IdentifierInfo **ProtocolNames, unsigned NumProtocols, |
Steve Naroff | f908a87 | 2007-10-30 02:23:23 +0000 | [diff] [blame] | 995 | SourceLocation EndProtoLoc, AttributeList *AttrList) { |
Steve Naroff | 3536b44 | 2007-09-06 21:24:23 +0000 | [diff] [blame] | 996 | assert(ClassName && "Missing class identifier"); |
Fariborz Jahanian | ccb4f31 | 2007-09-25 18:38:09 +0000 | [diff] [blame] | 997 | |
| 998 | // Check for another declaration kind with the same name. |
Fariborz Jahanian | 4cabdfc | 2007-10-12 19:38:20 +0000 | [diff] [blame] | 999 | ScopedDecl *PrevDecl = LookupInterfaceDecl(ClassName); |
Fariborz Jahanian | 05672a0 | 2007-10-09 18:03:53 +0000 | [diff] [blame] | 1000 | if (PrevDecl && !isa<ObjcInterfaceDecl>(PrevDecl)) { |
Fariborz Jahanian | ccb4f31 | 2007-09-25 18:38:09 +0000 | [diff] [blame] | 1001 | Diag(ClassLoc, diag::err_redefinition_different_kind, |
| 1002 | ClassName->getName()); |
| 1003 | Diag(PrevDecl->getLocation(), diag::err_previous_definition); |
| 1004 | } |
| 1005 | |
Fariborz Jahanian | 4cabdfc | 2007-10-12 19:38:20 +0000 | [diff] [blame] | 1006 | ObjcInterfaceDecl* IDecl = dyn_cast_or_null<ObjcInterfaceDecl>(PrevDecl); |
Fariborz Jahanian | bd51b87 | 2007-09-20 20:26:44 +0000 | [diff] [blame] | 1007 | if (IDecl) { |
| 1008 | // Class already seen. Is it a forward declaration? |
Steve Naroff | 768f26e | 2007-10-02 20:26:23 +0000 | [diff] [blame] | 1009 | if (!IDecl->isForwardDecl()) |
Fariborz Jahanian | 4cabdfc | 2007-10-12 19:38:20 +0000 | [diff] [blame] | 1010 | Diag(AtInterfaceLoc, diag::err_duplicate_class_def, IDecl->getName()); |
Fariborz Jahanian | b27c156 | 2007-09-22 00:01:35 +0000 | [diff] [blame] | 1011 | else { |
Steve Naroff | f908a87 | 2007-10-30 02:23:23 +0000 | [diff] [blame] | 1012 | IDecl->setLocation(AtInterfaceLoc); |
Steve Naroff | 768f26e | 2007-10-02 20:26:23 +0000 | [diff] [blame] | 1013 | IDecl->setForwardDecl(false); |
Fariborz Jahanian | b27c156 | 2007-09-22 00:01:35 +0000 | [diff] [blame] | 1014 | IDecl->AllocIntfRefProtocols(NumProtocols); |
| 1015 | } |
Fariborz Jahanian | bd51b87 | 2007-09-20 20:26:44 +0000 | [diff] [blame] | 1016 | } |
| 1017 | else { |
Fariborz Jahanian | b27c156 | 2007-09-22 00:01:35 +0000 | [diff] [blame] | 1018 | IDecl = new ObjcInterfaceDecl(AtInterfaceLoc, NumProtocols, ClassName); |
Fariborz Jahanian | 1d5b0e3 | 2007-09-20 17:54:07 +0000 | [diff] [blame] | 1019 | |
Fariborz Jahanian | bd51b87 | 2007-09-20 20:26:44 +0000 | [diff] [blame] | 1020 | // Chain & install the interface decl into the identifier. |
| 1021 | IDecl->setNext(ClassName->getFETokenInfo<ScopedDecl>()); |
| 1022 | ClassName->setFETokenInfo(IDecl); |
Fariborz Jahanian | be127ba | 2007-10-15 19:16:57 +0000 | [diff] [blame] | 1023 | |
| 1024 | // Remember that this needs to be removed when the scope is popped. |
| 1025 | TUScope->AddDecl(IDecl); |
Fariborz Jahanian | bd51b87 | 2007-09-20 20:26:44 +0000 | [diff] [blame] | 1026 | } |
Fariborz Jahanian | 1d5b0e3 | 2007-09-20 17:54:07 +0000 | [diff] [blame] | 1027 | |
| 1028 | if (SuperName) { |
Fariborz Jahanian | ccb4f31 | 2007-09-25 18:38:09 +0000 | [diff] [blame] | 1029 | ObjcInterfaceDecl* SuperClassEntry = 0; |
| 1030 | // Check if a different kind of symbol declared in this scope. |
Fariborz Jahanian | 4cabdfc | 2007-10-12 19:38:20 +0000 | [diff] [blame] | 1031 | PrevDecl = LookupInterfaceDecl(SuperName); |
Fariborz Jahanian | 05672a0 | 2007-10-09 18:03:53 +0000 | [diff] [blame] | 1032 | if (PrevDecl && !isa<ObjcInterfaceDecl>(PrevDecl)) { |
Fariborz Jahanian | ccb4f31 | 2007-09-25 18:38:09 +0000 | [diff] [blame] | 1033 | Diag(SuperLoc, diag::err_redefinition_different_kind, |
| 1034 | SuperName->getName()); |
| 1035 | Diag(PrevDecl->getLocation(), diag::err_previous_definition); |
Fariborz Jahanian | 1d5b0e3 | 2007-09-20 17:54:07 +0000 | [diff] [blame] | 1036 | } |
Fariborz Jahanian | ccb4f31 | 2007-09-25 18:38:09 +0000 | [diff] [blame] | 1037 | else { |
| 1038 | // Check that super class is previously defined |
Fariborz Jahanian | 4cabdfc | 2007-10-12 19:38:20 +0000 | [diff] [blame] | 1039 | SuperClassEntry = dyn_cast_or_null<ObjcInterfaceDecl>(PrevDecl); |
Fariborz Jahanian | ccb4f31 | 2007-09-25 18:38:09 +0000 | [diff] [blame] | 1040 | |
Steve Naroff | 768f26e | 2007-10-02 20:26:23 +0000 | [diff] [blame] | 1041 | if (!SuperClassEntry || SuperClassEntry->isForwardDecl()) { |
Fariborz Jahanian | 4cabdfc | 2007-10-12 19:38:20 +0000 | [diff] [blame] | 1042 | Diag(AtInterfaceLoc, diag::err_undef_superclass, |
| 1043 | SuperClassEntry ? SuperClassEntry->getName() |
| 1044 | : SuperName->getName(), |
Fariborz Jahanian | ccb4f31 | 2007-09-25 18:38:09 +0000 | [diff] [blame] | 1045 | ClassName->getName()); |
| 1046 | } |
| 1047 | } |
| 1048 | IDecl->setSuperClass(SuperClassEntry); |
Steve Naroff | f908a87 | 2007-10-30 02:23:23 +0000 | [diff] [blame] | 1049 | IDecl->setLocEnd(SuperLoc); |
| 1050 | } else { // we have a root class. |
| 1051 | IDecl->setLocEnd(ClassLoc); |
Fariborz Jahanian | 1d5b0e3 | 2007-09-20 17:54:07 +0000 | [diff] [blame] | 1052 | } |
| 1053 | |
Fariborz Jahanian | b27c156 | 2007-09-22 00:01:35 +0000 | [diff] [blame] | 1054 | /// Check then save referenced protocols |
Steve Naroff | f908a87 | 2007-10-30 02:23:23 +0000 | [diff] [blame] | 1055 | if (NumProtocols) { |
| 1056 | for (unsigned int i = 0; i != NumProtocols; i++) { |
| 1057 | ObjcProtocolDecl* RefPDecl = ObjcProtocols[ProtocolNames[i]]; |
| 1058 | if (!RefPDecl || RefPDecl->isForwardDecl()) |
| 1059 | Diag(ClassLoc, diag::err_undef_protocolref, |
| 1060 | ProtocolNames[i]->getName(), |
| 1061 | ClassName->getName()); |
| 1062 | IDecl->setIntfRefProtocols((int)i, RefPDecl); |
| 1063 | } |
| 1064 | IDecl->setLocEnd(EndProtoLoc); |
Fariborz Jahanian | b27c156 | 2007-09-22 00:01:35 +0000 | [diff] [blame] | 1065 | } |
Steve Naroff | 3536b44 | 2007-09-06 21:24:23 +0000 | [diff] [blame] | 1066 | return IDecl; |
| 1067 | } |
| 1068 | |
Fariborz Jahanian | 243b64b | 2007-10-11 23:42:27 +0000 | [diff] [blame] | 1069 | /// ActOnCompatiblityAlias - this action is called after complete parsing of |
| 1070 | /// @compaatibility_alias declaration. It sets up the alias relationships. |
| 1071 | Sema::DeclTy *Sema::ActOnCompatiblityAlias( |
| 1072 | SourceLocation AtCompatibilityAliasLoc, |
| 1073 | IdentifierInfo *AliasName, SourceLocation AliasLocation, |
| 1074 | IdentifierInfo *ClassName, SourceLocation ClassLocation) { |
| 1075 | // Look for previous declaration of alias name |
| 1076 | ScopedDecl *ADecl = LookupScopedDecl(AliasName, Decl::IDNS_Ordinary, |
| 1077 | AliasLocation, TUScope); |
| 1078 | if (ADecl) { |
| 1079 | if (isa<ObjcCompatibleAliasDecl>(ADecl)) { |
| 1080 | Diag(AliasLocation, diag::warn_previous_alias_decl); |
| 1081 | Diag(ADecl->getLocation(), diag::warn_previous_declaration); |
| 1082 | } |
| 1083 | else { |
| 1084 | Diag(AliasLocation, diag::err_conflicting_aliasing_type, |
| 1085 | AliasName->getName()); |
| 1086 | Diag(ADecl->getLocation(), diag::err_previous_declaration); |
| 1087 | } |
| 1088 | return 0; |
| 1089 | } |
| 1090 | // Check for class declaration |
| 1091 | ScopedDecl *CDecl = LookupScopedDecl(ClassName, Decl::IDNS_Ordinary, |
| 1092 | ClassLocation, TUScope); |
| 1093 | if (!CDecl || !isa<ObjcInterfaceDecl>(CDecl)) { |
| 1094 | Diag(ClassLocation, diag::warn_undef_interface, |
| 1095 | ClassName->getName()); |
| 1096 | if (CDecl) |
| 1097 | Diag(CDecl->getLocation(), diag::warn_previous_declaration); |
| 1098 | return 0; |
| 1099 | } |
| 1100 | // Everything checked out, instantiate a new alias declaration ast |
| 1101 | ObjcCompatibleAliasDecl *AliasDecl = |
| 1102 | new ObjcCompatibleAliasDecl(AtCompatibilityAliasLoc, |
| 1103 | AliasName, |
| 1104 | dyn_cast<ObjcInterfaceDecl>(CDecl)); |
| 1105 | |
| 1106 | // Chain & install the interface decl into the identifier. |
| 1107 | AliasDecl->setNext(AliasName->getFETokenInfo<ScopedDecl>()); |
| 1108 | AliasName->setFETokenInfo(AliasDecl); |
| 1109 | return AliasDecl; |
| 1110 | } |
| 1111 | |
Steve Naroff | e440eb8 | 2007-10-10 17:32:04 +0000 | [diff] [blame] | 1112 | Sema::DeclTy *Sema::ActOnStartProtocolInterface( |
Fariborz Jahanian | 3f5faf7 | 2007-10-04 00:45:27 +0000 | [diff] [blame] | 1113 | SourceLocation AtProtoInterfaceLoc, |
Fariborz Jahanian | 25e077d | 2007-09-17 21:07:36 +0000 | [diff] [blame] | 1114 | IdentifierInfo *ProtocolName, SourceLocation ProtocolLoc, |
Steve Naroff | f908a87 | 2007-10-30 02:23:23 +0000 | [diff] [blame] | 1115 | IdentifierInfo **ProtoRefNames, unsigned NumProtoRefs, |
| 1116 | SourceLocation EndProtoLoc) { |
Fariborz Jahanian | 25e077d | 2007-09-17 21:07:36 +0000 | [diff] [blame] | 1117 | assert(ProtocolName && "Missing protocol identifier"); |
Fariborz Jahanian | 05672a0 | 2007-10-09 18:03:53 +0000 | [diff] [blame] | 1118 | ObjcProtocolDecl *PDecl = ObjcProtocols[ProtocolName]; |
Fariborz Jahanian | 894c57f | 2007-09-21 15:40:54 +0000 | [diff] [blame] | 1119 | if (PDecl) { |
| 1120 | // Protocol already seen. Better be a forward protocol declaration |
Steve Naroff | 768f26e | 2007-10-02 20:26:23 +0000 | [diff] [blame] | 1121 | if (!PDecl->isForwardDecl()) |
Fariborz Jahanian | 894c57f | 2007-09-21 15:40:54 +0000 | [diff] [blame] | 1122 | Diag(ProtocolLoc, diag::err_duplicate_protocol_def, |
| 1123 | ProtocolName->getName()); |
| 1124 | else { |
Steve Naroff | 768f26e | 2007-10-02 20:26:23 +0000 | [diff] [blame] | 1125 | PDecl->setForwardDecl(false); |
Fariborz Jahanian | 894c57f | 2007-09-21 15:40:54 +0000 | [diff] [blame] | 1126 | PDecl->AllocReferencedProtocols(NumProtoRefs); |
| 1127 | } |
| 1128 | } |
| 1129 | else { |
| 1130 | PDecl = new ObjcProtocolDecl(AtProtoInterfaceLoc, NumProtoRefs, |
| 1131 | ProtocolName); |
Fariborz Jahanian | 05672a0 | 2007-10-09 18:03:53 +0000 | [diff] [blame] | 1132 | ObjcProtocols[ProtocolName] = PDecl; |
Fariborz Jahanian | 894c57f | 2007-09-21 15:40:54 +0000 | [diff] [blame] | 1133 | } |
| 1134 | |
Steve Naroff | 423cb56 | 2007-10-30 13:30:57 +0000 | [diff] [blame] | 1135 | if (NumProtoRefs) { |
| 1136 | /// Check then save referenced protocols |
| 1137 | for (unsigned int i = 0; i != NumProtoRefs; i++) { |
| 1138 | ObjcProtocolDecl* RefPDecl = ObjcProtocols[ProtoRefNames[i]]; |
| 1139 | if (!RefPDecl || RefPDecl->isForwardDecl()) |
| 1140 | Diag(ProtocolLoc, diag::err_undef_protocolref, |
| 1141 | ProtoRefNames[i]->getName(), |
| 1142 | ProtocolName->getName()); |
| 1143 | PDecl->setReferencedProtocols((int)i, RefPDecl); |
| 1144 | } |
| 1145 | PDecl->setLocEnd(EndProtoLoc); |
Fariborz Jahanian | 894c57f | 2007-09-21 15:40:54 +0000 | [diff] [blame] | 1146 | } |
Fariborz Jahanian | 25e077d | 2007-09-17 21:07:36 +0000 | [diff] [blame] | 1147 | return PDecl; |
| 1148 | } |
| 1149 | |
Fariborz Jahanian | 4b6c905 | 2007-10-11 00:55:41 +0000 | [diff] [blame] | 1150 | /// FindProtocolDeclaration - This routine looks up protocols and |
| 1151 | /// issuer error if they are not declared. It returns list of protocol |
| 1152 | /// declarations in its 'Protocols' argument. |
| 1153 | void |
| 1154 | Sema::FindProtocolDeclaration(SourceLocation TypeLoc, |
| 1155 | IdentifierInfo **ProtocolId, |
| 1156 | unsigned NumProtocols, |
| 1157 | llvm::SmallVector<DeclTy *,8> &Protocols) { |
Fariborz Jahanian | 245f92a | 2007-10-05 21:01:53 +0000 | [diff] [blame] | 1158 | for (unsigned i = 0; i != NumProtocols; ++i) { |
Fariborz Jahanian | 05672a0 | 2007-10-09 18:03:53 +0000 | [diff] [blame] | 1159 | ObjcProtocolDecl *PDecl = ObjcProtocols[ProtocolId[i]]; |
Fariborz Jahanian | 245f92a | 2007-10-05 21:01:53 +0000 | [diff] [blame] | 1160 | if (!PDecl) |
| 1161 | Diag(TypeLoc, diag::err_undeclared_protocol, |
| 1162 | ProtocolId[i]->getName()); |
Fariborz Jahanian | 4b6c905 | 2007-10-11 00:55:41 +0000 | [diff] [blame] | 1163 | else |
| 1164 | Protocols.push_back(PDecl); |
Fariborz Jahanian | 245f92a | 2007-10-05 21:01:53 +0000 | [diff] [blame] | 1165 | } |
Fariborz Jahanian | 245f92a | 2007-10-05 21:01:53 +0000 | [diff] [blame] | 1166 | } |
| 1167 | |
Steve Naroff | 37e58d1 | 2007-10-02 22:39:18 +0000 | [diff] [blame] | 1168 | /// ActOnForwardProtocolDeclaration - |
Fariborz Jahanian | 894c57f | 2007-09-21 15:40:54 +0000 | [diff] [blame] | 1169 | Action::DeclTy * |
Steve Naroff | e440eb8 | 2007-10-10 17:32:04 +0000 | [diff] [blame] | 1170 | Sema::ActOnForwardProtocolDeclaration(SourceLocation AtProtocolLoc, |
Fariborz Jahanian | 894c57f | 2007-09-21 15:40:54 +0000 | [diff] [blame] | 1171 | IdentifierInfo **IdentList, unsigned NumElts) { |
Chris Lattner | b97de3e | 2007-10-06 20:05:59 +0000 | [diff] [blame] | 1172 | llvm::SmallVector<ObjcProtocolDecl*, 32> Protocols; |
Fariborz Jahanian | 894c57f | 2007-09-21 15:40:54 +0000 | [diff] [blame] | 1173 | |
| 1174 | for (unsigned i = 0; i != NumElts; ++i) { |
Chris Lattner | 60c5218 | 2007-10-07 07:05:08 +0000 | [diff] [blame] | 1175 | IdentifierInfo *P = IdentList[i]; |
Fariborz Jahanian | 05672a0 | 2007-10-09 18:03:53 +0000 | [diff] [blame] | 1176 | ObjcProtocolDecl *PDecl = ObjcProtocols[P]; |
Chris Lattner | 60c5218 | 2007-10-07 07:05:08 +0000 | [diff] [blame] | 1177 | if (!PDecl) { // Not already seen? |
| 1178 | // FIXME: Pass in the location of the identifier! |
| 1179 | PDecl = new ObjcProtocolDecl(AtProtocolLoc, 0, P, true); |
Fariborz Jahanian | 05672a0 | 2007-10-09 18:03:53 +0000 | [diff] [blame] | 1180 | ObjcProtocols[P] = PDecl; |
Fariborz Jahanian | 894c57f | 2007-09-21 15:40:54 +0000 | [diff] [blame] | 1181 | } |
Fariborz Jahanian | 894c57f | 2007-09-21 15:40:54 +0000 | [diff] [blame] | 1182 | |
Chris Lattner | b97de3e | 2007-10-06 20:05:59 +0000 | [diff] [blame] | 1183 | Protocols.push_back(PDecl); |
Fariborz Jahanian | 894c57f | 2007-09-21 15:40:54 +0000 | [diff] [blame] | 1184 | } |
Chris Lattner | b97de3e | 2007-10-06 20:05:59 +0000 | [diff] [blame] | 1185 | return new ObjcForwardProtocolDecl(AtProtocolLoc, |
| 1186 | &Protocols[0], Protocols.size()); |
Fariborz Jahanian | 894c57f | 2007-09-21 15:40:54 +0000 | [diff] [blame] | 1187 | } |
| 1188 | |
Steve Naroff | e440eb8 | 2007-10-10 17:32:04 +0000 | [diff] [blame] | 1189 | Sema::DeclTy *Sema::ActOnStartCategoryInterface( |
Fariborz Jahanian | 3f5faf7 | 2007-10-04 00:45:27 +0000 | [diff] [blame] | 1190 | SourceLocation AtInterfaceLoc, |
Fariborz Jahanian | fd225cc | 2007-09-18 20:26:58 +0000 | [diff] [blame] | 1191 | IdentifierInfo *ClassName, SourceLocation ClassLoc, |
| 1192 | IdentifierInfo *CategoryName, SourceLocation CategoryLoc, |
Steve Naroff | 423cb56 | 2007-10-30 13:30:57 +0000 | [diff] [blame] | 1193 | IdentifierInfo **ProtoRefNames, unsigned NumProtoRefs, |
| 1194 | SourceLocation EndProtoLoc) { |
Chris Lattner | fd5de47 | 2007-10-06 22:53:46 +0000 | [diff] [blame] | 1195 | ObjcInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName); |
Fariborz Jahanian | 22d71d6 | 2007-10-09 17:05:22 +0000 | [diff] [blame] | 1196 | |
Fariborz Jahanian | b27c156 | 2007-09-22 00:01:35 +0000 | [diff] [blame] | 1197 | /// Check that class of this category is already completely declared. |
Fariborz Jahanian | 0332b6c | 2007-10-08 16:07:03 +0000 | [diff] [blame] | 1198 | if (!IDecl || IDecl->isForwardDecl()) { |
Fariborz Jahanian | b27c156 | 2007-09-22 00:01:35 +0000 | [diff] [blame] | 1199 | Diag(ClassLoc, diag::err_undef_interface, ClassName->getName()); |
Fariborz Jahanian | 22d71d6 | 2007-10-09 17:05:22 +0000 | [diff] [blame] | 1200 | return 0; |
Fariborz Jahanian | 0332b6c | 2007-10-08 16:07:03 +0000 | [diff] [blame] | 1201 | } |
Fariborz Jahanian | 8fe5c2a | 2007-10-09 18:22:59 +0000 | [diff] [blame] | 1202 | ObjcCategoryDecl *CDecl = new ObjcCategoryDecl(AtInterfaceLoc, NumProtoRefs, |
| 1203 | CategoryName); |
| 1204 | CDecl->setClassInterface(IDecl); |
| 1205 | /// Check for duplicate interface declaration for this category |
| 1206 | ObjcCategoryDecl *CDeclChain; |
Steve Naroff | 3d58138 | 2007-10-14 18:27:41 +0000 | [diff] [blame] | 1207 | for (CDeclChain = IDecl->getCategoryList(); CDeclChain; |
Fariborz Jahanian | 8fe5c2a | 2007-10-09 18:22:59 +0000 | [diff] [blame] | 1208 | CDeclChain = CDeclChain->getNextClassCategory()) { |
| 1209 | if (CDeclChain->getIdentifier() == CategoryName) { |
| 1210 | Diag(CategoryLoc, diag::err_dup_category_def, ClassName->getName(), |
| 1211 | CategoryName->getName()); |
| 1212 | break; |
Fariborz Jahanian | b27c156 | 2007-09-22 00:01:35 +0000 | [diff] [blame] | 1213 | } |
Fariborz Jahanian | b27c156 | 2007-09-22 00:01:35 +0000 | [diff] [blame] | 1214 | } |
Fariborz Jahanian | 8fe5c2a | 2007-10-09 18:22:59 +0000 | [diff] [blame] | 1215 | if (!CDeclChain) |
| 1216 | CDecl->insertNextClassCategory(); |
| 1217 | |
Steve Naroff | 423cb56 | 2007-10-30 13:30:57 +0000 | [diff] [blame] | 1218 | if (NumProtoRefs) { |
| 1219 | /// Check then save referenced protocols |
| 1220 | for (unsigned int i = 0; i != NumProtoRefs; i++) { |
| 1221 | ObjcProtocolDecl* RefPDecl = ObjcProtocols[ProtoRefNames[i]]; |
| 1222 | if (!RefPDecl || RefPDecl->isForwardDecl()) { |
| 1223 | Diag(CategoryLoc, diag::err_undef_protocolref, |
| 1224 | ProtoRefNames[i]->getName(), |
| 1225 | CategoryName->getName()); |
| 1226 | } |
| 1227 | CDecl->setCatReferencedProtocols((int)i, RefPDecl); |
Fariborz Jahanian | 0332b6c | 2007-10-08 16:07:03 +0000 | [diff] [blame] | 1228 | } |
Steve Naroff | 423cb56 | 2007-10-30 13:30:57 +0000 | [diff] [blame] | 1229 | CDecl->setLocEnd(EndProtoLoc); |
Fariborz Jahanian | b27c156 | 2007-09-22 00:01:35 +0000 | [diff] [blame] | 1230 | } |
Fariborz Jahanian | 22d71d6 | 2007-10-09 17:05:22 +0000 | [diff] [blame] | 1231 | return CDecl; |
Fariborz Jahanian | fd225cc | 2007-09-18 20:26:58 +0000 | [diff] [blame] | 1232 | } |
Fariborz Jahanian | bd51b87 | 2007-09-20 20:26:44 +0000 | [diff] [blame] | 1233 | |
Steve Naroff | 3a165b0 | 2007-10-03 21:00:46 +0000 | [diff] [blame] | 1234 | /// ActOnStartCategoryImplementation - Perform semantic checks on the |
Fariborz Jahanian | 8f3fde0 | 2007-10-02 16:38:50 +0000 | [diff] [blame] | 1235 | /// category implementation declaration and build an ObjcCategoryImplDecl |
| 1236 | /// object. |
Steve Naroff | e440eb8 | 2007-10-10 17:32:04 +0000 | [diff] [blame] | 1237 | Sema::DeclTy *Sema::ActOnStartCategoryImplementation( |
Fariborz Jahanian | 8f3fde0 | 2007-10-02 16:38:50 +0000 | [diff] [blame] | 1238 | SourceLocation AtCatImplLoc, |
| 1239 | IdentifierInfo *ClassName, SourceLocation ClassLoc, |
| 1240 | IdentifierInfo *CatName, SourceLocation CatLoc) { |
Steve Naroff | 6a8a9a4 | 2007-10-02 20:01:56 +0000 | [diff] [blame] | 1241 | ObjcInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName); |
Fariborz Jahanian | 8f3fde0 | 2007-10-02 16:38:50 +0000 | [diff] [blame] | 1242 | ObjcCategoryImplDecl *CDecl = new ObjcCategoryImplDecl(AtCatImplLoc, |
Chris Lattner | 6a0e89e | 2007-10-06 23:12:31 +0000 | [diff] [blame] | 1243 | CatName, IDecl); |
Fariborz Jahanian | 8f3fde0 | 2007-10-02 16:38:50 +0000 | [diff] [blame] | 1244 | /// Check that class of this category is already completely declared. |
Steve Naroff | 768f26e | 2007-10-02 20:26:23 +0000 | [diff] [blame] | 1245 | if (!IDecl || IDecl->isForwardDecl()) |
Fariborz Jahanian | 8f3fde0 | 2007-10-02 16:38:50 +0000 | [diff] [blame] | 1246 | Diag(ClassLoc, diag::err_undef_interface, ClassName->getName()); |
Steve Naroff | 8ee529b | 2007-10-31 18:42:27 +0000 | [diff] [blame] | 1247 | |
Fariborz Jahanian | 8f3fde0 | 2007-10-02 16:38:50 +0000 | [diff] [blame] | 1248 | /// TODO: Check that CatName, category name, is not used in another |
| 1249 | // implementation. |
| 1250 | return CDecl; |
| 1251 | } |
| 1252 | |
Steve Naroff | e440eb8 | 2007-10-10 17:32:04 +0000 | [diff] [blame] | 1253 | Sema::DeclTy *Sema::ActOnStartClassImplementation( |
Fariborz Jahanian | ccb4f31 | 2007-09-25 18:38:09 +0000 | [diff] [blame] | 1254 | SourceLocation AtClassImplLoc, |
| 1255 | IdentifierInfo *ClassName, SourceLocation ClassLoc, |
| 1256 | IdentifierInfo *SuperClassname, |
| 1257 | SourceLocation SuperClassLoc) { |
| 1258 | ObjcInterfaceDecl* IDecl = 0; |
| 1259 | // Check for another declaration kind with the same name. |
Fariborz Jahanian | 4cabdfc | 2007-10-12 19:38:20 +0000 | [diff] [blame] | 1260 | ScopedDecl *PrevDecl = LookupInterfaceDecl(ClassName); |
Fariborz Jahanian | ccb4f31 | 2007-09-25 18:38:09 +0000 | [diff] [blame] | 1261 | if (PrevDecl && !isa<ObjcInterfaceDecl>(PrevDecl)) { |
| 1262 | Diag(ClassLoc, diag::err_redefinition_different_kind, |
| 1263 | ClassName->getName()); |
| 1264 | Diag(PrevDecl->getLocation(), diag::err_previous_definition); |
| 1265 | } |
| 1266 | else { |
| 1267 | // Is there an interface declaration of this class; if not, warn! |
Fariborz Jahanian | 4cabdfc | 2007-10-12 19:38:20 +0000 | [diff] [blame] | 1268 | IDecl = dyn_cast_or_null<ObjcInterfaceDecl>(PrevDecl); |
Fariborz Jahanian | ccb4f31 | 2007-09-25 18:38:09 +0000 | [diff] [blame] | 1269 | if (!IDecl) |
| 1270 | Diag(ClassLoc, diag::warn_undef_interface, ClassName->getName()); |
| 1271 | } |
| 1272 | |
| 1273 | // Check that super class name is valid class name |
| 1274 | ObjcInterfaceDecl* SDecl = 0; |
| 1275 | if (SuperClassname) { |
| 1276 | // Check if a different kind of symbol declared in this scope. |
Fariborz Jahanian | 4cabdfc | 2007-10-12 19:38:20 +0000 | [diff] [blame] | 1277 | PrevDecl = LookupInterfaceDecl(SuperClassname); |
Fariborz Jahanian | 05672a0 | 2007-10-09 18:03:53 +0000 | [diff] [blame] | 1278 | if (PrevDecl && !isa<ObjcInterfaceDecl>(PrevDecl)) { |
Fariborz Jahanian | ccb4f31 | 2007-09-25 18:38:09 +0000 | [diff] [blame] | 1279 | Diag(SuperClassLoc, diag::err_redefinition_different_kind, |
| 1280 | SuperClassname->getName()); |
| 1281 | Diag(PrevDecl->getLocation(), diag::err_previous_definition); |
| 1282 | } |
| 1283 | else { |
Fariborz Jahanian | 4cabdfc | 2007-10-12 19:38:20 +0000 | [diff] [blame] | 1284 | SDecl = dyn_cast_or_null<ObjcInterfaceDecl>(PrevDecl); |
Fariborz Jahanian | ccb4f31 | 2007-09-25 18:38:09 +0000 | [diff] [blame] | 1285 | if (!SDecl) |
| 1286 | Diag(SuperClassLoc, diag::err_undef_superclass, |
| 1287 | SuperClassname->getName(), ClassName->getName()); |
| 1288 | else if (IDecl && IDecl->getSuperClass() != SDecl) { |
| 1289 | // This implementation and its interface do not have the same |
| 1290 | // super class. |
| 1291 | Diag(SuperClassLoc, diag::err_conflicting_super_class, |
Fariborz Jahanian | 4cabdfc | 2007-10-12 19:38:20 +0000 | [diff] [blame] | 1292 | SDecl->getName()); |
Fariborz Jahanian | ccb4f31 | 2007-09-25 18:38:09 +0000 | [diff] [blame] | 1293 | Diag(SDecl->getLocation(), diag::err_previous_definition); |
| 1294 | } |
| 1295 | } |
| 1296 | } |
| 1297 | |
Fariborz Jahanian | 0da1c10 | 2007-09-25 21:00:20 +0000 | [diff] [blame] | 1298 | if (!IDecl) { |
| 1299 | // Legacy case of @implementation with no corresponding @interface. |
| 1300 | // Build, chain & install the interface decl into the identifier. |
Fariborz Jahanian | 3a3ca1b | 2007-10-31 18:48:14 +0000 | [diff] [blame] | 1301 | IDecl = new ObjcInterfaceDecl(AtClassImplLoc, 0, ClassName, |
| 1302 | false, true); |
Fariborz Jahanian | 0da1c10 | 2007-09-25 21:00:20 +0000 | [diff] [blame] | 1303 | IDecl->setNext(ClassName->getFETokenInfo<ScopedDecl>()); |
| 1304 | ClassName->setFETokenInfo(IDecl); |
Fariborz Jahanian | 7780d2d | 2007-10-26 20:50:24 +0000 | [diff] [blame] | 1305 | IDecl->setSuperClass(SDecl); |
Fariborz Jahanian | 3a3ca1b | 2007-10-31 18:48:14 +0000 | [diff] [blame] | 1306 | IDecl->setLocEnd(ClassLoc); |
Fariborz Jahanian | 0da1c10 | 2007-09-25 21:00:20 +0000 | [diff] [blame] | 1307 | |
Fariborz Jahanian | be127ba | 2007-10-15 19:16:57 +0000 | [diff] [blame] | 1308 | // Remember that this needs to be removed when the scope is popped. |
| 1309 | TUScope->AddDecl(IDecl); |
Fariborz Jahanian | 0da1c10 | 2007-09-25 21:00:20 +0000 | [diff] [blame] | 1310 | } |
Fariborz Jahanian | ccb4f31 | 2007-09-25 18:38:09 +0000 | [diff] [blame] | 1311 | |
Fariborz Jahanian | f4d331d | 2007-10-18 22:09:03 +0000 | [diff] [blame] | 1312 | ObjcImplementationDecl* IMPDecl = |
| 1313 | new ObjcImplementationDecl(AtClassImplLoc, ClassName, IDecl, SDecl); |
| 1314 | |
Fariborz Jahanian | ccb4f31 | 2007-09-25 18:38:09 +0000 | [diff] [blame] | 1315 | // Check that there is no duplicate implementation of this class. |
Chris Lattner | f387668 | 2007-10-07 01:13:46 +0000 | [diff] [blame] | 1316 | if (!ObjcImplementations.insert(ClassName)) |
| 1317 | Diag(ClassLoc, diag::err_dup_implementation_class, ClassName->getName()); |
Fariborz Jahanian | bb60846 | 2007-10-30 18:27:03 +0000 | [diff] [blame] | 1318 | |
Fariborz Jahanian | ccb4f31 | 2007-09-25 18:38:09 +0000 | [diff] [blame] | 1319 | return IMPDecl; |
| 1320 | } |
| 1321 | |
Steve Naroff | a5997c4 | 2007-10-02 21:43:37 +0000 | [diff] [blame] | 1322 | void Sema::CheckImplementationIvars(ObjcImplementationDecl *ImpDecl, |
Fariborz Jahanian | 3a3ca1b | 2007-10-31 18:48:14 +0000 | [diff] [blame] | 1323 | ObjcIvarDecl **ivars, unsigned numIvars, |
| 1324 | SourceLocation RBrace) { |
Steve Naroff | a5997c4 | 2007-10-02 21:43:37 +0000 | [diff] [blame] | 1325 | assert(ImpDecl && "missing implementation decl"); |
| 1326 | ObjcInterfaceDecl* IDecl = getObjCInterfaceDecl(ImpDecl->getIdentifier()); |
Fariborz Jahanian | 7780d2d | 2007-10-26 20:50:24 +0000 | [diff] [blame] | 1327 | if (!IDecl) |
Steve Naroff | a5997c4 | 2007-10-02 21:43:37 +0000 | [diff] [blame] | 1328 | return; |
Fariborz Jahanian | 7780d2d | 2007-10-26 20:50:24 +0000 | [diff] [blame] | 1329 | /// Check case of non-existing @interface decl. |
| 1330 | /// (legacy objective-c @implementation decl without an @interface decl). |
| 1331 | /// Add implementations's ivar to the synthesize class's ivar list. |
| 1332 | if (IDecl->ImplicitInterfaceDecl()) { |
Fariborz Jahanian | 3a3ca1b | 2007-10-31 18:48:14 +0000 | [diff] [blame] | 1333 | IDecl->addInstanceVariablesToClass(ivars, numIvars, RBrace); |
Fariborz Jahanian | 7780d2d | 2007-10-26 20:50:24 +0000 | [diff] [blame] | 1334 | return; |
| 1335 | } |
Fariborz Jahanian | f1de0ca | 2007-10-31 23:53:01 +0000 | [diff] [blame] | 1336 | // If implementation has empty ivar list, just return. |
| 1337 | if (numIvars == 0) |
| 1338 | return; |
Fariborz Jahanian | 7780d2d | 2007-10-26 20:50:24 +0000 | [diff] [blame] | 1339 | |
Fariborz Jahanian | d0b90bf | 2007-09-26 18:27:25 +0000 | [diff] [blame] | 1340 | assert(ivars && "missing @implementation ivars"); |
| 1341 | |
Steve Naroff | a5997c4 | 2007-10-02 21:43:37 +0000 | [diff] [blame] | 1342 | // Check interface's Ivar list against those in the implementation. |
| 1343 | // names and types must match. |
| 1344 | // |
Fariborz Jahanian | d0b90bf | 2007-09-26 18:27:25 +0000 | [diff] [blame] | 1345 | ObjcIvarDecl** IntfIvars = IDecl->getIntfDeclIvars(); |
| 1346 | int IntfNumIvars = IDecl->getIntfDeclNumIvars(); |
| 1347 | unsigned j = 0; |
| 1348 | bool err = false; |
| 1349 | while (numIvars > 0 && IntfNumIvars > 0) { |
| 1350 | ObjcIvarDecl* ImplIvar = ivars[j]; |
| 1351 | ObjcIvarDecl* ClsIvar = IntfIvars[j++]; |
| 1352 | assert (ImplIvar && "missing implementation ivar"); |
| 1353 | assert (ClsIvar && "missing class ivar"); |
| 1354 | if (ImplIvar->getCanonicalType() != ClsIvar->getCanonicalType()) { |
| 1355 | Diag(ImplIvar->getLocation(), diag::err_conflicting_ivar_type, |
| 1356 | ImplIvar->getIdentifier()->getName()); |
| 1357 | Diag(ClsIvar->getLocation(), diag::err_previous_definition, |
| 1358 | ClsIvar->getIdentifier()->getName()); |
| 1359 | } |
| 1360 | // TODO: Two mismatched (unequal width) Ivar bitfields should be diagnosed |
| 1361 | // as error. |
| 1362 | else if (ImplIvar->getIdentifier() != ClsIvar->getIdentifier()) { |
| 1363 | Diag(ImplIvar->getLocation(), diag::err_conflicting_ivar_name, |
| 1364 | ImplIvar->getIdentifier()->getName()); |
| 1365 | Diag(ClsIvar->getLocation(), diag::err_previous_definition, |
| 1366 | ClsIvar->getIdentifier()->getName()); |
| 1367 | err = true; |
| 1368 | break; |
| 1369 | } |
| 1370 | --numIvars; |
| 1371 | --IntfNumIvars; |
| 1372 | } |
| 1373 | if (!err && (numIvars > 0 || IntfNumIvars > 0)) |
| 1374 | Diag(numIvars > 0 ? ivars[j]->getLocation() : IntfIvars[j]->getLocation(), |
| 1375 | diag::err_inconsistant_ivar); |
| 1376 | |
| 1377 | } |
| 1378 | |
Fariborz Jahanian | 00ae8d5 | 2007-09-28 17:40:07 +0000 | [diff] [blame] | 1379 | /// CheckProtocolMethodDefs - This routine checks unimpletented methods |
| 1380 | /// Declared in protocol, and those referenced by it. |
Fariborz Jahanian | 8c74fa4 | 2007-09-29 17:14:55 +0000 | [diff] [blame] | 1381 | void Sema::CheckProtocolMethodDefs(ObjcProtocolDecl *PDecl, |
Fariborz Jahanian | ca3adf7 | 2007-10-02 20:06:01 +0000 | [diff] [blame] | 1382 | bool& IncompleteImpl, |
Steve Naroff | eefc418 | 2007-10-08 21:05:34 +0000 | [diff] [blame] | 1383 | const llvm::DenseSet<Selector> &InsMap, |
Chris Lattner | 8599426 | 2007-10-05 20:15:24 +0000 | [diff] [blame] | 1384 | const llvm::DenseSet<Selector> &ClsMap) { |
Fariborz Jahanian | 00ae8d5 | 2007-09-28 17:40:07 +0000 | [diff] [blame] | 1385 | // check unimplemented instance methods. |
Fariborz Jahanian | 7ed9e0f | 2007-10-02 22:05:16 +0000 | [diff] [blame] | 1386 | ObjcMethodDecl** methods = PDecl->getInstanceMethods(); |
Fariborz Jahanian | 85ff264 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 1387 | for (int j = 0; j < PDecl->getNumInstanceMethods(); j++) { |
Steve Naroff | eefc418 | 2007-10-08 21:05:34 +0000 | [diff] [blame] | 1388 | if (!InsMap.count(methods[j]->getSelector())) { |
Fariborz Jahanian | 8c74fa4 | 2007-09-29 17:14:55 +0000 | [diff] [blame] | 1389 | Diag(methods[j]->getLocation(), diag::warn_undef_method_impl, |
Chris Lattner | f836e3f | 2007-10-07 01:33:16 +0000 | [diff] [blame] | 1390 | methods[j]->getSelector().getName()); |
Fariborz Jahanian | ca3adf7 | 2007-10-02 20:06:01 +0000 | [diff] [blame] | 1391 | IncompleteImpl = true; |
Fariborz Jahanian | 00ae8d5 | 2007-09-28 17:40:07 +0000 | [diff] [blame] | 1392 | } |
Fariborz Jahanian | 85ff264 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 1393 | } |
Fariborz Jahanian | 00ae8d5 | 2007-09-28 17:40:07 +0000 | [diff] [blame] | 1394 | // check unimplemented class methods |
Fariborz Jahanian | 7ed9e0f | 2007-10-02 22:05:16 +0000 | [diff] [blame] | 1395 | methods = PDecl->getClassMethods(); |
| 1396 | for (int j = 0; j < PDecl->getNumClassMethods(); j++) |
Chris Lattner | 8599426 | 2007-10-05 20:15:24 +0000 | [diff] [blame] | 1397 | if (!ClsMap.count(methods[j]->getSelector())) { |
Fariborz Jahanian | 8c74fa4 | 2007-09-29 17:14:55 +0000 | [diff] [blame] | 1398 | Diag(methods[j]->getLocation(), diag::warn_undef_method_impl, |
Chris Lattner | f836e3f | 2007-10-07 01:33:16 +0000 | [diff] [blame] | 1399 | methods[j]->getSelector().getName()); |
Fariborz Jahanian | ca3adf7 | 2007-10-02 20:06:01 +0000 | [diff] [blame] | 1400 | IncompleteImpl = true; |
Fariborz Jahanian | 00ae8d5 | 2007-09-28 17:40:07 +0000 | [diff] [blame] | 1401 | } |
Fariborz Jahanian | d0b0154 | 2007-09-27 18:57:03 +0000 | [diff] [blame] | 1402 | |
Fariborz Jahanian | 00ae8d5 | 2007-09-28 17:40:07 +0000 | [diff] [blame] | 1403 | // Check on this protocols's referenced protocols, recursively |
| 1404 | ObjcProtocolDecl** RefPDecl = PDecl->getReferencedProtocols(); |
| 1405 | for (int i = 0; i < PDecl->getNumReferencedProtocols(); i++) |
Fariborz Jahanian | ca3adf7 | 2007-10-02 20:06:01 +0000 | [diff] [blame] | 1406 | CheckProtocolMethodDefs(RefPDecl[i], IncompleteImpl, InsMap, ClsMap); |
Fariborz Jahanian | 00ae8d5 | 2007-09-28 17:40:07 +0000 | [diff] [blame] | 1407 | } |
| 1408 | |
Fariborz Jahanian | 8c74fa4 | 2007-09-29 17:14:55 +0000 | [diff] [blame] | 1409 | void Sema::ImplMethodsVsClassMethods(ObjcImplementationDecl* IMPDecl, |
| 1410 | ObjcInterfaceDecl* IDecl) { |
Steve Naroff | eefc418 | 2007-10-08 21:05:34 +0000 | [diff] [blame] | 1411 | llvm::DenseSet<Selector> InsMap; |
Fariborz Jahanian | d0b0154 | 2007-09-27 18:57:03 +0000 | [diff] [blame] | 1412 | // Check and see if instance methods in class interface have been |
| 1413 | // implemented in the implementation class. |
Fariborz Jahanian | 7ed9e0f | 2007-10-02 22:05:16 +0000 | [diff] [blame] | 1414 | ObjcMethodDecl **methods = IMPDecl->getInstanceMethods(); |
Fariborz Jahanian | 85ff264 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 1415 | for (int i=0; i < IMPDecl->getNumInstanceMethods(); i++) |
Steve Naroff | eefc418 | 2007-10-08 21:05:34 +0000 | [diff] [blame] | 1416 | InsMap.insert(methods[i]->getSelector()); |
Fariborz Jahanian | d0b0154 | 2007-09-27 18:57:03 +0000 | [diff] [blame] | 1417 | |
Fariborz Jahanian | ca3adf7 | 2007-10-02 20:06:01 +0000 | [diff] [blame] | 1418 | bool IncompleteImpl = false; |
Fariborz Jahanian | 7ed9e0f | 2007-10-02 22:05:16 +0000 | [diff] [blame] | 1419 | methods = IDecl->getInstanceMethods(); |
| 1420 | for (int j = 0; j < IDecl->getNumInstanceMethods(); j++) |
Steve Naroff | eefc418 | 2007-10-08 21:05:34 +0000 | [diff] [blame] | 1421 | if (!InsMap.count(methods[j]->getSelector())) { |
Fariborz Jahanian | 8c74fa4 | 2007-09-29 17:14:55 +0000 | [diff] [blame] | 1422 | Diag(methods[j]->getLocation(), diag::warn_undef_method_impl, |
Chris Lattner | f836e3f | 2007-10-07 01:33:16 +0000 | [diff] [blame] | 1423 | methods[j]->getSelector().getName()); |
Fariborz Jahanian | ca3adf7 | 2007-10-02 20:06:01 +0000 | [diff] [blame] | 1424 | IncompleteImpl = true; |
Fariborz Jahanian | d0b0154 | 2007-09-27 18:57:03 +0000 | [diff] [blame] | 1425 | } |
Chris Lattner | 8599426 | 2007-10-05 20:15:24 +0000 | [diff] [blame] | 1426 | llvm::DenseSet<Selector> ClsMap; |
Fariborz Jahanian | d0b0154 | 2007-09-27 18:57:03 +0000 | [diff] [blame] | 1427 | // Check and see if class methods in class interface have been |
| 1428 | // implemented in the implementation class. |
Fariborz Jahanian | 7ed9e0f | 2007-10-02 22:05:16 +0000 | [diff] [blame] | 1429 | methods = IMPDecl->getClassMethods(); |
Fariborz Jahanian | 85ff264 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 1430 | for (int i=0; i < IMPDecl->getNumClassMethods(); i++) |
Chris Lattner | 8599426 | 2007-10-05 20:15:24 +0000 | [diff] [blame] | 1431 | ClsMap.insert(methods[i]->getSelector()); |
Fariborz Jahanian | d0b0154 | 2007-09-27 18:57:03 +0000 | [diff] [blame] | 1432 | |
Fariborz Jahanian | 7ed9e0f | 2007-10-02 22:05:16 +0000 | [diff] [blame] | 1433 | methods = IDecl->getClassMethods(); |
| 1434 | for (int j = 0; j < IDecl->getNumClassMethods(); j++) |
Chris Lattner | 8599426 | 2007-10-05 20:15:24 +0000 | [diff] [blame] | 1435 | if (!ClsMap.count(methods[j]->getSelector())) { |
Fariborz Jahanian | 8c74fa4 | 2007-09-29 17:14:55 +0000 | [diff] [blame] | 1436 | Diag(methods[j]->getLocation(), diag::warn_undef_method_impl, |
Chris Lattner | f836e3f | 2007-10-07 01:33:16 +0000 | [diff] [blame] | 1437 | methods[j]->getSelector().getName()); |
Fariborz Jahanian | ca3adf7 | 2007-10-02 20:06:01 +0000 | [diff] [blame] | 1438 | IncompleteImpl = true; |
Fariborz Jahanian | d0b0154 | 2007-09-27 18:57:03 +0000 | [diff] [blame] | 1439 | } |
Fariborz Jahanian | 00ae8d5 | 2007-09-28 17:40:07 +0000 | [diff] [blame] | 1440 | |
| 1441 | // Check the protocol list for unimplemented methods in the @implementation |
| 1442 | // class. |
Fariborz Jahanian | 7ed9e0f | 2007-10-02 22:05:16 +0000 | [diff] [blame] | 1443 | ObjcProtocolDecl** protocols = IDecl->getReferencedProtocols(); |
Chris Lattner | 8599426 | 2007-10-05 20:15:24 +0000 | [diff] [blame] | 1444 | for (int i = 0; i < IDecl->getNumIntfRefProtocols(); i++) |
| 1445 | CheckProtocolMethodDefs(protocols[i], IncompleteImpl, InsMap, ClsMap); |
| 1446 | |
Fariborz Jahanian | ca3adf7 | 2007-10-02 20:06:01 +0000 | [diff] [blame] | 1447 | if (IncompleteImpl) |
Fariborz Jahanian | 4b6df3f | 2007-10-04 00:22:33 +0000 | [diff] [blame] | 1448 | Diag(IMPDecl->getLocation(), diag::warn_incomplete_impl_class, |
| 1449 | IMPDecl->getName()); |
Fariborz Jahanian | 8f3fde0 | 2007-10-02 16:38:50 +0000 | [diff] [blame] | 1450 | } |
| 1451 | |
| 1452 | /// ImplCategoryMethodsVsIntfMethods - Checks that methods declared in the |
| 1453 | /// category interface is implemented in the category @implementation. |
| 1454 | void Sema::ImplCategoryMethodsVsIntfMethods(ObjcCategoryImplDecl *CatImplDecl, |
| 1455 | ObjcCategoryDecl *CatClassDecl) { |
Steve Naroff | eefc418 | 2007-10-08 21:05:34 +0000 | [diff] [blame] | 1456 | llvm::DenseSet<Selector> InsMap; |
Fariborz Jahanian | 8f3fde0 | 2007-10-02 16:38:50 +0000 | [diff] [blame] | 1457 | // Check and see if instance methods in category interface have been |
| 1458 | // implemented in its implementation class. |
Fariborz Jahanian | 7ed9e0f | 2007-10-02 22:05:16 +0000 | [diff] [blame] | 1459 | ObjcMethodDecl **methods = CatImplDecl->getInstanceMethods(); |
Fariborz Jahanian | 85ff264 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 1460 | for (int i=0; i < CatImplDecl->getNumInstanceMethods(); i++) |
Steve Naroff | eefc418 | 2007-10-08 21:05:34 +0000 | [diff] [blame] | 1461 | InsMap.insert(methods[i]->getSelector()); |
Fariborz Jahanian | 8f3fde0 | 2007-10-02 16:38:50 +0000 | [diff] [blame] | 1462 | |
Fariborz Jahanian | ca3adf7 | 2007-10-02 20:06:01 +0000 | [diff] [blame] | 1463 | bool IncompleteImpl = false; |
Fariborz Jahanian | 7ed9e0f | 2007-10-02 22:05:16 +0000 | [diff] [blame] | 1464 | methods = CatClassDecl->getInstanceMethods(); |
| 1465 | for (int j = 0; j < CatClassDecl->getNumInstanceMethods(); j++) |
Steve Naroff | eefc418 | 2007-10-08 21:05:34 +0000 | [diff] [blame] | 1466 | if (!InsMap.count(methods[j]->getSelector())) { |
Fariborz Jahanian | 8f3fde0 | 2007-10-02 16:38:50 +0000 | [diff] [blame] | 1467 | Diag(methods[j]->getLocation(), diag::warn_undef_method_impl, |
Chris Lattner | f836e3f | 2007-10-07 01:33:16 +0000 | [diff] [blame] | 1468 | methods[j]->getSelector().getName()); |
Fariborz Jahanian | ca3adf7 | 2007-10-02 20:06:01 +0000 | [diff] [blame] | 1469 | IncompleteImpl = true; |
Fariborz Jahanian | 8f3fde0 | 2007-10-02 16:38:50 +0000 | [diff] [blame] | 1470 | } |
Chris Lattner | 8599426 | 2007-10-05 20:15:24 +0000 | [diff] [blame] | 1471 | llvm::DenseSet<Selector> ClsMap; |
Fariborz Jahanian | 8f3fde0 | 2007-10-02 16:38:50 +0000 | [diff] [blame] | 1472 | // Check and see if class methods in category interface have been |
| 1473 | // implemented in its implementation class. |
Fariborz Jahanian | 7ed9e0f | 2007-10-02 22:05:16 +0000 | [diff] [blame] | 1474 | methods = CatImplDecl->getClassMethods(); |
Fariborz Jahanian | 85ff264 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 1475 | for (int i=0; i < CatImplDecl->getNumClassMethods(); i++) |
Chris Lattner | 8599426 | 2007-10-05 20:15:24 +0000 | [diff] [blame] | 1476 | ClsMap.insert(methods[i]->getSelector()); |
Fariborz Jahanian | 8f3fde0 | 2007-10-02 16:38:50 +0000 | [diff] [blame] | 1477 | |
Fariborz Jahanian | 7ed9e0f | 2007-10-02 22:05:16 +0000 | [diff] [blame] | 1478 | methods = CatClassDecl->getClassMethods(); |
| 1479 | for (int j = 0; j < CatClassDecl->getNumClassMethods(); j++) |
Chris Lattner | 8599426 | 2007-10-05 20:15:24 +0000 | [diff] [blame] | 1480 | if (!ClsMap.count(methods[j]->getSelector())) { |
Fariborz Jahanian | 8f3fde0 | 2007-10-02 16:38:50 +0000 | [diff] [blame] | 1481 | Diag(methods[j]->getLocation(), diag::warn_undef_method_impl, |
Chris Lattner | f836e3f | 2007-10-07 01:33:16 +0000 | [diff] [blame] | 1482 | methods[j]->getSelector().getName()); |
Fariborz Jahanian | ca3adf7 | 2007-10-02 20:06:01 +0000 | [diff] [blame] | 1483 | IncompleteImpl = true; |
Fariborz Jahanian | 8f3fde0 | 2007-10-02 16:38:50 +0000 | [diff] [blame] | 1484 | } |
| 1485 | |
| 1486 | // Check the protocol list for unimplemented methods in the @implementation |
| 1487 | // class. |
Fariborz Jahanian | 7ed9e0f | 2007-10-02 22:05:16 +0000 | [diff] [blame] | 1488 | ObjcProtocolDecl** protocols = CatClassDecl->getReferencedProtocols(); |
| 1489 | for (int i = 0; i < CatClassDecl->getNumReferencedProtocols(); i++) { |
Fariborz Jahanian | 8f3fde0 | 2007-10-02 16:38:50 +0000 | [diff] [blame] | 1490 | ObjcProtocolDecl* PDecl = protocols[i]; |
Fariborz Jahanian | ca3adf7 | 2007-10-02 20:06:01 +0000 | [diff] [blame] | 1491 | CheckProtocolMethodDefs(PDecl, IncompleteImpl, InsMap, ClsMap); |
Fariborz Jahanian | 8f3fde0 | 2007-10-02 16:38:50 +0000 | [diff] [blame] | 1492 | } |
Fariborz Jahanian | ca3adf7 | 2007-10-02 20:06:01 +0000 | [diff] [blame] | 1493 | if (IncompleteImpl) |
Fariborz Jahanian | 4b6df3f | 2007-10-04 00:22:33 +0000 | [diff] [blame] | 1494 | Diag(CatImplDecl->getLocation(), diag::warn_incomplete_impl_category, |
Chris Lattner | fd5de47 | 2007-10-06 22:53:46 +0000 | [diff] [blame] | 1495 | CatClassDecl->getName()); |
Fariborz Jahanian | d0b0154 | 2007-09-27 18:57:03 +0000 | [diff] [blame] | 1496 | } |
| 1497 | |
Steve Naroff | 37e58d1 | 2007-10-02 22:39:18 +0000 | [diff] [blame] | 1498 | /// ActOnForwardClassDeclaration - |
Steve Naroff | 3536b44 | 2007-09-06 21:24:23 +0000 | [diff] [blame] | 1499 | Action::DeclTy * |
Steve Naroff | e440eb8 | 2007-10-10 17:32:04 +0000 | [diff] [blame] | 1500 | Sema::ActOnForwardClassDeclaration(SourceLocation AtClassLoc, |
Steve Naroff | 37e58d1 | 2007-10-02 22:39:18 +0000 | [diff] [blame] | 1501 | IdentifierInfo **IdentList, unsigned NumElts) |
| 1502 | { |
Chris Lattner | 7e62072 | 2007-10-06 20:08:36 +0000 | [diff] [blame] | 1503 | llvm::SmallVector<ObjcInterfaceDecl*, 32> Interfaces; |
| 1504 | |
Steve Naroff | 3536b44 | 2007-09-06 21:24:23 +0000 | [diff] [blame] | 1505 | for (unsigned i = 0; i != NumElts; ++i) { |
Fariborz Jahanian | be127ba | 2007-10-15 19:16:57 +0000 | [diff] [blame] | 1506 | // Check for another declaration kind with the same name. |
| 1507 | ScopedDecl *PrevDecl = LookupInterfaceDecl(IdentList[i]); |
| 1508 | if (PrevDecl && !isa<ObjcInterfaceDecl>(PrevDecl)) { |
| 1509 | Diag(AtClassLoc, diag::err_redefinition_different_kind, |
| 1510 | IdentList[i]->getName()); |
| 1511 | Diag(PrevDecl->getLocation(), diag::err_previous_definition); |
| 1512 | } |
| 1513 | ObjcInterfaceDecl *IDecl = dyn_cast_or_null<ObjcInterfaceDecl>(PrevDecl); |
Chris Lattner | 7e62072 | 2007-10-06 20:08:36 +0000 | [diff] [blame] | 1514 | if (!IDecl) { // Not already seen? Make a forward decl. |
Fariborz Jahanian | be127ba | 2007-10-15 19:16:57 +0000 | [diff] [blame] | 1515 | IDecl = new ObjcInterfaceDecl(AtClassLoc, 0, IdentList[i], true); |
Fariborz Jahanian | bd51b87 | 2007-09-20 20:26:44 +0000 | [diff] [blame] | 1516 | // Chain & install the interface decl into the identifier. |
| 1517 | IDecl->setNext(IdentList[i]->getFETokenInfo<ScopedDecl>()); |
| 1518 | IdentList[i]->setFETokenInfo(IDecl); |
Chris Lattner | 60c5218 | 2007-10-07 07:05:08 +0000 | [diff] [blame] | 1519 | |
| 1520 | // Remember that this needs to be removed when the scope is popped. |
Steve Naroff | e440eb8 | 2007-10-10 17:32:04 +0000 | [diff] [blame] | 1521 | TUScope->AddDecl(IDecl); |
Fariborz Jahanian | bd51b87 | 2007-09-20 20:26:44 +0000 | [diff] [blame] | 1522 | } |
Chris Lattner | 7e62072 | 2007-10-06 20:08:36 +0000 | [diff] [blame] | 1523 | |
| 1524 | Interfaces.push_back(IDecl); |
Steve Naroff | 3536b44 | 2007-09-06 21:24:23 +0000 | [diff] [blame] | 1525 | } |
Chris Lattner | 7e62072 | 2007-10-06 20:08:36 +0000 | [diff] [blame] | 1526 | |
| 1527 | return new ObjcClassDecl(AtClassLoc, &Interfaces[0], Interfaces.size()); |
Steve Naroff | 3536b44 | 2007-09-06 21:24:23 +0000 | [diff] [blame] | 1528 | } |
| 1529 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1530 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 1531 | /// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1532 | /// former case, Name will be non-null. In the later case, Name will be null. |
| 1533 | /// TagType indicates what kind of tag this is. TK indicates whether this is a |
| 1534 | /// reference/declaration/definition of a tag. |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 1535 | Sema::DeclTy *Sema::ActOnTag(Scope *S, unsigned TagType, TagKind TK, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1536 | SourceLocation KWLoc, IdentifierInfo *Name, |
| 1537 | SourceLocation NameLoc, AttributeList *Attr) { |
| 1538 | // If this is a use of an existing tag, it must have a name. |
| 1539 | assert((Name != 0 || TK == TK_Definition) && |
| 1540 | "Nameless record must be a definition!"); |
| 1541 | |
| 1542 | Decl::Kind Kind; |
| 1543 | switch (TagType) { |
| 1544 | default: assert(0 && "Unknown tag type!"); |
| 1545 | case DeclSpec::TST_struct: Kind = Decl::Struct; break; |
| 1546 | case DeclSpec::TST_union: Kind = Decl::Union; break; |
| 1547 | //case DeclSpec::TST_class: Kind = Decl::Class; break; |
| 1548 | case DeclSpec::TST_enum: Kind = Decl::Enum; break; |
| 1549 | } |
| 1550 | |
| 1551 | // If this is a named struct, check to see if there was a previous forward |
| 1552 | // declaration or definition. |
| 1553 | if (TagDecl *PrevDecl = |
| 1554 | dyn_cast_or_null<TagDecl>(LookupScopedDecl(Name, Decl::IDNS_Tag, |
| 1555 | NameLoc, S))) { |
| 1556 | |
| 1557 | // If this is a use of a previous tag, or if the tag is already declared in |
| 1558 | // the same scope (so that the definition/declaration completes or |
| 1559 | // rementions the tag), reuse the decl. |
| 1560 | if (TK == TK_Reference || S->isDeclScope(PrevDecl)) { |
| 1561 | // Make sure that this wasn't declared as an enum and now used as a struct |
| 1562 | // or something similar. |
| 1563 | if (PrevDecl->getKind() != Kind) { |
| 1564 | Diag(KWLoc, diag::err_use_with_wrong_tag, Name->getName()); |
| 1565 | Diag(PrevDecl->getLocation(), diag::err_previous_use); |
| 1566 | } |
| 1567 | |
| 1568 | // If this is a use or a forward declaration, we're good. |
| 1569 | if (TK != TK_Definition) |
| 1570 | return PrevDecl; |
| 1571 | |
| 1572 | // Diagnose attempts to redefine a tag. |
| 1573 | if (PrevDecl->isDefinition()) { |
| 1574 | Diag(NameLoc, diag::err_redefinition, Name->getName()); |
| 1575 | Diag(PrevDecl->getLocation(), diag::err_previous_definition); |
| 1576 | // If this is a redefinition, recover by making this struct be |
| 1577 | // anonymous, which will make any later references get the previous |
| 1578 | // definition. |
| 1579 | Name = 0; |
| 1580 | } else { |
| 1581 | // Okay, this is definition of a previously declared or referenced tag. |
| 1582 | // Move the location of the decl to be the definition site. |
| 1583 | PrevDecl->setLocation(NameLoc); |
| 1584 | return PrevDecl; |
| 1585 | } |
| 1586 | } |
| 1587 | // If we get here, this is a definition of a new struct type in a nested |
| 1588 | // scope, e.g. "struct foo; void bar() { struct foo; }", just create a new |
| 1589 | // type. |
| 1590 | } |
| 1591 | |
| 1592 | // If there is an identifier, use the location of the identifier as the |
| 1593 | // location of the decl, otherwise use the location of the struct/union |
| 1594 | // keyword. |
| 1595 | SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc; |
| 1596 | |
| 1597 | // Otherwise, if this is the first time we've seen this tag, create the decl. |
| 1598 | TagDecl *New; |
| 1599 | switch (Kind) { |
| 1600 | default: assert(0 && "Unknown tag kind!"); |
| 1601 | case Decl::Enum: |
| 1602 | // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.: |
| 1603 | // enum X { A, B, C } D; D should chain to X. |
| 1604 | New = new EnumDecl(Loc, Name, 0); |
| 1605 | // If this is an undefined enum, warn. |
| 1606 | if (TK != TK_Definition) Diag(Loc, diag::ext_forward_ref_enum); |
| 1607 | break; |
| 1608 | case Decl::Union: |
| 1609 | case Decl::Struct: |
| 1610 | case Decl::Class: |
| 1611 | // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.: |
| 1612 | // struct X { int A; } D; D should chain to X. |
| 1613 | New = new RecordDecl(Kind, Loc, Name, 0); |
| 1614 | break; |
| 1615 | } |
| 1616 | |
| 1617 | // If this has an identifier, add it to the scope stack. |
| 1618 | if (Name) { |
Chris Lattner | 31e0572 | 2007-08-26 06:24:45 +0000 | [diff] [blame] | 1619 | // The scope passed in may not be a decl scope. Zip up the scope tree until |
| 1620 | // we find one that is. |
| 1621 | while ((S->getFlags() & Scope::DeclScope) == 0) |
| 1622 | S = S->getParent(); |
| 1623 | |
| 1624 | // Add it to the decl chain. |
Steve Naroff | c752d04 | 2007-09-13 18:10:37 +0000 | [diff] [blame] | 1625 | New->setNext(Name->getFETokenInfo<ScopedDecl>()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1626 | Name->setFETokenInfo(New); |
| 1627 | S->AddDecl(New); |
| 1628 | } |
| 1629 | |
| 1630 | return New; |
| 1631 | } |
| 1632 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 1633 | /// ActOnField - Each field of a struct/union/class is passed into this in order |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1634 | /// to create a FieldDecl object for it. |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 1635 | Sema::DeclTy *Sema::ActOnField(Scope *S, DeclTy *TagDecl, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1636 | SourceLocation DeclStart, |
| 1637 | Declarator &D, ExprTy *BitfieldWidth) { |
| 1638 | IdentifierInfo *II = D.getIdentifier(); |
| 1639 | Expr *BitWidth = (Expr*)BitfieldWidth; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1640 | SourceLocation Loc = DeclStart; |
| 1641 | if (II) Loc = D.getIdentifierLoc(); |
| 1642 | |
| 1643 | // FIXME: Unnamed fields can be handled in various different ways, for |
| 1644 | // example, unnamed unions inject all members into the struct namespace! |
| 1645 | |
| 1646 | |
| 1647 | if (BitWidth) { |
| 1648 | // TODO: Validate. |
| 1649 | //printf("WARNING: BITFIELDS IGNORED!\n"); |
| 1650 | |
| 1651 | // 6.7.2.1p3 |
| 1652 | // 6.7.2.1p4 |
| 1653 | |
| 1654 | } else { |
| 1655 | // Not a bitfield. |
| 1656 | |
| 1657 | // validate II. |
| 1658 | |
| 1659 | } |
| 1660 | |
| 1661 | QualType T = GetTypeForDeclarator(D, S); |
Steve Naroff | 5912a35 | 2007-08-28 20:14:24 +0000 | [diff] [blame] | 1662 | assert(!T.isNull() && "GetTypeForDeclarator() returned null type"); |
| 1663 | bool InvalidDecl = false; |
Steve Naroff | d7444aa | 2007-08-31 17:20:07 +0000 | [diff] [blame] | 1664 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1665 | // C99 6.7.2.1p8: A member of a structure or union may have any type other |
| 1666 | // than a variably modified type. |
Steve Naroff | d7444aa | 2007-08-31 17:20:07 +0000 | [diff] [blame] | 1667 | if (const VariableArrayType *VAT = T->getAsVariablyModifiedType()) { |
| 1668 | Diag(Loc, diag::err_typecheck_illegal_vla, |
| 1669 | VAT->getSizeExpr()->getSourceRange()); |
| 1670 | InvalidDecl = true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1671 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1672 | // FIXME: Chain fielddecls together. |
Steve Naroff | 4473921 | 2007-09-11 21:17:26 +0000 | [diff] [blame] | 1673 | FieldDecl *NewFD; |
| 1674 | |
| 1675 | if (isa<RecordDecl>(static_cast<Decl *>(TagDecl))) |
Devang Patel | 54e6235 | 2007-11-01 16:29:56 +0000 | [diff] [blame] | 1676 | NewFD = new FieldDecl(Loc, II, T, BitWidth); |
Fariborz Jahanian | ccb4f31 | 2007-09-25 18:38:09 +0000 | [diff] [blame] | 1677 | else if (isa<ObjcInterfaceDecl>(static_cast<Decl *>(TagDecl)) |
Fariborz Jahanian | 3f5faf7 | 2007-10-04 00:45:27 +0000 | [diff] [blame] | 1678 | || isa<ObjcImplementationDecl>(static_cast<Decl *>(TagDecl))) |
Steve Naroff | f38661e | 2007-09-14 02:20:46 +0000 | [diff] [blame] | 1679 | NewFD = new ObjcIvarDecl(Loc, II, T); |
Steve Naroff | 4473921 | 2007-09-11 21:17:26 +0000 | [diff] [blame] | 1680 | else |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 1681 | assert(0 && "Sema::ActOnField(): Unknown TagDecl"); |
Steve Naroff | 4473921 | 2007-09-11 21:17:26 +0000 | [diff] [blame] | 1682 | |
Steve Naroff | 5912a35 | 2007-08-28 20:14:24 +0000 | [diff] [blame] | 1683 | if (D.getInvalidType() || InvalidDecl) |
| 1684 | NewFD->setInvalidDecl(); |
| 1685 | return NewFD; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1686 | } |
| 1687 | |
Fariborz Jahanian | 89204a1 | 2007-10-01 16:53:59 +0000 | [diff] [blame] | 1688 | /// TranslateIvarVisibility - Translate visibility from a token ID to an |
| 1689 | /// AST enum value. |
| 1690 | static ObjcIvarDecl::AccessControl |
| 1691 | TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) { |
Steve Naroff | f13271f | 2007-09-14 23:09:53 +0000 | [diff] [blame] | 1692 | switch (ivarVisibility) { |
Fariborz Jahanian | 89204a1 | 2007-10-01 16:53:59 +0000 | [diff] [blame] | 1693 | case tok::objc_private: return ObjcIvarDecl::Private; |
| 1694 | case tok::objc_public: return ObjcIvarDecl::Public; |
| 1695 | case tok::objc_protected: return ObjcIvarDecl::Protected; |
| 1696 | case tok::objc_package: return ObjcIvarDecl::Package; |
| 1697 | default: assert(false && "Unknown visitibility kind"); |
Steve Naroff | f13271f | 2007-09-14 23:09:53 +0000 | [diff] [blame] | 1698 | } |
| 1699 | } |
| 1700 | |
Fariborz Jahanian | 9d048ff | 2007-09-29 00:54:24 +0000 | [diff] [blame] | 1701 | void Sema::ActOnFields(Scope* S, |
Fariborz Jahanian | 3f5faf7 | 2007-10-04 00:45:27 +0000 | [diff] [blame] | 1702 | SourceLocation RecLoc, DeclTy *RecDecl, |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 1703 | DeclTy **Fields, unsigned NumFields, |
Steve Naroff | 60fccee | 2007-10-29 21:38:07 +0000 | [diff] [blame] | 1704 | SourceLocation LBrac, SourceLocation RBrac, |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 1705 | tok::ObjCKeywordKind *visibility) { |
Steve Naroff | 7421664 | 2007-09-14 22:20:54 +0000 | [diff] [blame] | 1706 | Decl *EnclosingDecl = static_cast<Decl*>(RecDecl); |
| 1707 | assert(EnclosingDecl && "missing record or interface decl"); |
| 1708 | RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl); |
| 1709 | |
Fariborz Jahanian | e267ab6 | 2007-09-14 16:27:55 +0000 | [diff] [blame] | 1710 | if (Record && Record->isDefinition()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1711 | // Diagnose code like: |
| 1712 | // struct S { struct S {} X; }; |
| 1713 | // We discover this when we complete the outer S. Reject and ignore the |
| 1714 | // outer S. |
| 1715 | Diag(Record->getLocation(), diag::err_nested_redefinition, |
| 1716 | Record->getKindName()); |
| 1717 | Diag(RecLoc, diag::err_previous_definition); |
Steve Naroff | 7421664 | 2007-09-14 22:20:54 +0000 | [diff] [blame] | 1718 | Record->setInvalidDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1719 | return; |
| 1720 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1721 | // Verify that all the fields are okay. |
| 1722 | unsigned NumNamedMembers = 0; |
| 1723 | llvm::SmallVector<FieldDecl*, 32> RecFields; |
| 1724 | llvm::SmallSet<const IdentifierInfo*, 32> FieldIDs; |
Steve Naroff | 7421664 | 2007-09-14 22:20:54 +0000 | [diff] [blame] | 1725 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1726 | for (unsigned i = 0; i != NumFields; ++i) { |
Fariborz Jahanian | e267ab6 | 2007-09-14 16:27:55 +0000 | [diff] [blame] | 1727 | |
Steve Naroff | 7421664 | 2007-09-14 22:20:54 +0000 | [diff] [blame] | 1728 | FieldDecl *FD = cast_or_null<FieldDecl>(static_cast<Decl*>(Fields[i])); |
| 1729 | assert(FD && "missing field decl"); |
| 1730 | |
| 1731 | // Remember all fields. |
| 1732 | RecFields.push_back(FD); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1733 | |
| 1734 | // Get the type for the field. |
Chris Lattner | 02c642e | 2007-07-31 21:33:24 +0000 | [diff] [blame] | 1735 | Type *FDTy = FD->getType().getTypePtr(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1736 | |
Steve Naroff | f13271f | 2007-09-14 23:09:53 +0000 | [diff] [blame] | 1737 | // If we have visibility info, make sure the AST is set accordingly. |
| 1738 | if (visibility) |
Fariborz Jahanian | 89204a1 | 2007-10-01 16:53:59 +0000 | [diff] [blame] | 1739 | cast<ObjcIvarDecl>(FD)->setAccessControl( |
| 1740 | TranslateIvarVisibility(visibility[i])); |
Steve Naroff | f13271f | 2007-09-14 23:09:53 +0000 | [diff] [blame] | 1741 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1742 | // C99 6.7.2.1p2 - A field may not be a function type. |
Chris Lattner | 02c642e | 2007-07-31 21:33:24 +0000 | [diff] [blame] | 1743 | if (FDTy->isFunctionType()) { |
Steve Naroff | 7421664 | 2007-09-14 22:20:54 +0000 | [diff] [blame] | 1744 | Diag(FD->getLocation(), diag::err_field_declared_as_function, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1745 | FD->getName()); |
Steve Naroff | 7421664 | 2007-09-14 22:20:54 +0000 | [diff] [blame] | 1746 | FD->setInvalidDecl(); |
| 1747 | EnclosingDecl->setInvalidDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1748 | continue; |
| 1749 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1750 | // C99 6.7.2.1p2 - A field may not be an incomplete type except... |
| 1751 | if (FDTy->isIncompleteType()) { |
Fariborz Jahanian | e267ab6 | 2007-09-14 16:27:55 +0000 | [diff] [blame] | 1752 | if (!Record) { // Incomplete ivar type is always an error. |
Fariborz Jahanian | 3f5faf7 | 2007-10-04 00:45:27 +0000 | [diff] [blame] | 1753 | Diag(FD->getLocation(), diag::err_field_incomplete, FD->getName()); |
Steve Naroff | 7421664 | 2007-09-14 22:20:54 +0000 | [diff] [blame] | 1754 | FD->setInvalidDecl(); |
| 1755 | EnclosingDecl->setInvalidDecl(); |
Fariborz Jahanian | 3f5faf7 | 2007-10-04 00:45:27 +0000 | [diff] [blame] | 1756 | continue; |
Fariborz Jahanian | e267ab6 | 2007-09-14 16:27:55 +0000 | [diff] [blame] | 1757 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1758 | if (i != NumFields-1 || // ... that the last member ... |
| 1759 | Record->getKind() != Decl::Struct || // ... of a structure ... |
Chris Lattner | 02c642e | 2007-07-31 21:33:24 +0000 | [diff] [blame] | 1760 | !FDTy->isArrayType()) { //... may have incomplete array type. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1761 | Diag(FD->getLocation(), diag::err_field_incomplete, FD->getName()); |
Steve Naroff | 7421664 | 2007-09-14 22:20:54 +0000 | [diff] [blame] | 1762 | FD->setInvalidDecl(); |
| 1763 | EnclosingDecl->setInvalidDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1764 | continue; |
| 1765 | } |
Fariborz Jahanian | e267ab6 | 2007-09-14 16:27:55 +0000 | [diff] [blame] | 1766 | if (NumNamedMembers < 1) { //... must have more than named member ... |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1767 | Diag(FD->getLocation(), diag::err_flexible_array_empty_struct, |
| 1768 | FD->getName()); |
Steve Naroff | 7421664 | 2007-09-14 22:20:54 +0000 | [diff] [blame] | 1769 | FD->setInvalidDecl(); |
| 1770 | EnclosingDecl->setInvalidDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1771 | continue; |
| 1772 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1773 | // Okay, we have a legal flexible array member at the end of the struct. |
Fariborz Jahanian | e267ab6 | 2007-09-14 16:27:55 +0000 | [diff] [blame] | 1774 | if (Record) |
| 1775 | Record->setHasFlexibleArrayMember(true); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1776 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1777 | /// C99 6.7.2.1p2 - a struct ending in a flexible array member cannot be the |
| 1778 | /// field of another structure or the element of an array. |
Chris Lattner | 02c642e | 2007-07-31 21:33:24 +0000 | [diff] [blame] | 1779 | if (const RecordType *FDTTy = FDTy->getAsRecordType()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1780 | if (FDTTy->getDecl()->hasFlexibleArrayMember()) { |
| 1781 | // If this is a member of a union, then entire union becomes "flexible". |
Fariborz Jahanian | e267ab6 | 2007-09-14 16:27:55 +0000 | [diff] [blame] | 1782 | if (Record && Record->getKind() == Decl::Union) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1783 | Record->setHasFlexibleArrayMember(true); |
| 1784 | } else { |
| 1785 | // If this is a struct/class and this is not the last element, reject |
| 1786 | // it. Note that GCC supports variable sized arrays in the middle of |
| 1787 | // structures. |
| 1788 | if (i != NumFields-1) { |
| 1789 | Diag(FD->getLocation(), diag::err_variable_sized_type_in_struct, |
| 1790 | FD->getName()); |
Steve Naroff | 7421664 | 2007-09-14 22:20:54 +0000 | [diff] [blame] | 1791 | FD->setInvalidDecl(); |
| 1792 | EnclosingDecl->setInvalidDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1793 | continue; |
| 1794 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1795 | // We support flexible arrays at the end of structs in other structs |
| 1796 | // as an extension. |
| 1797 | Diag(FD->getLocation(), diag::ext_flexible_array_in_struct, |
| 1798 | FD->getName()); |
Fariborz Jahanian | 3f5faf7 | 2007-10-04 00:45:27 +0000 | [diff] [blame] | 1799 | if (Record) |
Fariborz Jahanian | e267ab6 | 2007-09-14 16:27:55 +0000 | [diff] [blame] | 1800 | Record->setHasFlexibleArrayMember(true); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1801 | } |
| 1802 | } |
| 1803 | } |
Fariborz Jahanian | e7f64cc | 2007-10-12 22:10:42 +0000 | [diff] [blame] | 1804 | /// A field cannot be an Objective-c object |
| 1805 | if (FDTy->isObjcInterfaceType()) { |
| 1806 | Diag(FD->getLocation(), diag::err_statically_allocated_object, |
| 1807 | FD->getName()); |
| 1808 | FD->setInvalidDecl(); |
| 1809 | EnclosingDecl->setInvalidDecl(); |
| 1810 | continue; |
| 1811 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1812 | // Keep track of the number of named members. |
| 1813 | if (IdentifierInfo *II = FD->getIdentifier()) { |
| 1814 | // Detect duplicate member names. |
| 1815 | if (!FieldIDs.insert(II)) { |
| 1816 | Diag(FD->getLocation(), diag::err_duplicate_member, II->getName()); |
| 1817 | // Find the previous decl. |
| 1818 | SourceLocation PrevLoc; |
| 1819 | for (unsigned i = 0, e = RecFields.size(); ; ++i) { |
| 1820 | assert(i != e && "Didn't find previous def!"); |
| 1821 | if (RecFields[i]->getIdentifier() == II) { |
| 1822 | PrevLoc = RecFields[i]->getLocation(); |
| 1823 | break; |
| 1824 | } |
| 1825 | } |
| 1826 | Diag(PrevLoc, diag::err_previous_definition); |
Steve Naroff | 7421664 | 2007-09-14 22:20:54 +0000 | [diff] [blame] | 1827 | FD->setInvalidDecl(); |
| 1828 | EnclosingDecl->setInvalidDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1829 | continue; |
| 1830 | } |
| 1831 | ++NumNamedMembers; |
| 1832 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1833 | } |
| 1834 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1835 | // Okay, we successfully defined 'Record'. |
Fariborz Jahanian | e267ab6 | 2007-09-14 16:27:55 +0000 | [diff] [blame] | 1836 | if (Record) |
| 1837 | Record->defineBody(&RecFields[0], RecFields.size()); |
Fariborz Jahanian | b04a021 | 2007-09-14 21:08:27 +0000 | [diff] [blame] | 1838 | else { |
| 1839 | ObjcIvarDecl **ClsFields = |
| 1840 | reinterpret_cast<ObjcIvarDecl**>(&RecFields[0]); |
Fariborz Jahanian | d0b90bf | 2007-09-26 18:27:25 +0000 | [diff] [blame] | 1841 | if (isa<ObjcInterfaceDecl>(static_cast<Decl*>(RecDecl))) |
| 1842 | cast<ObjcInterfaceDecl>(static_cast<Decl*>(RecDecl))-> |
Steve Naroff | 60fccee | 2007-10-29 21:38:07 +0000 | [diff] [blame] | 1843 | addInstanceVariablesToClass(ClsFields, RecFields.size(), RBrac); |
Fariborz Jahanian | d0b90bf | 2007-09-26 18:27:25 +0000 | [diff] [blame] | 1844 | else if (isa<ObjcImplementationDecl>(static_cast<Decl*>(RecDecl))) { |
| 1845 | ObjcImplementationDecl* IMPDecl = |
Fariborz Jahanian | 3f5faf7 | 2007-10-04 00:45:27 +0000 | [diff] [blame] | 1846 | cast<ObjcImplementationDecl>(static_cast<Decl*>(RecDecl)); |
Fariborz Jahanian | d0b90bf | 2007-09-26 18:27:25 +0000 | [diff] [blame] | 1847 | assert(IMPDecl && "ActOnFields - missing ObjcImplementationDecl"); |
| 1848 | IMPDecl->ObjcAddInstanceVariablesToClassImpl(ClsFields, RecFields.size()); |
Fariborz Jahanian | 3a3ca1b | 2007-10-31 18:48:14 +0000 | [diff] [blame] | 1849 | CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac); |
Fariborz Jahanian | d0b90bf | 2007-09-26 18:27:25 +0000 | [diff] [blame] | 1850 | } |
Fariborz Jahanian | b04a021 | 2007-09-14 21:08:27 +0000 | [diff] [blame] | 1851 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1852 | } |
| 1853 | |
Fariborz Jahanian | 85ff264 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 1854 | /// MatchTwoMethodDeclarations - Checks that two methods have matching type and |
| 1855 | /// returns true, or false, accordingly. |
| 1856 | /// TODO: Handle protocol list; such as id<p1,p2> in type comparisons |
| 1857 | bool Sema:: MatchTwoMethodDeclarations(const ObjcMethodDecl *Method, |
| 1858 | const ObjcMethodDecl *PrevMethod) { |
Steve Naroff | 3bea81b | 2007-10-16 21:36:54 +0000 | [diff] [blame] | 1859 | if (Method->getResultType().getCanonicalType() != |
| 1860 | PrevMethod->getResultType().getCanonicalType()) |
Fariborz Jahanian | 85ff264 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 1861 | return false; |
| 1862 | for (int i = 0; i < Method->getNumParams(); i++) { |
| 1863 | ParmVarDecl *ParamDecl = Method->getParamDecl(i); |
| 1864 | ParmVarDecl *PrevParamDecl = PrevMethod->getParamDecl(i); |
| 1865 | if (ParamDecl->getCanonicalType() != PrevParamDecl->getCanonicalType()) |
| 1866 | return false; |
| 1867 | } |
| 1868 | return true; |
| 1869 | } |
| 1870 | |
Steve Naroff | 58ff9e8 | 2007-10-14 00:58:41 +0000 | [diff] [blame] | 1871 | void Sema::AddInstanceMethodToGlobalPool(ObjcMethodDecl *Method) { |
| 1872 | ObjcMethodList &FirstMethod = InstanceMethodPool[Method->getSelector()]; |
| 1873 | if (!FirstMethod.Method) { |
| 1874 | // Haven't seen a method with this selector name yet - add it. |
| 1875 | FirstMethod.Method = Method; |
| 1876 | FirstMethod.Next = 0; |
| 1877 | } else { |
| 1878 | // We've seen a method with this name, now check the type signature(s). |
| 1879 | bool match = MatchTwoMethodDeclarations(Method, FirstMethod.Method); |
| 1880 | |
| 1881 | for (ObjcMethodList *Next = FirstMethod.Next; !match && Next; |
| 1882 | Next = Next->Next) |
| 1883 | match = MatchTwoMethodDeclarations(Method, Next->Method); |
| 1884 | |
| 1885 | if (!match) { |
| 1886 | // We have a new signature for an existing method - add it. |
| 1887 | // This is extremely rare. Only 1% of Cocoa selectors are "overloaded". |
| 1888 | struct ObjcMethodList *OMI = new ObjcMethodList(Method, FirstMethod.Next); |
| 1889 | FirstMethod.Next = OMI; |
| 1890 | } |
| 1891 | } |
| 1892 | } |
| 1893 | |
| 1894 | void Sema::AddFactoryMethodToGlobalPool(ObjcMethodDecl *Method) { |
| 1895 | ObjcMethodList &FirstMethod = FactoryMethodPool[Method->getSelector()]; |
| 1896 | if (!FirstMethod.Method) { |
| 1897 | // Haven't seen a method with this selector name yet - add it. |
| 1898 | FirstMethod.Method = Method; |
| 1899 | FirstMethod.Next = 0; |
| 1900 | } else { |
| 1901 | // We've seen a method with this name, now check the type signature(s). |
| 1902 | bool match = MatchTwoMethodDeclarations(Method, FirstMethod.Method); |
| 1903 | |
| 1904 | for (ObjcMethodList *Next = FirstMethod.Next; !match && Next; |
| 1905 | Next = Next->Next) |
| 1906 | match = MatchTwoMethodDeclarations(Method, Next->Method); |
| 1907 | |
| 1908 | if (!match) { |
| 1909 | // We have a new signature for an existing method - add it. |
| 1910 | // This is extremely rare. Only 1% of Cocoa selectors are "overloaded". |
| 1911 | struct ObjcMethodList *OMI = new ObjcMethodList(Method, FirstMethod.Next); |
| 1912 | FirstMethod.Next = OMI; |
| 1913 | } |
| 1914 | } |
| 1915 | } |
| 1916 | |
Chris Lattner | fd5de47 | 2007-10-06 22:53:46 +0000 | [diff] [blame] | 1917 | void Sema::ActOnAddMethodsToObjcDecl(Scope* S, DeclTy *classDecl, |
Steve Naroff | 60fccee | 2007-10-29 21:38:07 +0000 | [diff] [blame] | 1918 | DeclTy **allMethods, unsigned allNum, |
Fariborz Jahanian | 82a5fe3 | 2007-11-06 22:01:00 +0000 | [diff] [blame] | 1919 | DeclTy **allProperties, unsigned pNum, |
Steve Naroff | 60fccee | 2007-10-29 21:38:07 +0000 | [diff] [blame] | 1920 | SourceLocation AtEndLoc) { |
Chris Lattner | fd5de47 | 2007-10-06 22:53:46 +0000 | [diff] [blame] | 1921 | Decl *ClassDecl = static_cast<Decl *>(classDecl); |
Steve Naroff | 8f74476 | 2007-10-12 18:49:25 +0000 | [diff] [blame] | 1922 | |
| 1923 | // FIXME: If we don't have a ClassDecl, we have an error. I (snaroff) would |
| 1924 | // prefer we always pass in a decl. If the decl has an error, isInvalidDecl() |
| 1925 | // should be true. |
Fariborz Jahanian | e55cd00 | 2007-09-12 18:23:47 +0000 | [diff] [blame] | 1926 | if (!ClassDecl) |
| 1927 | return; |
Steve Naroff | 2feac5e | 2007-10-30 03:43:13 +0000 | [diff] [blame] | 1928 | |
Fariborz Jahanian | e3a2ca7 | 2007-09-10 20:33:04 +0000 | [diff] [blame] | 1929 | llvm::SmallVector<ObjcMethodDecl*, 32> insMethods; |
| 1930 | llvm::SmallVector<ObjcMethodDecl*, 16> clsMethods; |
Fariborz Jahanian | 85ff264 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 1931 | |
Steve Naroff | eefc418 | 2007-10-08 21:05:34 +0000 | [diff] [blame] | 1932 | llvm::DenseMap<Selector, const ObjcMethodDecl*> InsMap; |
| 1933 | llvm::DenseMap<Selector, const ObjcMethodDecl*> ClsMap; |
Fariborz Jahanian | 85ff264 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 1934 | |
Fariborz Jahanian | 82a5fe3 | 2007-11-06 22:01:00 +0000 | [diff] [blame] | 1935 | bool isInterfaceDeclKind = |
Fariborz Jahanian | 1109b42 | 2007-10-12 23:43:31 +0000 | [diff] [blame] | 1936 | (isa<ObjcInterfaceDecl>(ClassDecl) || isa<ObjcCategoryDecl>(ClassDecl) |
| 1937 | || isa<ObjcProtocolDecl>(ClassDecl)); |
Fariborz Jahanian | 3e7fd15 | 2007-10-16 21:52:23 +0000 | [diff] [blame] | 1938 | bool checkIdenticalMethods = isa<ObjcImplementationDecl>(ClassDecl); |
Fariborz Jahanian | 85ff264 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 1939 | |
Fariborz Jahanian | 82a5fe3 | 2007-11-06 22:01:00 +0000 | [diff] [blame] | 1940 | // TODO: property declaration in category and protocols. |
| 1941 | if (pNum != 0 && isa<ObjcInterfaceDecl>(ClassDecl)) { |
| 1942 | ObjcPropertyDecl **properties = new ObjcPropertyDecl*[pNum]; |
| 1943 | memcpy(properties, allProperties, pNum*sizeof(ObjcPropertyDecl*)); |
| 1944 | dyn_cast<ObjcInterfaceDecl>(ClassDecl)->setPropertyDecls(properties); |
| 1945 | dyn_cast<ObjcInterfaceDecl>(ClassDecl)->setNumPropertyDecl(pNum); |
| 1946 | } |
| 1947 | |
Fariborz Jahanian | e3a2ca7 | 2007-09-10 20:33:04 +0000 | [diff] [blame] | 1948 | for (unsigned i = 0; i < allNum; i++ ) { |
Fariborz Jahanian | 25e077d | 2007-09-17 21:07:36 +0000 | [diff] [blame] | 1949 | ObjcMethodDecl *Method = |
Fariborz Jahanian | e3a2ca7 | 2007-09-10 20:33:04 +0000 | [diff] [blame] | 1950 | cast_or_null<ObjcMethodDecl>(static_cast<Decl*>(allMethods[i])); |
Steve Naroff | 58ff9e8 | 2007-10-14 00:58:41 +0000 | [diff] [blame] | 1951 | |
Fariborz Jahanian | e3a2ca7 | 2007-09-10 20:33:04 +0000 | [diff] [blame] | 1952 | if (!Method) continue; // Already issued a diagnostic. |
Fariborz Jahanian | 85ff264 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 1953 | if (Method->isInstance()) { |
Fariborz Jahanian | 3e7fd15 | 2007-10-16 21:52:23 +0000 | [diff] [blame] | 1954 | /// Check for instance method of the same name with incompatible types |
| 1955 | const ObjcMethodDecl *&PrevMethod = InsMap[Method->getSelector()]; |
| 1956 | bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod) |
| 1957 | : false; |
Fariborz Jahanian | 82a5fe3 | 2007-11-06 22:01:00 +0000 | [diff] [blame] | 1958 | if (isInterfaceDeclKind && PrevMethod && !match |
Fariborz Jahanian | 3e7fd15 | 2007-10-16 21:52:23 +0000 | [diff] [blame] | 1959 | || checkIdenticalMethods && match) { |
Fariborz Jahanian | 85ff264 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 1960 | Diag(Method->getLocation(), diag::error_duplicate_method_decl, |
Chris Lattner | f836e3f | 2007-10-07 01:33:16 +0000 | [diff] [blame] | 1961 | Method->getSelector().getName()); |
Fariborz Jahanian | 85ff264 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 1962 | Diag(PrevMethod->getLocation(), diag::err_previous_declaration); |
Fariborz Jahanian | 3e7fd15 | 2007-10-16 21:52:23 +0000 | [diff] [blame] | 1963 | } else { |
Fariborz Jahanian | 85ff264 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 1964 | insMethods.push_back(Method); |
Fariborz Jahanian | 3e7fd15 | 2007-10-16 21:52:23 +0000 | [diff] [blame] | 1965 | InsMap[Method->getSelector()] = Method; |
| 1966 | /// The following allows us to typecheck messages to "id". |
| 1967 | AddInstanceMethodToGlobalPool(Method); |
Fariborz Jahanian | 85ff264 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 1968 | } |
Fariborz Jahanian | 3e7fd15 | 2007-10-16 21:52:23 +0000 | [diff] [blame] | 1969 | } |
| 1970 | else { |
| 1971 | /// Check for class method of the same name with incompatible types |
| 1972 | const ObjcMethodDecl *&PrevMethod = ClsMap[Method->getSelector()]; |
| 1973 | bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod) |
| 1974 | : false; |
Fariborz Jahanian | 82a5fe3 | 2007-11-06 22:01:00 +0000 | [diff] [blame] | 1975 | if (isInterfaceDeclKind && PrevMethod && !match |
Fariborz Jahanian | 3e7fd15 | 2007-10-16 21:52:23 +0000 | [diff] [blame] | 1976 | || checkIdenticalMethods && match) { |
| 1977 | Diag(Method->getLocation(), diag::error_duplicate_method_decl, |
| 1978 | Method->getSelector().getName()); |
| 1979 | Diag(PrevMethod->getLocation(), diag::err_previous_declaration); |
| 1980 | } else { |
Fariborz Jahanian | 85ff264 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 1981 | clsMethods.push_back(Method); |
Fariborz Jahanian | 3e7fd15 | 2007-10-16 21:52:23 +0000 | [diff] [blame] | 1982 | ClsMap[Method->getSelector()] = Method; |
| 1983 | /// The following allows us to typecheck messages to "id". |
| 1984 | AddInstanceMethodToGlobalPool(Method); |
| 1985 | } |
Fariborz Jahanian | 85ff264 | 2007-10-05 18:00:57 +0000 | [diff] [blame] | 1986 | } |
Fariborz Jahanian | e3a2ca7 | 2007-09-10 20:33:04 +0000 | [diff] [blame] | 1987 | } |
Chris Lattner | fd5de47 | 2007-10-06 22:53:46 +0000 | [diff] [blame] | 1988 | |
| 1989 | if (ObjcInterfaceDecl *I = dyn_cast<ObjcInterfaceDecl>(ClassDecl)) { |
Steve Naroff | 60fccee | 2007-10-29 21:38:07 +0000 | [diff] [blame] | 1990 | I->addMethods(&insMethods[0], insMethods.size(), |
| 1991 | &clsMethods[0], clsMethods.size(), AtEndLoc); |
Chris Lattner | fd5de47 | 2007-10-06 22:53:46 +0000 | [diff] [blame] | 1992 | } else if (ObjcProtocolDecl *P = dyn_cast<ObjcProtocolDecl>(ClassDecl)) { |
Steve Naroff | 60fccee | 2007-10-29 21:38:07 +0000 | [diff] [blame] | 1993 | P->addMethods(&insMethods[0], insMethods.size(), |
| 1994 | &clsMethods[0], clsMethods.size(), AtEndLoc); |
Fariborz Jahanian | 25e077d | 2007-09-17 21:07:36 +0000 | [diff] [blame] | 1995 | } |
Chris Lattner | fd5de47 | 2007-10-06 22:53:46 +0000 | [diff] [blame] | 1996 | else if (ObjcCategoryDecl *C = dyn_cast<ObjcCategoryDecl>(ClassDecl)) { |
Steve Naroff | 60fccee | 2007-10-29 21:38:07 +0000 | [diff] [blame] | 1997 | C->addMethods(&insMethods[0], insMethods.size(), |
| 1998 | &clsMethods[0], clsMethods.size(), AtEndLoc); |
Fariborz Jahanian | 25e077d | 2007-09-17 21:07:36 +0000 | [diff] [blame] | 1999 | } |
Chris Lattner | fd5de47 | 2007-10-06 22:53:46 +0000 | [diff] [blame] | 2000 | else if (ObjcImplementationDecl *IC = |
| 2001 | dyn_cast<ObjcImplementationDecl>(ClassDecl)) { |
Steve Naroff | 60fccee | 2007-10-29 21:38:07 +0000 | [diff] [blame] | 2002 | IC->addMethods(&insMethods[0], insMethods.size(), |
| 2003 | &clsMethods[0], clsMethods.size(), AtEndLoc); |
Chris Lattner | fd5de47 | 2007-10-06 22:53:46 +0000 | [diff] [blame] | 2004 | if (ObjcInterfaceDecl* IDecl = getObjCInterfaceDecl(IC->getIdentifier())) |
| 2005 | ImplMethodsVsClassMethods(IC, IDecl); |
| 2006 | } else { |
| 2007 | ObjcCategoryImplDecl* CatImplClass = cast<ObjcCategoryImplDecl>(ClassDecl); |
Steve Naroff | 60fccee | 2007-10-29 21:38:07 +0000 | [diff] [blame] | 2008 | CatImplClass->addMethods(&insMethods[0], insMethods.size(), |
| 2009 | &clsMethods[0], clsMethods.size(), AtEndLoc); |
Chris Lattner | fd5de47 | 2007-10-06 22:53:46 +0000 | [diff] [blame] | 2010 | ObjcInterfaceDecl* IDecl = CatImplClass->getClassInterface(); |
| 2011 | // Find category interface decl and then check that all methods declared |
| 2012 | // in this interface is implemented in the category @implementation. |
| 2013 | if (IDecl) { |
Steve Naroff | 3d58138 | 2007-10-14 18:27:41 +0000 | [diff] [blame] | 2014 | for (ObjcCategoryDecl *Categories = IDecl->getCategoryList(); |
Chris Lattner | fd5de47 | 2007-10-06 22:53:46 +0000 | [diff] [blame] | 2015 | Categories; Categories = Categories->getNextClassCategory()) { |
Chris Lattner | 6a0e89e | 2007-10-06 23:12:31 +0000 | [diff] [blame] | 2016 | if (Categories->getIdentifier() == CatImplClass->getIdentifier()) { |
Chris Lattner | fd5de47 | 2007-10-06 22:53:46 +0000 | [diff] [blame] | 2017 | ImplCategoryMethodsVsIntfMethods(CatImplClass, Categories); |
| 2018 | break; |
Fariborz Jahanian | 8f3fde0 | 2007-10-02 16:38:50 +0000 | [diff] [blame] | 2019 | } |
| 2020 | } |
| 2021 | } |
| 2022 | } |
Fariborz Jahanian | e3a2ca7 | 2007-09-10 20:33:04 +0000 | [diff] [blame] | 2023 | } |
| 2024 | |
Fariborz Jahanian | ecb01e6 | 2007-11-01 17:18:37 +0000 | [diff] [blame] | 2025 | /// CvtQTToAstBitMask - utility routine to produce an AST bitmask for |
| 2026 | /// objective-c's type qualifier from the parser version of the same info. |
| 2027 | static Decl::ObjcDeclQualifier |
| 2028 | CvtQTToAstBitMask(ObjcDeclSpec::ObjcDeclQualifier PQTVal) { |
| 2029 | Decl::ObjcDeclQualifier ret = Decl::OBJC_TQ_None; |
| 2030 | if (PQTVal & ObjcDeclSpec::DQ_In) |
| 2031 | ret = (Decl::ObjcDeclQualifier)(ret | Decl::OBJC_TQ_In); |
| 2032 | if (PQTVal & ObjcDeclSpec::DQ_Inout) |
| 2033 | ret = (Decl::ObjcDeclQualifier)(ret | Decl::OBJC_TQ_Inout); |
| 2034 | if (PQTVal & ObjcDeclSpec::DQ_Out) |
| 2035 | ret = (Decl::ObjcDeclQualifier)(ret | Decl::OBJC_TQ_Out); |
| 2036 | if (PQTVal & ObjcDeclSpec::DQ_Bycopy) |
| 2037 | ret = (Decl::ObjcDeclQualifier)(ret | Decl::OBJC_TQ_Bycopy); |
| 2038 | if (PQTVal & ObjcDeclSpec::DQ_Byref) |
| 2039 | ret = (Decl::ObjcDeclQualifier)(ret | Decl::OBJC_TQ_Byref); |
| 2040 | if (PQTVal & ObjcDeclSpec::DQ_Oneway) |
| 2041 | ret = (Decl::ObjcDeclQualifier)(ret | Decl::OBJC_TQ_Oneway); |
| 2042 | |
| 2043 | return ret; |
| 2044 | } |
| 2045 | |
Steve Naroff | bef1185 | 2007-10-26 20:53:56 +0000 | [diff] [blame] | 2046 | Sema::DeclTy *Sema::ActOnMethodDeclaration( |
| 2047 | SourceLocation MethodLoc, SourceLocation EndLoc, |
Fariborz Jahanian | f1de0ca | 2007-10-31 23:53:01 +0000 | [diff] [blame] | 2048 | tok::TokenKind MethodType, ObjcDeclSpec &ReturnQT, TypeTy *ReturnType, |
| 2049 | Selector Sel, |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 2050 | // optional arguments. The number of types/arguments is obtained |
| 2051 | // from the Sel.getNumArgs(). |
Fariborz Jahanian | f1de0ca | 2007-10-31 23:53:01 +0000 | [diff] [blame] | 2052 | ObjcDeclSpec *ArgQT, TypeTy **ArgTypes, IdentifierInfo **ArgNames, |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 2053 | AttributeList *AttrList, tok::ObjCKeywordKind MethodDeclKind) { |
Fariborz Jahanian | e55cd00 | 2007-09-12 18:23:47 +0000 | [diff] [blame] | 2054 | llvm::SmallVector<ParmVarDecl*, 16> Params; |
Fariborz Jahanian | c2939bc | 2007-10-30 17:06:23 +0000 | [diff] [blame] | 2055 | |
Steve Naroff | bcfb06a | 2007-09-28 22:22:11 +0000 | [diff] [blame] | 2056 | for (unsigned i = 0; i < Sel.getNumArgs(); i++) { |
Fariborz Jahanian | e55cd00 | 2007-09-12 18:23:47 +0000 | [diff] [blame] | 2057 | // FIXME: arg->AttrList must be stored too! |
Steve Naroff | 3b95017 | 2007-10-10 21:53:07 +0000 | [diff] [blame] | 2058 | QualType argType; |
| 2059 | |
| 2060 | if (ArgTypes[i]) |
| 2061 | argType = QualType::getFromOpaquePtr(ArgTypes[i]); |
| 2062 | else |
Steve Naroff | 8ee529b | 2007-10-31 18:42:27 +0000 | [diff] [blame] | 2063 | argType = Context.getObjcIdType(); |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 2064 | ParmVarDecl* Param = new ParmVarDecl(SourceLocation(/*FIXME*/), ArgNames[i], |
Steve Naroff | 3b95017 | 2007-10-10 21:53:07 +0000 | [diff] [blame] | 2065 | argType, VarDecl::None, 0); |
Fariborz Jahanian | ecb01e6 | 2007-11-01 17:18:37 +0000 | [diff] [blame] | 2066 | Param->setObjcDeclQualifier( |
| 2067 | CvtQTToAstBitMask(ArgQT[i].getObjcDeclQualifier())); |
Fariborz Jahanian | e55cd00 | 2007-09-12 18:23:47 +0000 | [diff] [blame] | 2068 | Params.push_back(Param); |
| 2069 | } |
Steve Naroff | b216c88 | 2007-10-09 22:01:59 +0000 | [diff] [blame] | 2070 | QualType resultDeclType; |
| 2071 | |
| 2072 | if (ReturnType) |
| 2073 | resultDeclType = QualType::getFromOpaquePtr(ReturnType); |
Steve Naroff | 3b95017 | 2007-10-10 21:53:07 +0000 | [diff] [blame] | 2074 | else // get the type for "id". |
Steve Naroff | 8ee529b | 2007-10-31 18:42:27 +0000 | [diff] [blame] | 2075 | resultDeclType = Context.getObjcIdType(); |
Steve Naroff | 3b95017 | 2007-10-10 21:53:07 +0000 | [diff] [blame] | 2076 | |
Steve Naroff | bef1185 | 2007-10-26 20:53:56 +0000 | [diff] [blame] | 2077 | ObjcMethodDecl* ObjcMethod = new ObjcMethodDecl(MethodLoc, EndLoc, Sel, |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 2078 | resultDeclType, 0, -1, AttrList, |
Fariborz Jahanian | 3a63da7 | 2007-09-29 18:24:58 +0000 | [diff] [blame] | 2079 | MethodType == tok::minus, |
Fariborz Jahanian | 3f5faf7 | 2007-10-04 00:45:27 +0000 | [diff] [blame] | 2080 | MethodDeclKind == tok::objc_optional ? |
| 2081 | ObjcMethodDecl::Optional : |
| 2082 | ObjcMethodDecl::Required); |
Steve Naroff | bcfb06a | 2007-09-28 22:22:11 +0000 | [diff] [blame] | 2083 | ObjcMethod->setMethodParams(&Params[0], Sel.getNumArgs()); |
Fariborz Jahanian | ecb01e6 | 2007-11-01 17:18:37 +0000 | [diff] [blame] | 2084 | ObjcMethod->setObjcDeclQualifier( |
| 2085 | CvtQTToAstBitMask(ReturnQT.getObjcDeclQualifier())); |
Fariborz Jahanian | 25e077d | 2007-09-17 21:07:36 +0000 | [diff] [blame] | 2086 | return ObjcMethod; |
Fariborz Jahanian | e55cd00 | 2007-09-12 18:23:47 +0000 | [diff] [blame] | 2087 | } |
| 2088 | |
Fariborz Jahanian | 82a5fe3 | 2007-11-06 22:01:00 +0000 | [diff] [blame] | 2089 | Sema::DeclTy *Sema::ActOnAddObjcProperties(SourceLocation AtLoc, |
| 2090 | DeclTy **allProperties, unsigned NumProperties, ObjcDeclSpec &DS) { |
| 2091 | ObjcPropertyDecl *PDecl = new ObjcPropertyDecl(AtLoc); |
| 2092 | |
| 2093 | if(DS.getPropertyAttributes() & ObjcDeclSpec::DQ_PR_readonly) |
| 2094 | PDecl->setPropertyAttributes(ObjcPropertyDecl::OBJC_PR_readonly); |
| 2095 | |
| 2096 | if(DS.getPropertyAttributes() & ObjcDeclSpec::DQ_PR_getter) { |
| 2097 | PDecl->setPropertyAttributes(ObjcPropertyDecl::OBJC_PR_getter); |
| 2098 | PDecl->setGetterName(DS.getGetterName()); |
| 2099 | } |
| 2100 | |
| 2101 | if(DS.getPropertyAttributes() & ObjcDeclSpec::DQ_PR_setter) { |
| 2102 | PDecl->setPropertyAttributes(ObjcPropertyDecl::OBJC_PR_setter); |
| 2103 | PDecl->setSetterName(DS.getSetterName()); |
| 2104 | } |
| 2105 | |
| 2106 | if(DS.getPropertyAttributes() & ObjcDeclSpec::DQ_PR_assign) |
| 2107 | PDecl->setPropertyAttributes(ObjcPropertyDecl::OBJC_PR_assign); |
| 2108 | |
| 2109 | if(DS.getPropertyAttributes() & ObjcDeclSpec::DQ_PR_readwrite) |
| 2110 | PDecl->setPropertyAttributes(ObjcPropertyDecl::OBJC_PR_readwrite); |
| 2111 | |
| 2112 | if(DS.getPropertyAttributes() & ObjcDeclSpec::DQ_PR_retain) |
| 2113 | PDecl->setPropertyAttributes(ObjcPropertyDecl::OBJC_PR_retain); |
| 2114 | |
| 2115 | if(DS.getPropertyAttributes() & ObjcDeclSpec::DQ_PR_copy) |
| 2116 | PDecl->setPropertyAttributes(ObjcPropertyDecl::OBJC_PR_copy); |
| 2117 | |
| 2118 | if(DS.getPropertyAttributes() & ObjcDeclSpec::DQ_PR_nonatomic) |
| 2119 | PDecl->setPropertyAttributes(ObjcPropertyDecl::OBJC_PR_nonatomic); |
| 2120 | |
| 2121 | PDecl->setNumPropertyDecls(NumProperties); |
| 2122 | if (NumProperties != 0) { |
| 2123 | ObjcIvarDecl **properties = new ObjcIvarDecl*[NumProperties]; |
| 2124 | memcpy(properties, allProperties, NumProperties*sizeof(ObjcIvarDecl*)); |
| 2125 | PDecl->setPropertyDecls(properties); |
| 2126 | } |
| 2127 | return PDecl; |
| 2128 | } |
| 2129 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 2130 | Sema::DeclTy *Sema::ActOnEnumConstant(Scope *S, DeclTy *theEnumDecl, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2131 | DeclTy *lastEnumConst, |
| 2132 | SourceLocation IdLoc, IdentifierInfo *Id, |
| 2133 | SourceLocation EqualLoc, ExprTy *val) { |
| 2134 | theEnumDecl = theEnumDecl; // silence unused warning. |
| 2135 | EnumConstantDecl *LastEnumConst = |
| 2136 | cast_or_null<EnumConstantDecl>(static_cast<Decl*>(lastEnumConst)); |
| 2137 | Expr *Val = static_cast<Expr*>(val); |
| 2138 | |
Chris Lattner | 31e0572 | 2007-08-26 06:24:45 +0000 | [diff] [blame] | 2139 | // The scope passed in may not be a decl scope. Zip up the scope tree until |
| 2140 | // we find one that is. |
| 2141 | while ((S->getFlags() & Scope::DeclScope) == 0) |
| 2142 | S = S->getParent(); |
| 2143 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2144 | // Verify that there isn't already something declared with this name in this |
| 2145 | // scope. |
Steve Naroff | 8e74c93 | 2007-09-13 21:41:19 +0000 | [diff] [blame] | 2146 | if (ScopedDecl *PrevDecl = LookupScopedDecl(Id, Decl::IDNS_Ordinary, |
| 2147 | IdLoc, S)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2148 | if (S->isDeclScope(PrevDecl)) { |
| 2149 | if (isa<EnumConstantDecl>(PrevDecl)) |
| 2150 | Diag(IdLoc, diag::err_redefinition_of_enumerator, Id->getName()); |
| 2151 | else |
| 2152 | Diag(IdLoc, diag::err_redefinition, Id->getName()); |
| 2153 | Diag(PrevDecl->getLocation(), diag::err_previous_definition); |
| 2154 | // FIXME: Don't leak memory: delete Val; |
| 2155 | return 0; |
| 2156 | } |
| 2157 | } |
| 2158 | |
| 2159 | llvm::APSInt EnumVal(32); |
| 2160 | QualType EltTy; |
| 2161 | if (Val) { |
Chris Lattner | 421a23d | 2007-08-27 21:16:18 +0000 | [diff] [blame] | 2162 | // Make sure to promote the operand type to int. |
| 2163 | UsualUnaryConversions(Val); |
| 2164 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2165 | // C99 6.7.2.2p2: Make sure we have an integer constant expression. |
| 2166 | SourceLocation ExpLoc; |
Chris Lattner | 590b664 | 2007-07-15 23:26:56 +0000 | [diff] [blame] | 2167 | if (!Val->isIntegerConstantExpr(EnumVal, Context, &ExpLoc)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2168 | Diag(ExpLoc, diag::err_enum_value_not_integer_constant_expr, |
| 2169 | Id->getName()); |
| 2170 | // FIXME: Don't leak memory: delete Val; |
Chris Lattner | b7416f9 | 2007-08-27 17:37:24 +0000 | [diff] [blame] | 2171 | Val = 0; // Just forget about it. |
Chris Lattner | e9ca851 | 2007-08-29 16:03:41 +0000 | [diff] [blame] | 2172 | } else { |
| 2173 | EltTy = Val->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2174 | } |
Chris Lattner | b7416f9 | 2007-08-27 17:37:24 +0000 | [diff] [blame] | 2175 | } |
| 2176 | |
| 2177 | if (!Val) { |
| 2178 | if (LastEnumConst) { |
| 2179 | // Assign the last value + 1. |
| 2180 | EnumVal = LastEnumConst->getInitVal(); |
| 2181 | ++EnumVal; |
Chris Lattner | 421a23d | 2007-08-27 21:16:18 +0000 | [diff] [blame] | 2182 | |
| 2183 | // Check for overflow on increment. |
| 2184 | if (EnumVal < LastEnumConst->getInitVal()) |
| 2185 | Diag(IdLoc, diag::warn_enum_value_overflow); |
| 2186 | |
Chris Lattner | b7416f9 | 2007-08-27 17:37:24 +0000 | [diff] [blame] | 2187 | EltTy = LastEnumConst->getType(); |
| 2188 | } else { |
| 2189 | // First value, set to zero. |
| 2190 | EltTy = Context.IntTy; |
Chris Lattner | 701e5eb | 2007-09-04 02:45:27 +0000 | [diff] [blame] | 2191 | EnumVal.zextOrTrunc( |
| 2192 | static_cast<uint32_t>(Context.getTypeSize(EltTy, IdLoc))); |
Chris Lattner | b7416f9 | 2007-08-27 17:37:24 +0000 | [diff] [blame] | 2193 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2194 | } |
| 2195 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2196 | EnumConstantDecl *New = new EnumConstantDecl(IdLoc, Id, EltTy, Val, EnumVal, |
| 2197 | LastEnumConst); |
| 2198 | |
| 2199 | // Register this decl in the current scope stack. |
Steve Naroff | c752d04 | 2007-09-13 18:10:37 +0000 | [diff] [blame] | 2200 | New->setNext(Id->getFETokenInfo<ScopedDecl>()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2201 | Id->setFETokenInfo(New); |
| 2202 | S->AddDecl(New); |
| 2203 | return New; |
| 2204 | } |
| 2205 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 2206 | void Sema::ActOnEnumBody(SourceLocation EnumLoc, DeclTy *EnumDeclX, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2207 | DeclTy **Elements, unsigned NumElements) { |
| 2208 | EnumDecl *Enum = cast<EnumDecl>(static_cast<Decl*>(EnumDeclX)); |
| 2209 | assert(!Enum->isDefinition() && "Enum redefinitions can't reach here"); |
| 2210 | |
Chris Lattner | e37f0be | 2007-08-28 05:10:31 +0000 | [diff] [blame] | 2211 | // TODO: If the result value doesn't fit in an int, it must be a long or long |
| 2212 | // long value. ISO C does not support this, but GCC does as an extension, |
| 2213 | // emit a warning. |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 2214 | unsigned IntWidth = Context.Target.getIntWidth(Enum->getLocation()); |
Chris Lattner | e37f0be | 2007-08-28 05:10:31 +0000 | [diff] [blame] | 2215 | |
| 2216 | |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 2217 | // Verify that all the values are okay, compute the size of the values, and |
| 2218 | // reverse the list. |
| 2219 | unsigned NumNegativeBits = 0; |
| 2220 | unsigned NumPositiveBits = 0; |
| 2221 | |
| 2222 | // Keep track of whether all elements have type int. |
| 2223 | bool AllElementsInt = true; |
| 2224 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2225 | EnumConstantDecl *EltList = 0; |
| 2226 | for (unsigned i = 0; i != NumElements; ++i) { |
| 2227 | EnumConstantDecl *ECD = |
| 2228 | cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i])); |
| 2229 | if (!ECD) continue; // Already issued a diagnostic. |
Chris Lattner | 211a30e | 2007-08-28 05:27:00 +0000 | [diff] [blame] | 2230 | |
| 2231 | // If the enum value doesn't fit in an int, emit an extension warning. |
| 2232 | assert(ECD->getInitVal().getBitWidth() >= IntWidth && |
| 2233 | "Should have promoted value to int"); |
| 2234 | const llvm::APSInt &InitVal = ECD->getInitVal(); |
| 2235 | if (InitVal.getBitWidth() > IntWidth) { |
| 2236 | llvm::APSInt V(InitVal); |
| 2237 | V.trunc(IntWidth); |
| 2238 | V.extend(InitVal.getBitWidth()); |
| 2239 | if (V != InitVal) |
| 2240 | Diag(ECD->getLocation(), diag::ext_enum_value_not_int, |
| 2241 | InitVal.toString()); |
| 2242 | } |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 2243 | |
| 2244 | // Keep track of the size of positive and negative values. |
| 2245 | if (InitVal.isUnsigned() || !InitVal.isNegative()) |
| 2246 | NumPositiveBits = std::max(NumPositiveBits, InitVal.getActiveBits()); |
| 2247 | else |
| 2248 | NumNegativeBits = std::max(NumNegativeBits, InitVal.getMinSignedBits()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2249 | |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 2250 | // Keep track of whether every enum element has type int (very commmon). |
| 2251 | if (AllElementsInt) |
| 2252 | AllElementsInt = ECD->getType() == Context.IntTy; |
| 2253 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2254 | ECD->setNextDeclarator(EltList); |
| 2255 | EltList = ECD; |
| 2256 | } |
| 2257 | |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 2258 | // Figure out the type that should be used for this enum. |
| 2259 | // FIXME: Support attribute(packed) on enums and -fshort-enums. |
| 2260 | QualType BestType; |
Chris Lattner | b7f6e08 | 2007-08-29 17:31:48 +0000 | [diff] [blame] | 2261 | unsigned BestWidth; |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 2262 | |
| 2263 | if (NumNegativeBits) { |
| 2264 | // If there is a negative value, figure out the smallest integer type (of |
| 2265 | // int/long/longlong) that fits. |
Chris Lattner | b7f6e08 | 2007-08-29 17:31:48 +0000 | [diff] [blame] | 2266 | if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) { |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 2267 | BestType = Context.IntTy; |
Chris Lattner | b7f6e08 | 2007-08-29 17:31:48 +0000 | [diff] [blame] | 2268 | BestWidth = IntWidth; |
| 2269 | } else { |
| 2270 | BestWidth = Context.Target.getLongWidth(Enum->getLocation()); |
| 2271 | if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 2272 | BestType = Context.LongTy; |
| 2273 | else { |
Chris Lattner | b7f6e08 | 2007-08-29 17:31:48 +0000 | [diff] [blame] | 2274 | BestWidth = Context.Target.getLongLongWidth(Enum->getLocation()); |
| 2275 | if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth) |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 2276 | Diag(Enum->getLocation(), diag::warn_enum_too_large); |
| 2277 | BestType = Context.LongLongTy; |
| 2278 | } |
| 2279 | } |
| 2280 | } else { |
| 2281 | // If there is no negative value, figure out which of uint, ulong, ulonglong |
| 2282 | // fits. |
Chris Lattner | b7f6e08 | 2007-08-29 17:31:48 +0000 | [diff] [blame] | 2283 | if (NumPositiveBits <= IntWidth) { |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 2284 | BestType = Context.UnsignedIntTy; |
Chris Lattner | b7f6e08 | 2007-08-29 17:31:48 +0000 | [diff] [blame] | 2285 | BestWidth = IntWidth; |
| 2286 | } else if (NumPositiveBits <= |
| 2287 | (BestWidth = Context.Target.getLongWidth(Enum->getLocation()))) |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 2288 | BestType = Context.UnsignedLongTy; |
| 2289 | else { |
Chris Lattner | b7f6e08 | 2007-08-29 17:31:48 +0000 | [diff] [blame] | 2290 | BestWidth = Context.Target.getLongLongWidth(Enum->getLocation()); |
| 2291 | assert(NumPositiveBits <= BestWidth && |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 2292 | "How could an initializer get larger than ULL?"); |
| 2293 | BestType = Context.UnsignedLongLongTy; |
| 2294 | } |
| 2295 | } |
| 2296 | |
Chris Lattner | b7f6e08 | 2007-08-29 17:31:48 +0000 | [diff] [blame] | 2297 | // Loop over all of the enumerator constants, changing their types to match |
| 2298 | // the type of the enum if needed. |
| 2299 | for (unsigned i = 0; i != NumElements; ++i) { |
| 2300 | EnumConstantDecl *ECD = |
| 2301 | cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i])); |
| 2302 | if (!ECD) continue; // Already issued a diagnostic. |
| 2303 | |
| 2304 | // Standard C says the enumerators have int type, but we allow, as an |
| 2305 | // extension, the enumerators to be larger than int size. If each |
| 2306 | // enumerator value fits in an int, type it as an int, otherwise type it the |
| 2307 | // same as the enumerator decl itself. This means that in "enum { X = 1U }" |
| 2308 | // that X has type 'int', not 'unsigned'. |
| 2309 | if (ECD->getType() == Context.IntTy) |
| 2310 | continue; // Already int type. |
| 2311 | |
| 2312 | // Determine whether the value fits into an int. |
| 2313 | llvm::APSInt InitVal = ECD->getInitVal(); |
| 2314 | bool FitsInInt; |
| 2315 | if (InitVal.isUnsigned() || !InitVal.isNegative()) |
| 2316 | FitsInInt = InitVal.getActiveBits() < IntWidth; |
| 2317 | else |
| 2318 | FitsInInt = InitVal.getMinSignedBits() <= IntWidth; |
| 2319 | |
| 2320 | // If it fits into an integer type, force it. Otherwise force it to match |
| 2321 | // the enum decl type. |
| 2322 | QualType NewTy; |
| 2323 | unsigned NewWidth; |
| 2324 | bool NewSign; |
| 2325 | if (FitsInInt) { |
| 2326 | NewTy = Context.IntTy; |
| 2327 | NewWidth = IntWidth; |
| 2328 | NewSign = true; |
| 2329 | } else if (ECD->getType() == BestType) { |
| 2330 | // Already the right type! |
| 2331 | continue; |
| 2332 | } else { |
| 2333 | NewTy = BestType; |
| 2334 | NewWidth = BestWidth; |
| 2335 | NewSign = BestType->isSignedIntegerType(); |
| 2336 | } |
| 2337 | |
| 2338 | // Adjust the APSInt value. |
| 2339 | InitVal.extOrTrunc(NewWidth); |
| 2340 | InitVal.setIsSigned(NewSign); |
| 2341 | ECD->setInitVal(InitVal); |
| 2342 | |
| 2343 | // Adjust the Expr initializer and type. |
| 2344 | ECD->setInitExpr(new ImplicitCastExpr(NewTy, ECD->getInitExpr())); |
| 2345 | ECD->setType(NewTy); |
| 2346 | } |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 2347 | |
Chris Lattner | e00b18c | 2007-08-28 18:24:31 +0000 | [diff] [blame] | 2348 | Enum->defineElements(EltList, BestType); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2349 | } |
| 2350 | |
| 2351 | void Sema::AddTopLevelDecl(Decl *current, Decl *last) { |
| 2352 | if (!current) return; |
| 2353 | |
| 2354 | // If this is a top-level decl that is chained to some other (e.g. int A,B,C;) |
| 2355 | // remember this in the LastInGroupList list. |
| 2356 | if (last) |
| 2357 | LastInGroupList.push_back((Decl*)last); |
| 2358 | } |
| 2359 | |
| 2360 | void Sema::HandleDeclAttribute(Decl *New, AttributeList *rawAttr) { |
| 2361 | if (strcmp(rawAttr->getAttributeName()->getName(), "vector_size") == 0) { |
| 2362 | if (ValueDecl *vDecl = dyn_cast<ValueDecl>(New)) { |
| 2363 | QualType newType = HandleVectorTypeAttribute(vDecl->getType(), rawAttr); |
| 2364 | if (!newType.isNull()) // install the new vector type into the decl |
| 2365 | vDecl->setType(newType); |
| 2366 | } |
| 2367 | if (TypedefDecl *tDecl = dyn_cast<TypedefDecl>(New)) { |
| 2368 | QualType newType = HandleVectorTypeAttribute(tDecl->getUnderlyingType(), |
| 2369 | rawAttr); |
| 2370 | if (!newType.isNull()) // install the new vector type into the decl |
| 2371 | tDecl->setUnderlyingType(newType); |
| 2372 | } |
| 2373 | } |
Steve Naroff | 7332292 | 2007-07-18 18:00:27 +0000 | [diff] [blame] | 2374 | if (strcmp(rawAttr->getAttributeName()->getName(), "ocu_vector_type") == 0) { |
Steve Naroff | bea0b34 | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 2375 | if (TypedefDecl *tDecl = dyn_cast<TypedefDecl>(New)) |
| 2376 | HandleOCUVectorTypeAttribute(tDecl, rawAttr); |
| 2377 | else |
Steve Naroff | 7332292 | 2007-07-18 18:00:27 +0000 | [diff] [blame] | 2378 | Diag(rawAttr->getAttributeLoc(), |
| 2379 | diag::err_typecheck_ocu_vector_not_typedef); |
Steve Naroff | 7332292 | 2007-07-18 18:00:27 +0000 | [diff] [blame] | 2380 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2381 | // FIXME: add other attributes... |
| 2382 | } |
| 2383 | |
| 2384 | void Sema::HandleDeclAttributes(Decl *New, AttributeList *declspec_prefix, |
| 2385 | AttributeList *declarator_postfix) { |
| 2386 | while (declspec_prefix) { |
| 2387 | HandleDeclAttribute(New, declspec_prefix); |
| 2388 | declspec_prefix = declspec_prefix->getNext(); |
| 2389 | } |
| 2390 | while (declarator_postfix) { |
| 2391 | HandleDeclAttribute(New, declarator_postfix); |
| 2392 | declarator_postfix = declarator_postfix->getNext(); |
| 2393 | } |
| 2394 | } |
| 2395 | |
Steve Naroff | bea0b34 | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 2396 | void Sema::HandleOCUVectorTypeAttribute(TypedefDecl *tDecl, |
| 2397 | AttributeList *rawAttr) { |
| 2398 | QualType curType = tDecl->getUnderlyingType(); |
Steve Naroff | 7332292 | 2007-07-18 18:00:27 +0000 | [diff] [blame] | 2399 | // check the attribute arugments. |
| 2400 | if (rawAttr->getNumArgs() != 1) { |
| 2401 | Diag(rawAttr->getAttributeLoc(), diag::err_attribute_wrong_number_arguments, |
| 2402 | std::string("1")); |
Steve Naroff | bea0b34 | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 2403 | return; |
Steve Naroff | 7332292 | 2007-07-18 18:00:27 +0000 | [diff] [blame] | 2404 | } |
| 2405 | Expr *sizeExpr = static_cast<Expr *>(rawAttr->getArg(0)); |
| 2406 | llvm::APSInt vecSize(32); |
| 2407 | if (!sizeExpr->isIntegerConstantExpr(vecSize, Context)) { |
| 2408 | Diag(rawAttr->getAttributeLoc(), diag::err_attribute_vector_size_not_int, |
| 2409 | sizeExpr->getSourceRange()); |
Steve Naroff | bea0b34 | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 2410 | return; |
Steve Naroff | 7332292 | 2007-07-18 18:00:27 +0000 | [diff] [blame] | 2411 | } |
| 2412 | // unlike gcc's vector_size attribute, we do not allow vectors to be defined |
| 2413 | // in conjunction with complex types (pointers, arrays, functions, etc.). |
| 2414 | Type *canonType = curType.getCanonicalType().getTypePtr(); |
| 2415 | if (!(canonType->isIntegerType() || canonType->isRealFloatingType())) { |
| 2416 | Diag(rawAttr->getAttributeLoc(), diag::err_attribute_invalid_vector_type, |
| 2417 | curType.getCanonicalType().getAsString()); |
Steve Naroff | bea0b34 | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 2418 | return; |
Steve Naroff | 7332292 | 2007-07-18 18:00:27 +0000 | [diff] [blame] | 2419 | } |
| 2420 | // unlike gcc's vector_size attribute, the size is specified as the |
| 2421 | // number of elements, not the number of bytes. |
Chris Lattner | 701e5eb | 2007-09-04 02:45:27 +0000 | [diff] [blame] | 2422 | unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue()); |
Steve Naroff | 7332292 | 2007-07-18 18:00:27 +0000 | [diff] [blame] | 2423 | |
| 2424 | if (vectorSize == 0) { |
| 2425 | Diag(rawAttr->getAttributeLoc(), diag::err_attribute_zero_size, |
| 2426 | sizeExpr->getSourceRange()); |
Steve Naroff | bea0b34 | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 2427 | return; |
Steve Naroff | 7332292 | 2007-07-18 18:00:27 +0000 | [diff] [blame] | 2428 | } |
Steve Naroff | bea0b34 | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 2429 | // Instantiate/Install the vector type, the number of elements is > 0. |
| 2430 | tDecl->setUnderlyingType(Context.getOCUVectorType(curType, vectorSize)); |
| 2431 | // Remember this typedef decl, we will need it later for diagnostics. |
| 2432 | OCUVectorDecls.push_back(tDecl); |
Steve Naroff | 7332292 | 2007-07-18 18:00:27 +0000 | [diff] [blame] | 2433 | } |
| 2434 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2435 | QualType Sema::HandleVectorTypeAttribute(QualType curType, |
Chris Lattner | a7674d8 | 2007-07-13 22:13:22 +0000 | [diff] [blame] | 2436 | AttributeList *rawAttr) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2437 | // check the attribute arugments. |
| 2438 | if (rawAttr->getNumArgs() != 1) { |
| 2439 | Diag(rawAttr->getAttributeLoc(), diag::err_attribute_wrong_number_arguments, |
| 2440 | std::string("1")); |
| 2441 | return QualType(); |
| 2442 | } |
| 2443 | Expr *sizeExpr = static_cast<Expr *>(rawAttr->getArg(0)); |
| 2444 | llvm::APSInt vecSize(32); |
Chris Lattner | 590b664 | 2007-07-15 23:26:56 +0000 | [diff] [blame] | 2445 | if (!sizeExpr->isIntegerConstantExpr(vecSize, Context)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2446 | Diag(rawAttr->getAttributeLoc(), diag::err_attribute_vector_size_not_int, |
| 2447 | sizeExpr->getSourceRange()); |
| 2448 | return QualType(); |
| 2449 | } |
| 2450 | // navigate to the base type - we need to provide for vector pointers, |
| 2451 | // vector arrays, and functions returning vectors. |
| 2452 | Type *canonType = curType.getCanonicalType().getTypePtr(); |
| 2453 | |
Steve Naroff | 7332292 | 2007-07-18 18:00:27 +0000 | [diff] [blame] | 2454 | if (canonType->isPointerType() || canonType->isArrayType() || |
| 2455 | canonType->isFunctionType()) { |
| 2456 | assert(1 && "HandleVector(): Complex type construction unimplemented"); |
| 2457 | /* FIXME: rebuild the type from the inside out, vectorizing the inner type. |
| 2458 | do { |
| 2459 | if (PointerType *PT = dyn_cast<PointerType>(canonType)) |
| 2460 | canonType = PT->getPointeeType().getTypePtr(); |
| 2461 | else if (ArrayType *AT = dyn_cast<ArrayType>(canonType)) |
| 2462 | canonType = AT->getElementType().getTypePtr(); |
| 2463 | else if (FunctionType *FT = dyn_cast<FunctionType>(canonType)) |
| 2464 | canonType = FT->getResultType().getTypePtr(); |
| 2465 | } while (canonType->isPointerType() || canonType->isArrayType() || |
| 2466 | canonType->isFunctionType()); |
| 2467 | */ |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2468 | } |
| 2469 | // the base type must be integer or float. |
| 2470 | if (!(canonType->isIntegerType() || canonType->isRealFloatingType())) { |
| 2471 | Diag(rawAttr->getAttributeLoc(), diag::err_attribute_invalid_vector_type, |
| 2472 | curType.getCanonicalType().getAsString()); |
| 2473 | return QualType(); |
| 2474 | } |
Chris Lattner | 701e5eb | 2007-09-04 02:45:27 +0000 | [diff] [blame] | 2475 | unsigned typeSize = static_cast<unsigned>( |
| 2476 | Context.getTypeSize(curType, rawAttr->getAttributeLoc())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2477 | // vecSize is specified in bytes - convert to bits. |
Chris Lattner | 701e5eb | 2007-09-04 02:45:27 +0000 | [diff] [blame] | 2478 | unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue() * 8); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2479 | |
| 2480 | // the vector size needs to be an integral multiple of the type size. |
| 2481 | if (vectorSize % typeSize) { |
| 2482 | Diag(rawAttr->getAttributeLoc(), diag::err_attribute_invalid_size, |
| 2483 | sizeExpr->getSourceRange()); |
| 2484 | return QualType(); |
| 2485 | } |
| 2486 | if (vectorSize == 0) { |
| 2487 | Diag(rawAttr->getAttributeLoc(), diag::err_attribute_zero_size, |
| 2488 | sizeExpr->getSourceRange()); |
| 2489 | return QualType(); |
| 2490 | } |
| 2491 | // Since OpenCU requires 3 element vectors (OpenCU 5.1.2), we don't restrict |
| 2492 | // the number of elements to be a power of two (unlike GCC). |
| 2493 | // Instantiate the vector type, the number of elements is > 0. |
Steve Naroff | 7332292 | 2007-07-18 18:00:27 +0000 | [diff] [blame] | 2494 | return Context.getVectorType(curType, vectorSize/typeSize); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2495 | } |
| 2496 | |