blob: d91420d16fd6213863dfdd9697c33e0f2da64844 [file] [log] [blame]
Chris Lattner697e5d62006-11-09 06:32:27 +00001//===--- 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
Chris Lattnere168f762006-11-10 05:29:30 +000014#include "Sema.h"
Chris Lattner5c5fbcc2006-12-03 08:41:30 +000015#include "clang/AST/ASTContext.h"
Chris Lattner9561a0b2007-01-28 08:20:04 +000016#include "clang/AST/Builtins.h"
Chris Lattnere168f762006-11-10 05:29:30 +000017#include "clang/AST/Decl.h"
Chris Lattner1300fb92007-01-23 23:42:53 +000018#include "clang/AST/Expr.h"
Chris Lattnerf84a79c2006-11-11 22:59:23 +000019#include "clang/AST/Type.h"
Chris Lattner591a6752006-11-19 23:16:18 +000020#include "clang/Parse/DeclSpec.h"
Chris Lattnere168f762006-11-10 05:29:30 +000021#include "clang/Parse/Scope.h"
22#include "clang/Lex/IdentifierTable.h"
Chris Lattnerac18be92006-11-20 06:49:47 +000023#include "clang/Basic/LangOptions.h"
Chris Lattner9561a0b2007-01-28 08:20:04 +000024#include "clang/Basic/TargetInfo.h"
Chris Lattner38047f92007-01-27 06:24:01 +000025#include "llvm/ADT/SmallSet.h"
Chris Lattner697e5d62006-11-09 06:32:27 +000026using namespace clang;
27
Steve Naroff8eeeb132007-05-08 21:09:37 +000028// C99: 6.7.5p3: Used by ParseDeclarator/ParseField to make sure we have
29// a constant expression of type int with a value greater than zero.
Chris Lattner6046e002007-06-05 06:39:23 +000030bool Sema::VerifyConstantArrayType(const ArrayType *Array,
31 SourceLocation DeclLoc) {
Chris Lattnerd2b88ab2007-07-13 03:05:23 +000032 const Expr *Size = Array->getSizeExpr();
Chris Lattner6046e002007-06-05 06:39:23 +000033 if (Size == 0) return false; // incomplete type.
34
35 if (!Size->getType()->isIntegerType()) {
36 Diag(Size->getLocStart(), diag::err_array_size_non_int,
37 Size->getType().getAsString(), Size->getSourceRange());
38 return true;
Steve Naroff8eeeb132007-05-08 21:09:37 +000039 }
Chris Lattner6046e002007-06-05 06:39:23 +000040
41 // Verify that the size of the array is an integer constant expr.
42 SourceLocation Loc;
Chris Lattner23b7eb62007-06-15 23:05:46 +000043 llvm::APSInt SizeVal(32);
Chris Lattner0e9d6222007-07-15 23:26:56 +000044 if (!Size->isIntegerConstantExpr(SizeVal, Context, &Loc)) {
Chris Lattner6046e002007-06-05 06:39:23 +000045 // FIXME: This emits the diagnostic to enforce 6.7.2.1p8, but the message
46 // is wrong. It is also wrong for static variables.
Chris Lattner6d9b49a2007-06-09 05:56:19 +000047 // FIXME: This is also wrong for:
48 // int sub1(int i, char *pi) { typedef int foo[i];
49 // struct bar {foo f1; int f2:3; int f3:4} *p; }
Chris Lattner6046e002007-06-05 06:39:23 +000050 Diag(DeclLoc, diag::err_typecheck_illegal_vla, Size->getSourceRange());
51 return true;
52 }
53
54 // We have a constant expression with an integer type, now make sure
55 // value greater than zero (C99 6.7.5.2p1).
56
57 // FIXME: This check isn't specific to static VLAs, this should be moved
58 // elsewhere or replicated. 'int X[-1];' inside a function should emit an
59 // error.
60 if (SizeVal.isSigned()) {
Chris Lattner23b7eb62007-06-15 23:05:46 +000061 llvm::APSInt Zero(SizeVal.getBitWidth());
Chris Lattner6046e002007-06-05 06:39:23 +000062 Zero.setIsUnsigned(false);
63 if (SizeVal < Zero) {
64 Diag(DeclLoc, diag::err_typecheck_negative_array_size,
65 Size->getSourceRange());
66 return true;
67 } else if (SizeVal == 0) {
68 // GCC accepts zero sized static arrays.
69 Diag(DeclLoc, diag::err_typecheck_zero_array_size,
70 Size->getSourceRange());
71 }
72 }
73 return false;
Steve Naroff8eeeb132007-05-08 21:09:37 +000074}
Chris Lattnere168f762006-11-10 05:29:30 +000075
Chris Lattner2ebe4bb2006-11-20 01:29:42 +000076Sema::DeclTy *Sema::isTypeName(const IdentifierInfo &II, Scope *S) const {
Chris Lattner32d920b2007-01-26 02:01:53 +000077 return dyn_cast_or_null<TypedefDecl>(II.getFETokenInfo<Decl>());
Chris Lattnere168f762006-11-10 05:29:30 +000078}
79
Chris Lattner302b4be2006-11-19 02:31:38 +000080void Sema::PopScope(SourceLocation Loc, Scope *S) {
Chris Lattner1a76a3c2007-08-26 06:24:45 +000081 if (S->decl_empty()) return;
82 assert((S->getFlags() & Scope::DeclScope) &&"Scope shouldn't contain decls!");
83
Chris Lattner302b4be2006-11-19 02:31:38 +000084 for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end();
85 I != E; ++I) {
Chris Lattner99d31772007-01-21 22:37:37 +000086 Decl *D = static_cast<Decl*>(*I);
Chris Lattner302b4be2006-11-19 02:31:38 +000087 assert(D && "This decl didn't get pushed??");
Chris Lattnerff65b6b2007-01-23 01:33:16 +000088 IdentifierInfo *II = D->getIdentifier();
89 if (!II) continue;
Chris Lattner302b4be2006-11-19 02:31:38 +000090
Chris Lattnerff65b6b2007-01-23 01:33:16 +000091 // Unlink this decl from the identifier. Because the scope contains decls
92 // in an unordered collection, and because we have multiple identifier
93 // namespaces (e.g. tag, normal, label),the decl may not be the first entry.
94 if (II->getFETokenInfo<Decl>() == D) {
95 // Normal case, no multiple decls in different namespaces.
96 II->setFETokenInfo(D->getNext());
97 } else {
98 // Scan ahead. There are only three namespaces in C, so this loop can
99 // never execute more than 3 times.
100 Decl *SomeDecl = II->getFETokenInfo<Decl>();
101 while (SomeDecl->getNext() != D) {
102 SomeDecl = SomeDecl->getNext();
103 assert(SomeDecl && "Didn't find this decl on its identifier's chain!");
104 }
105 SomeDecl->setNext(D->getNext());
106 }
Chris Lattner302b4be2006-11-19 02:31:38 +0000107
Chris Lattner740b2f32006-11-21 01:32:20 +0000108 // This will have to be revisited for C++: there we want to nest stuff in
109 // namespace decls etc. Even for C, we might want a top-level translation
110 // unit decl or something.
111 if (!CurFunctionDecl)
112 continue;
113
114 // Chain this decl to the containing function, it now owns the memory for
115 // the decl.
116 D->setNext(CurFunctionDecl->getDeclChain());
117 CurFunctionDecl->setDeclChain(D);
Chris Lattner302b4be2006-11-19 02:31:38 +0000118 }
119}
120
Chris Lattner18b19622007-01-22 07:39:13 +0000121/// LookupScopedDecl - Look up the inner-most declaration in the specified
122/// namespace.
Chris Lattner9561a0b2007-01-28 08:20:04 +0000123Decl *Sema::LookupScopedDecl(IdentifierInfo *II, unsigned NSI,
124 SourceLocation IdLoc, Scope *S) {
Chris Lattner18b19622007-01-22 07:39:13 +0000125 if (II == 0) return 0;
Chris Lattnerb6738ec2007-01-28 00:38:24 +0000126 Decl::IdentifierNamespace NS = (Decl::IdentifierNamespace)NSI;
Chris Lattner18b19622007-01-22 07:39:13 +0000127
128 // Scan up the scope chain looking for a decl that matches this identifier
129 // that is in the appropriate namespace. This search should not take long, as
130 // shadowing of names is uncommon, and deep shadowing is extremely uncommon.
131 for (Decl *D = II->getFETokenInfo<Decl>(); D; D = D->getNext())
132 if (D->getIdentifierNamespace() == NS)
133 return D;
Chris Lattnerb6738ec2007-01-28 00:38:24 +0000134
Chris Lattner9561a0b2007-01-28 08:20:04 +0000135 // If we didn't find a use of this identifier, and if the identifier
136 // corresponds to a compiler builtin, create the decl object for the builtin
137 // now, injecting it into translation unit scope, and return it.
138 if (NS == Decl::IDNS_Ordinary) {
139 // If this is a builtin on some other target, or if this builtin varies
140 // across targets (e.g. in type), emit a diagnostic and mark the translation
141 // unit non-portable for using it.
142 if (II->isNonPortableBuiltin()) {
143 // Only emit this diagnostic once for this builtin.
144 II->setNonPortableBuiltin(false);
145 Context.Target.DiagnoseNonPortability(IdLoc,
146 diag::port_target_builtin_use);
147 }
Chris Lattner9561a0b2007-01-28 08:20:04 +0000148 // If this is a builtin on this (or all) targets, create the decl.
149 if (unsigned BuiltinID = II->getBuiltinID())
150 return LazilyCreateBuiltin(II, BuiltinID, S);
151 }
Chris Lattner18b19622007-01-22 07:39:13 +0000152 return 0;
153}
154
Chris Lattner9561a0b2007-01-28 08:20:04 +0000155/// LazilyCreateBuiltin - The specified Builtin-ID was first used at file scope.
156/// lazily create a decl for it.
157Decl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid, Scope *S) {
158 Builtin::ID BID = (Builtin::ID)bid;
159
Steve Naroffe5aa9be2007-04-05 22:36:20 +0000160 QualType R = Context.BuiltinInfo.GetBuiltinType(BID, Context);
Chris Lattner776fac82007-06-09 00:53:06 +0000161 FunctionDecl *New = new FunctionDecl(SourceLocation(), II, R,
Chris Lattnerb677a932007-08-26 04:02:13 +0000162 FunctionDecl::Extern, false, 0);
Chris Lattner9561a0b2007-01-28 08:20:04 +0000163
164 // Find translation-unit scope to insert this function into.
Chris Lattner1a76a3c2007-08-26 06:24:45 +0000165 if (Scope *FnS = S->getFnParent())
166 S = FnS->getParent(); // Skip all scopes in a function at once.
Chris Lattner9561a0b2007-01-28 08:20:04 +0000167 while (S->getParent())
168 S = S->getParent();
169 S->AddDecl(New);
170
171 // Add this decl to the end of the identifier info.
172 if (Decl *LastDecl = II->getFETokenInfo<Decl>()) {
173 // Scan until we find the last (outermost) decl in the id chain.
174 while (LastDecl->getNext())
175 LastDecl = LastDecl->getNext();
176 // Insert before (outside) it.
177 LastDecl->setNext(New);
178 } else {
179 II->setFETokenInfo(New);
180 }
181 // Make sure clients iterating over decls see this.
182 LastInGroupList.push_back(New);
183
184 return New;
185}
186
Chris Lattner01564d92007-01-27 19:27:06 +0000187/// MergeTypeDefDecl - We just parsed a typedef 'New' which has the same name
188/// and scope as a previous declaration 'Old'. Figure out how to resolve this
189/// situation, merging decls or emitting diagnostics as appropriate.
190///
Chris Lattnerc511efb2007-01-27 19:32:14 +0000191TypedefDecl *Sema::MergeTypeDefDecl(TypedefDecl *New, Decl *OldD) {
192 // Verify the old decl was also a typedef.
193 TypedefDecl *Old = dyn_cast<TypedefDecl>(OldD);
194 if (!Old) {
195 Diag(New->getLocation(), diag::err_redefinition_different_kind,
196 New->getName());
197 Diag(OldD->getLocation(), diag::err_previous_definition);
198 return New;
199 }
200
Chris Lattner01564d92007-01-27 19:27:06 +0000201 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
202 // TODO: This is totally simplistic. It should handle merging functions
203 // together etc, merging extern int X; int X; ...
204 Diag(New->getLocation(), diag::err_redefinition, New->getName());
205 Diag(Old->getLocation(), diag::err_previous_definition);
206 return New;
207}
208
209/// MergeFunctionDecl - We just parsed a function 'New' which has the same name
210/// and scope as a previous declaration 'Old'. Figure out how to resolve this
211/// situation, merging decls or emitting diagnostics as appropriate.
212///
Chris Lattnerc511efb2007-01-27 19:32:14 +0000213FunctionDecl *Sema::MergeFunctionDecl(FunctionDecl *New, Decl *OldD) {
214 // Verify the old decl was also a function.
215 FunctionDecl *Old = dyn_cast<FunctionDecl>(OldD);
216 if (!Old) {
217 Diag(New->getLocation(), diag::err_redefinition_different_kind,
218 New->getName());
219 Diag(OldD->getLocation(), diag::err_previous_definition);
220 return New;
221 }
222
Chris Lattnerefe4aea2007-01-27 19:35:39 +0000223 // This is not right, but it's a start. If 'Old' is a function prototype with
224 // the same type as 'New', silently allow this. FIXME: We should link up decl
225 // objects here.
Steve Naroff6fbf0dc2007-03-16 00:33:25 +0000226 if (Old->getBody() == 0 &&
227 Old->getCanonicalType() == New->getCanonicalType()) {
Chris Lattnerefe4aea2007-01-27 19:35:39 +0000228 return New;
229 }
Chris Lattnerc511efb2007-01-27 19:32:14 +0000230
Chris Lattner01564d92007-01-27 19:27:06 +0000231 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
232 // TODO: This is totally simplistic. It should handle merging functions
233 // together etc, merging extern int X; int X; ...
234 Diag(New->getLocation(), diag::err_redefinition, New->getName());
235 Diag(Old->getLocation(), diag::err_previous_definition);
236 return New;
237}
238
239/// MergeVarDecl - We just parsed a variable 'New' which has the same name
240/// and scope as a previous declaration 'Old'. Figure out how to resolve this
241/// situation, merging decls or emitting diagnostics as appropriate.
242///
Steve Narofffc49d672007-04-01 21:27:45 +0000243/// FIXME: Need to carefully consider tentative definition rules (C99 6.9.2p2).
244/// For example, we incorrectly complain about i1, i4 from C99 6.9.2p4.
245///
Chris Lattnerc511efb2007-01-27 19:32:14 +0000246VarDecl *Sema::MergeVarDecl(VarDecl *New, Decl *OldD) {
247 // Verify the old decl was also a variable.
248 VarDecl *Old = dyn_cast<VarDecl>(OldD);
249 if (!Old) {
250 Diag(New->getLocation(), diag::err_redefinition_different_kind,
251 New->getName());
252 Diag(OldD->getLocation(), diag::err_previous_definition);
253 return New;
254 }
Steve Naroff6fbf0dc2007-03-16 00:33:25 +0000255 // Verify the types match.
256 if (Old->getCanonicalType() != New->getCanonicalType()) {
257 Diag(New->getLocation(), diag::err_redefinition, New->getName());
258 Diag(Old->getLocation(), diag::err_previous_definition);
259 return New;
260 }
261 // We've verified the types match, now check if Old is "extern".
Steve Naroff46ba1eb2007-04-03 23:13:13 +0000262 if (Old->getStorageClass() != VarDecl::Extern) {
Steve Naroff6fbf0dc2007-03-16 00:33:25 +0000263 Diag(New->getLocation(), diag::err_redefinition, New->getName());
264 Diag(Old->getLocation(), diag::err_previous_definition);
265 }
Chris Lattner01564d92007-01-27 19:27:06 +0000266 return New;
267}
268
Chris Lattnerb6738ec2007-01-28 00:38:24 +0000269/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
270/// no declarator (e.g. "struct foo;") is parsed.
271Sema::DeclTy *Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) {
272 // TODO: emit error on 'int;' or 'const enum foo;'.
273 // TODO: emit error on 'typedef int;'
274 // if (!DS.isMissingDeclaratorOk()) Diag(...);
275
276 return 0;
277}
278
Chris Lattner776fac82007-06-09 00:53:06 +0000279Sema::DeclTy *
Chris Lattner79c57592007-07-12 00:36:32 +0000280Sema::ParseDeclarator(Scope *S, Declarator &D, ExprTy *init,
Chris Lattner776fac82007-06-09 00:53:06 +0000281 DeclTy *lastDeclarator) {
282 Decl *LastDeclarator = (Decl*)lastDeclarator;
Chris Lattner79c57592007-07-12 00:36:32 +0000283 Expr *Init = static_cast<Expr*>(init);
Chris Lattnere168f762006-11-10 05:29:30 +0000284 IdentifierInfo *II = D.getIdentifier();
Chris Lattner302b4be2006-11-19 02:31:38 +0000285
Chris Lattner02c04392007-07-25 00:24:17 +0000286 // All of these full declarators require an identifier. If it doesn't have
287 // one, the ParsedFreeStandingDeclSpec action should be used.
288 if (II == 0) {
Chris Lattnerc4f6d0c2007-08-28 06:17:15 +0000289 Diag(D.getDeclSpec().getSourceRange().Begin(),
290 diag::err_declarator_need_ident,
Chris Lattner02c04392007-07-25 00:24:17 +0000291 D.getDeclSpec().getSourceRange(), D.getSourceRange());
292 return 0;
293 }
294
Chris Lattner1a76a3c2007-08-26 06:24:45 +0000295 // The scope passed in may not be a decl scope. Zip up the scope tree until
296 // we find one that is.
297 while ((S->getFlags() & Scope::DeclScope) == 0)
298 S = S->getParent();
299
Chris Lattner01564d92007-01-27 19:27:06 +0000300 // See if this is a redefinition of a variable in the same scope.
Chris Lattner9561a0b2007-01-28 08:20:04 +0000301 Decl *PrevDecl = LookupScopedDecl(II, Decl::IDNS_Ordinary,
302 D.getIdentifierLoc(), S);
Chris Lattner776fac82007-06-09 00:53:06 +0000303 if (PrevDecl && !S->isDeclScope(PrevDecl))
Chris Lattner01564d92007-01-27 19:27:06 +0000304 PrevDecl = 0; // If in outer scope, it isn't the same thing.
305
Chris Lattnere168f762006-11-10 05:29:30 +0000306 Decl *New;
Chris Lattner01a7c532007-01-25 23:09:03 +0000307 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Chris Lattner79c57592007-07-12 00:36:32 +0000308 assert(Init == 0 && "Can't have initializer for a typedef!");
Chris Lattner776fac82007-06-09 00:53:06 +0000309 TypedefDecl *NewTD = ParseTypedefDecl(S, D, LastDeclarator);
Chris Lattner01564d92007-01-27 19:27:06 +0000310 if (!NewTD) return 0;
Steve Naroffa8fd9732007-06-11 00:35:03 +0000311
312 // Handle attributes prior to checking for duplicates in MergeVarDecl
313 HandleDeclAttributes(NewTD, D.getDeclSpec().getAttributes(),
314 D.getAttributes());
Chris Lattner01564d92007-01-27 19:27:06 +0000315 // Merge the decl with the existing one if appropriate.
316 if (PrevDecl) {
317 NewTD = MergeTypeDefDecl(NewTD, PrevDecl);
318 if (NewTD == 0) return 0;
319 }
320 New = NewTD;
Steve Naroff8eeeb132007-05-08 21:09:37 +0000321 if (S->getParent() == 0) {
322 // C99 6.7.7p2: If a typedef name specifies a variably modified type
323 // then it shall have block scope.
324 if (ArrayType *ary = dyn_cast<ArrayType>(NewTD->getUnderlyingType())) {
Chris Lattner6046e002007-06-05 06:39:23 +0000325 if (VerifyConstantArrayType(ary, D.getIdentifierLoc()))
Steve Naroff8eeeb132007-05-08 21:09:37 +0000326 return 0;
327 }
328 }
Chris Lattner01a7c532007-01-25 23:09:03 +0000329 } else if (D.isFunctionDeclarator()) {
Chris Lattner79c57592007-07-12 00:36:32 +0000330 assert(Init == 0 && "Can't have an initializer for a functiondecl!");
Steve Naroffe5aa9be2007-04-05 22:36:20 +0000331 QualType R = GetTypeForDeclarator(D, S);
Steve Naroff46ba1eb2007-04-03 23:13:13 +0000332 if (R.isNull()) return 0; // FIXME: "auto func();" passes through...
Steve Naroff7a5af782007-07-13 16:58:59 +0000333
Steve Naroff46ba1eb2007-04-03 23:13:13 +0000334 FunctionDecl::StorageClass SC;
335 switch (D.getDeclSpec().getStorageClassSpec()) {
336 default: assert(0 && "Unknown storage class!");
337 case DeclSpec::SCS_auto:
338 case DeclSpec::SCS_register:
Chris Lattnerc04bd6a2007-05-16 18:09:54 +0000339 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_func,
340 R.getAsString());
Steve Naroff46ba1eb2007-04-03 23:13:13 +0000341 return 0;
342 case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break;
343 case DeclSpec::SCS_extern: SC = FunctionDecl::Extern; break;
344 case DeclSpec::SCS_static: SC = FunctionDecl::Static; break;
345 }
346
Chris Lattner776fac82007-06-09 00:53:06 +0000347 FunctionDecl *NewFD = new FunctionDecl(D.getIdentifierLoc(), II, R, SC,
Chris Lattnerb677a932007-08-26 04:02:13 +0000348 D.getDeclSpec().isInlineSpecified(),
Chris Lattner776fac82007-06-09 00:53:06 +0000349 LastDeclarator);
Chris Lattner01564d92007-01-27 19:27:06 +0000350
351 // Merge the decl with the existing one if appropriate.
352 if (PrevDecl) {
353 NewFD = MergeFunctionDecl(NewFD, PrevDecl);
354 if (NewFD == 0) return 0;
355 }
356 New = NewFD;
Chris Lattner01a7c532007-01-25 23:09:03 +0000357 } else {
Steve Naroffe5aa9be2007-04-05 22:36:20 +0000358 QualType R = GetTypeForDeclarator(D, S);
Steve Naroffcf871f52007-08-28 18:45:29 +0000359
360 assert(!R.isNull() && "GetTypeForDeclarator() returned null type");
361 bool InvalidDecl = false;
Chris Lattner01564d92007-01-27 19:27:06 +0000362
Steve Naroff46ba1eb2007-04-03 23:13:13 +0000363 VarDecl *NewVD;
364 VarDecl::StorageClass SC;
Steve Naroff6fbf0dc2007-03-16 00:33:25 +0000365 switch (D.getDeclSpec().getStorageClassSpec()) {
366 default: assert(0 && "Unknown storage class!");
Steve Naroff46ba1eb2007-04-03 23:13:13 +0000367 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
368 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
369 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
370 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
371 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
372 }
Steve Narofffc49d672007-04-01 21:27:45 +0000373 if (S->getParent() == 0) {
374 // File scope. C99 6.9.2p2: A declaration of an identifier for and
375 // object that has file scope without an initializer, and without a
376 // storage-class specifier or with the storage-class specifier "static",
377 // constitutes a tentative definition. Note: A tentative definition with
378 // external linkage is valid (C99 6.2.2p5).
Steve Naroff46ba1eb2007-04-03 23:13:13 +0000379 if (!Init && SC == VarDecl::Static) {
Steve Narofffc49d672007-04-01 21:27:45 +0000380 // C99 6.9.2p3: If the declaration of an identifier for an object is
381 // a tentative definition and has internal linkage (C99 6.2.2p3), the
382 // declared type shall not be an incomplete type.
383 if (R->isIncompleteType()) {
Chris Lattnerc04bd6a2007-05-16 18:09:54 +0000384 Diag(D.getIdentifierLoc(), diag::err_typecheck_decl_incomplete_type,
385 R.getAsString());
Steve Naroffcf871f52007-08-28 18:45:29 +0000386 InvalidDecl = true;
Steve Narofffc49d672007-04-01 21:27:45 +0000387 }
Steve Naroffca8f7122007-04-01 01:41:35 +0000388 }
Bill Wendlingd6de6572007-06-02 09:40:07 +0000389 // C99 6.9p2: The storage-class specifiers auto and register shall not
390 // appear in the declaration specifiers in an external declaration.
Steve Naroff46ba1eb2007-04-03 23:13:13 +0000391 if (SC == VarDecl::Auto || SC == VarDecl::Register) {
Chris Lattnerc04bd6a2007-05-16 18:09:54 +0000392 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope,
393 R.getAsString());
Steve Naroffcf871f52007-08-28 18:45:29 +0000394 InvalidDecl = true;
Steve Naroff46ba1eb2007-04-03 23:13:13 +0000395 }
Steve Naroff8eeeb132007-05-08 21:09:37 +0000396 // C99 6.7.5.2p2: If an identifier is declared to be an object with
397 // static storage duration, it shall not have a variable length array.
Chris Lattner0fd893e2007-07-31 21:33:24 +0000398 if (const ArrayType *ary = R->getAsArrayType()) {
Chris Lattner6046e002007-06-05 06:39:23 +0000399 if (VerifyConstantArrayType(ary, D.getIdentifierLoc()))
Steve Naroffcf871f52007-08-28 18:45:29 +0000400 InvalidDecl = true;
Steve Naroff8eeeb132007-05-08 21:09:37 +0000401 }
Chris Lattner776fac82007-06-09 00:53:06 +0000402 NewVD = new FileVarDecl(D.getIdentifierLoc(), II, R, SC, LastDeclarator);
Steve Narofffc49d672007-04-01 21:27:45 +0000403 } else {
404 // Block scope. C99 6.7p7: If an identifier for an object is declared with
405 // no linkage (C99 6.2.2p6), the type for the object shall be complete...
Steve Naroff46ba1eb2007-04-03 23:13:13 +0000406 if (SC != VarDecl::Extern) {
Steve Narofffc49d672007-04-01 21:27:45 +0000407 if (R->isIncompleteType()) {
Chris Lattnerc04bd6a2007-05-16 18:09:54 +0000408 Diag(D.getIdentifierLoc(), diag::err_typecheck_decl_incomplete_type,
409 R.getAsString());
Steve Naroffcf871f52007-08-28 18:45:29 +0000410 InvalidDecl = true;
Steve Narofffc49d672007-04-01 21:27:45 +0000411 }
412 }
Steve Naroff8eeeb132007-05-08 21:09:37 +0000413 if (SC == VarDecl::Static) {
414 // C99 6.7.5.2p2: If an identifier is declared to be an object with
415 // static storage duration, it shall not have a variable length array.
Chris Lattner0fd893e2007-07-31 21:33:24 +0000416 if (const ArrayType *ary = R->getAsArrayType()) {
Chris Lattner6046e002007-06-05 06:39:23 +0000417 if (VerifyConstantArrayType(ary, D.getIdentifierLoc()))
Steve Naroffcf871f52007-08-28 18:45:29 +0000418 InvalidDecl = true;
Steve Naroff8eeeb132007-05-08 21:09:37 +0000419 }
420 }
Chris Lattner776fac82007-06-09 00:53:06 +0000421 NewVD = new BlockVarDecl(D.getIdentifierLoc(), II, R, SC, LastDeclarator);
Steve Naroffcf871f52007-08-28 18:45:29 +0000422 }
423 if (InvalidDecl)
424 NewVD->setInvalidDecl();
425
Steve Naroffa8fd9732007-06-11 00:35:03 +0000426 // Handle attributes prior to checking for duplicates in MergeVarDecl
427 HandleDeclAttributes(NewVD, D.getDeclSpec().getAttributes(),
428 D.getAttributes());
429
Chris Lattner01564d92007-01-27 19:27:06 +0000430 // Merge the decl with the existing one if appropriate.
431 if (PrevDecl) {
432 NewVD = MergeVarDecl(NewVD, PrevDecl);
433 if (NewVD == 0) return 0;
434 }
Steve Naroff0c1c7ed2007-08-24 22:33:52 +0000435 if (Init) {
436 AssignmentCheckResult result;
437 result = CheckSingleAssignmentConstraints(R, Init);
438 // FIXME: emit errors if appropriate.
439 NewVD->setInit(Init);
440 }
Chris Lattner01564d92007-01-27 19:27:06 +0000441 New = NewVD;
Chris Lattner01a7c532007-01-25 23:09:03 +0000442 }
Chris Lattner302b4be2006-11-19 02:31:38 +0000443
Chris Lattnere168f762006-11-10 05:29:30 +0000444 // If this has an identifier, add it to the scope stack.
445 if (II) {
Chris Lattner18b19622007-01-22 07:39:13 +0000446 New->setNext(II->getFETokenInfo<Decl>());
Chris Lattnere168f762006-11-10 05:29:30 +0000447 II->setFETokenInfo(New);
Chris Lattner99d31772007-01-21 22:37:37 +0000448 S->AddDecl(New);
Chris Lattnere168f762006-11-10 05:29:30 +0000449 }
450
Steve Naroff26c8ea52007-03-21 21:08:52 +0000451 if (S->getParent() == 0)
Chris Lattner776fac82007-06-09 00:53:06 +0000452 AddTopLevelDecl(New, LastDeclarator);
Chris Lattnere168f762006-11-10 05:29:30 +0000453
454 return New;
455}
456
Chris Lattner776fac82007-06-09 00:53:06 +0000457/// The declarators are chained together backwards, reverse the list.
458Sema::DeclTy *Sema::FinalizeDeclaratorGroup(Scope *S, DeclTy *group) {
459 // Often we have single declarators, handle them quickly.
460 Decl *Group = static_cast<Decl*>(group);
Chris Lattnerb2dd2412007-06-09 06:16:32 +0000461 if (Group == 0 || Group->getNextDeclarator() == 0) return Group;
Chris Lattner776fac82007-06-09 00:53:06 +0000462
463 Decl *NewGroup = 0;
464 while (Group) {
465 Decl *Next = Group->getNextDeclarator();
466 Group->setNextDeclarator(NewGroup);
467 NewGroup = Group;
468 Group = Next;
469 }
470 return NewGroup;
471}
Steve Naroff7e6f7c22007-08-28 03:03:08 +0000472
473// Called from Sema::ParseStartOfFunctionDef().
Chris Lattner53621a52007-06-13 20:44:40 +0000474ParmVarDecl *
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +0000475Sema::ParseParamDeclarator(DeclaratorChunk &FTI, unsigned ArgNo,
476 Scope *FnScope) {
477 const DeclaratorChunk::ParamInfo &PI = FTI.Fun.ArgInfo[ArgNo];
Chris Lattner200bdc32006-11-19 02:43:37 +0000478
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +0000479 IdentifierInfo *II = PI.Ident;
Chris Lattnerc284e9b2007-01-23 05:14:32 +0000480 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
481 // Can this happen for params? We already checked that they don't conflict
482 // among each other. Here they can only shadow globals, which is ok.
Chris Lattnerd2b88ab2007-07-13 03:05:23 +0000483 if (/*Decl *PrevDecl = */LookupScopedDecl(II, Decl::IDNS_Ordinary,
Chris Lattner9561a0b2007-01-28 08:20:04 +0000484 PI.IdentLoc, FnScope)) {
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +0000485
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +0000486 }
487
Steve Naroff6fbf0dc2007-03-16 00:33:25 +0000488 // FIXME: Handle storage class (auto, register). No declarator?
Chris Lattner776fac82007-06-09 00:53:06 +0000489 // TODO: Chain to previous parameter with the prevdeclarator chain?
Steve Naroff773df5c2007-08-07 22:44:21 +0000490
491 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
492 // Doing the promotion here has a win and a loss. The win is the type for
493 // both Decl's and DeclRefExpr's will match (a convenient invariant for the
494 // code generator). The loss is the orginal type isn't preserved. For example:
495 //
496 // void func(int parmvardecl[5]) { // convert "int [5]" to "int *"
497 // int blockvardecl[5];
498 // sizeof(parmvardecl); // size == 4
499 // sizeof(blockvardecl); // size == 20
500 // }
501 //
502 // For expressions, all implicit conversions are captured using the
503 // ImplicitCastExpr AST node (we have no such mechanism for Decl's).
504 //
505 // FIXME: If a source translation tool needs to see the original type, then
506 // we need to consider storing both types (in ParmVarDecl)...
507 //
508 QualType parmDeclType = QualType::getFromOpaquePtr(PI.TypeInfo);
509 if (const ArrayType *AT = parmDeclType->getAsArrayType())
510 parmDeclType = Context.getPointerType(AT->getElementType());
511 else if (parmDeclType->isFunctionType())
512 parmDeclType = Context.getPointerType(parmDeclType);
513
514 ParmVarDecl *New = new ParmVarDecl(PI.IdentLoc, II, parmDeclType,
Steve Naroffcf871f52007-08-28 18:45:29 +0000515 VarDecl::None, 0);
516 if (PI.InvalidType)
517 New->setInvalidDecl();
518
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +0000519 // If this has an identifier, add it to the scope stack.
520 if (II) {
Chris Lattner18b19622007-01-22 07:39:13 +0000521 New->setNext(II->getFETokenInfo<Decl>());
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +0000522 II->setFETokenInfo(New);
Chris Lattner99d31772007-01-21 22:37:37 +0000523 FnScope->AddDecl(New);
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +0000524 }
Chris Lattner229ce602006-11-21 01:21:07 +0000525
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +0000526 return New;
527}
528
529
530Sema::DeclTy *Sema::ParseStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) {
Chris Lattner229ce602006-11-21 01:21:07 +0000531 assert(CurFunctionDecl == 0 && "Function parsing confused");
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000532 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
533 "Not a function declarator!");
534 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
535
536 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
537 // for a K&R function.
538 if (!FTI.hasPrototype) {
539 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
540 if (FTI.ArgInfo[i].TypeInfo == 0) {
Chris Lattner843c5922007-06-10 23:40:34 +0000541 Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared,
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000542 FTI.ArgInfo[i].Ident->getName());
543 // Implicitly declare the argument as type 'int' for lack of a better
544 // type.
545 FTI.ArgInfo[i].TypeInfo = Context.IntTy.getAsOpaquePtr();
546 }
547 }
548
549 // Since this is a function definition, act as though we have information
550 // about the arguments.
551 FTI.hasPrototype = true;
Chris Lattner2114d5e2006-12-04 07:40:24 +0000552 } else {
553 // FIXME: Diagnose arguments without names in C.
554
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000555 }
556
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +0000557 Scope *GlobalScope = FnBodyScope->getParent();
558
559 FunctionDecl *FD =
560 static_cast<FunctionDecl*>(ParseDeclarator(GlobalScope, D, 0, 0));
Chris Lattner229ce602006-11-21 01:21:07 +0000561 CurFunctionDecl = FD;
Chris Lattner2114d5e2006-12-04 07:40:24 +0000562
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +0000563 // Create Decl objects for each parameter, adding them to the FunctionDecl.
Chris Lattner23b7eb62007-06-15 23:05:46 +0000564 llvm::SmallVector<ParmVarDecl*, 16> Params;
Chris Lattnerf61c8a82007-01-21 19:04:43 +0000565
566 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes
567 // no arguments, not a function that takes a single void argument.
568 if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
569 FTI.ArgInfo[0].TypeInfo == Context.VoidTy.getAsOpaquePtr()) {
Chris Lattner99d31772007-01-21 22:37:37 +0000570 // empty arg list, don't push any params.
Chris Lattnerf61c8a82007-01-21 19:04:43 +0000571 } else {
572 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
573 Params.push_back(ParseParamDeclarator(D.getTypeObject(0), i,FnBodyScope));
574 }
Chris Lattner2114d5e2006-12-04 07:40:24 +0000575
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +0000576 FD->setParams(&Params[0], Params.size());
Chris Lattner2114d5e2006-12-04 07:40:24 +0000577
Chris Lattnere168f762006-11-10 05:29:30 +0000578 return FD;
579}
580
Chris Lattner229ce602006-11-21 01:21:07 +0000581Sema::DeclTy *Sema::ParseFunctionDefBody(DeclTy *D, StmtTy *Body) {
582 FunctionDecl *FD = static_cast<FunctionDecl*>(D);
583 FD->setBody((Stmt*)Body);
584
585 assert(FD == CurFunctionDecl && "Function parsing confused");
586 CurFunctionDecl = 0;
Chris Lattnere2473062007-05-28 06:28:18 +0000587
588 // Verify and clean out per-function state.
589
590 // Check goto/label use.
Chris Lattner23b7eb62007-06-15 23:05:46 +0000591 for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator
592 I = LabelMap.begin(), E = LabelMap.end(); I != E; ++I) {
Chris Lattnere2473062007-05-28 06:28:18 +0000593 // Verify that we have no forward references left. If so, there was a goto
594 // or address of a label taken, but no definition of it. Label fwd
595 // definitions are indicated with a null substmt.
596 if (I->second->getSubStmt() == 0) {
597 LabelStmt *L = I->second;
598 // Emit error.
Chris Lattnereefa10e2007-05-28 06:56:27 +0000599 Diag(L->getIdentLoc(), diag::err_undeclared_label_use, L->getName());
Chris Lattnere2473062007-05-28 06:28:18 +0000600
601 // At this point, we have gotos that use the bogus label. Stitch it into
602 // the function body so that they aren't leaked and that the AST is well
603 // formed.
604 L->setSubStmt(new NullStmt(L->getIdentLoc()));
605 cast<CompoundStmt>((Stmt*)Body)->push_back(L);
606 }
607 }
608 LabelMap.clear();
609
Chris Lattner229ce602006-11-21 01:21:07 +0000610 return FD;
611}
612
613
Chris Lattnerac18be92006-11-20 06:49:47 +0000614/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
615/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
616Decl *Sema::ImplicitlyDefineFunction(SourceLocation Loc, IdentifierInfo &II,
617 Scope *S) {
618 if (getLangOptions().C99) // Extension in C99.
619 Diag(Loc, diag::ext_implicit_function_decl, II.getName());
620 else // Legal in C90, but warn about it.
621 Diag(Loc, diag::warn_implicit_function_decl, II.getName());
622
623 // FIXME: handle stuff like:
624 // void foo() { extern float X(); }
625 // void bar() { X(); } <-- implicit decl for X in another scope.
626
627 // Set a Declarator for the implicit definition: int foo();
Chris Lattner353f5742006-11-28 04:50:12 +0000628 const char *Dummy;
Chris Lattnerac18be92006-11-20 06:49:47 +0000629 DeclSpec DS;
Chris Lattnerb20e8942006-11-28 05:30:29 +0000630 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy);
Chris Lattnerb055f2d2007-02-11 08:19:57 +0000631 Error = Error; // Silence warning.
Chris Lattner353f5742006-11-28 04:50:12 +0000632 assert(!Error && "Error setting up implicit decl!");
Chris Lattnerac18be92006-11-20 06:49:47 +0000633 Declarator D(DS, Declarator::BlockContext);
Chris Lattnercbc426d2006-12-02 06:43:02 +0000634 D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, 0, 0, Loc));
Chris Lattnerac18be92006-11-20 06:49:47 +0000635 D.SetIdentifier(&II, Loc);
636
Chris Lattner62d2e662007-01-28 00:21:37 +0000637 // Find translation-unit scope to insert this function into.
Chris Lattner1a76a3c2007-08-26 06:24:45 +0000638 if (Scope *FnS = S->getFnParent())
639 S = FnS->getParent(); // Skip all scopes in a function at once.
Chris Lattner62d2e662007-01-28 00:21:37 +0000640 while (S->getParent())
641 S = S->getParent();
Chris Lattnerac18be92006-11-20 06:49:47 +0000642
Chris Lattner62d2e662007-01-28 00:21:37 +0000643 return static_cast<Decl*>(ParseDeclarator(S, D, 0, 0));
Chris Lattnerac18be92006-11-20 06:49:47 +0000644}
645
Chris Lattner302b4be2006-11-19 02:31:38 +0000646
Chris Lattner776fac82007-06-09 00:53:06 +0000647TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D,
648 Decl *LastDeclarator) {
649 assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
Chris Lattner302b4be2006-11-19 02:31:38 +0000650
Steve Naroffe5aa9be2007-04-05 22:36:20 +0000651 QualType T = GetTypeForDeclarator(D, S);
Chris Lattner0d8b1a12006-11-20 04:34:45 +0000652 if (T.isNull()) return 0;
653
Chris Lattner18b19622007-01-22 07:39:13 +0000654 // Scope manipulation handled by caller.
Chris Lattner776fac82007-06-09 00:53:06 +0000655 return new TypedefDecl(D.getIdentifierLoc(), D.getIdentifier(), T,
656 LastDeclarator);
Chris Lattnere168f762006-11-10 05:29:30 +0000657}
658
Chris Lattner18b19622007-01-22 07:39:13 +0000659
Chris Lattner1300fb92007-01-23 23:42:53 +0000660/// ParseTag - This is invoked when we see 'struct foo' or 'struct {'. In the
661/// former case, Name will be non-null. In the later case, Name will be null.
662/// TagType indicates what kind of tag this is. TK indicates whether this is a
663/// reference/declaration/definition of a tag.
Chris Lattner7b9ace62007-01-23 20:11:08 +0000664Sema::DeclTy *Sema::ParseTag(Scope *S, unsigned TagType, TagKind TK,
Chris Lattnerf34c4da2007-01-23 04:08:05 +0000665 SourceLocation KWLoc, IdentifierInfo *Name,
Steve Naroffb3096442007-06-09 03:47:53 +0000666 SourceLocation NameLoc, AttributeList *Attr) {
Chris Lattner8799cf22007-01-23 01:57:16 +0000667 // If this is a use of an existing tag, it must have a name.
Chris Lattner7b9ace62007-01-23 20:11:08 +0000668 assert((Name != 0 || TK == TK_Definition) &&
669 "Nameless record must be a definition!");
Chris Lattner8799cf22007-01-23 01:57:16 +0000670
Chris Lattnerf34c4da2007-01-23 04:08:05 +0000671 Decl::Kind Kind;
Chris Lattnerbf0b7982007-01-23 04:27:41 +0000672 switch (TagType) {
Chris Lattnerf34c4da2007-01-23 04:08:05 +0000673 default: assert(0 && "Unknown tag type!");
Chris Lattnerbf0b7982007-01-23 04:27:41 +0000674 case DeclSpec::TST_struct: Kind = Decl::Struct; break;
675 case DeclSpec::TST_union: Kind = Decl::Union; break;
676//case DeclSpec::TST_class: Kind = Decl::Class; break;
677 case DeclSpec::TST_enum: Kind = Decl::Enum; break;
Chris Lattnerf34c4da2007-01-23 04:08:05 +0000678 }
Chris Lattner7e783a12007-01-23 02:05:42 +0000679
Chris Lattner18b19622007-01-22 07:39:13 +0000680 // If this is a named struct, check to see if there was a previous forward
681 // declaration or definition.
Chris Lattner7b9ace62007-01-23 20:11:08 +0000682 if (TagDecl *PrevDecl =
Chris Lattner9561a0b2007-01-28 08:20:04 +0000683 dyn_cast_or_null<TagDecl>(LookupScopedDecl(Name, Decl::IDNS_Tag,
684 NameLoc, S))) {
Chris Lattner8799cf22007-01-23 01:57:16 +0000685
686 // If this is a use of a previous tag, or if the tag is already declared in
687 // the same scope (so that the definition/declaration completes or
688 // rementions the tag), reuse the decl.
Chris Lattner7b9ace62007-01-23 20:11:08 +0000689 if (TK == TK_Reference || S->isDeclScope(PrevDecl)) {
Chris Lattner7e783a12007-01-23 02:05:42 +0000690 // Make sure that this wasn't declared as an enum and now used as a struct
691 // or something similar.
692 if (PrevDecl->getKind() != Kind) {
Chris Lattnerf34c4da2007-01-23 04:08:05 +0000693 Diag(KWLoc, diag::err_use_with_wrong_tag, Name->getName());
Chris Lattner7e783a12007-01-23 02:05:42 +0000694 Diag(PrevDecl->getLocation(), diag::err_previous_use);
695 }
Chris Lattner7b9ace62007-01-23 20:11:08 +0000696
697 // If this is a use or a forward declaration, we're good.
698 if (TK != TK_Definition)
699 return PrevDecl;
Chris Lattnerf34c4da2007-01-23 04:08:05 +0000700
Chris Lattner7b9ace62007-01-23 20:11:08 +0000701 // Diagnose attempts to redefine a tag.
702 if (PrevDecl->isDefinition()) {
703 Diag(NameLoc, diag::err_redefinition, Name->getName());
704 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
705 // If this is a redefinition, recover by making this struct be
706 // anonymous, which will make any later references get the previous
707 // definition.
708 Name = 0;
709 } else {
710 // Okay, this is definition of a previously declared or referenced tag.
711 // Move the location of the decl to be the definition site.
712 PrevDecl->setLocation(NameLoc);
Chris Lattner7b9ace62007-01-23 20:11:08 +0000713 return PrevDecl;
714 }
Chris Lattner8799cf22007-01-23 01:57:16 +0000715 }
Chris Lattnerf34c4da2007-01-23 04:08:05 +0000716 // If we get here, this is a definition of a new struct type in a nested
717 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a new
718 // type.
Chris Lattner18b19622007-01-22 07:39:13 +0000719 }
720
Chris Lattnerbf0b7982007-01-23 04:27:41 +0000721 // If there is an identifier, use the location of the identifier as the
722 // location of the decl, otherwise use the location of the struct/union
723 // keyword.
724 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
725
Chris Lattner18b19622007-01-22 07:39:13 +0000726 // Otherwise, if this is the first time we've seen this tag, create the decl.
Chris Lattner7b9ace62007-01-23 20:11:08 +0000727 TagDecl *New;
Chris Lattner720a0542007-01-25 00:44:24 +0000728 switch (Kind) {
729 default: assert(0 && "Unknown tag kind!");
Chris Lattner5f521502007-01-25 06:27:24 +0000730 case Decl::Enum:
Chris Lattner776fac82007-06-09 00:53:06 +0000731 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
732 // enum X { A, B, C } D; D should chain to X.
733 New = new EnumDecl(Loc, Name, 0);
Chris Lattner5f521502007-01-25 06:27:24 +0000734 // If this is an undefined enum, warn.
Chris Lattnerc1915e22007-01-25 07:29:02 +0000735 if (TK != TK_Definition) Diag(Loc, diag::ext_forward_ref_enum);
Chris Lattner5f521502007-01-25 06:27:24 +0000736 break;
Chris Lattner720a0542007-01-25 00:44:24 +0000737 case Decl::Union:
738 case Decl::Struct:
739 case Decl::Class:
Chris Lattner776fac82007-06-09 00:53:06 +0000740 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
741 // struct X { int A; } D; D should chain to X.
742 New = new RecordDecl(Kind, Loc, Name, 0);
Chris Lattner720a0542007-01-25 00:44:24 +0000743 break;
744 }
Chris Lattner18b19622007-01-22 07:39:13 +0000745
746 // If this has an identifier, add it to the scope stack.
747 if (Name) {
Chris Lattner1a76a3c2007-08-26 06:24:45 +0000748 // The scope passed in may not be a decl scope. Zip up the scope tree until
749 // we find one that is.
750 while ((S->getFlags() & Scope::DeclScope) == 0)
751 S = S->getParent();
752
753 // Add it to the decl chain.
Chris Lattner18b19622007-01-22 07:39:13 +0000754 New->setNext(Name->getFETokenInfo<Decl>());
755 Name->setFETokenInfo(New);
756 S->AddDecl(New);
757 }
758
759 return New;
760}
Chris Lattner1300fb92007-01-23 23:42:53 +0000761
762/// ParseField - Each field of a struct/union/class is passed into this in order
763/// to create a FieldDecl object for it.
764Sema::DeclTy *Sema::ParseField(Scope *S, DeclTy *TagDecl,
765 SourceLocation DeclStart,
766 Declarator &D, ExprTy *BitfieldWidth) {
767 IdentifierInfo *II = D.getIdentifier();
768 Expr *BitWidth = (Expr*)BitfieldWidth;
769
770 SourceLocation Loc = DeclStart;
771 if (II) Loc = D.getIdentifierLoc();
772
Chris Lattner62d2e662007-01-28 00:21:37 +0000773 // FIXME: Unnamed fields can be handled in various different ways, for
774 // example, unnamed unions inject all members into the struct namespace!
775
776
Chris Lattner1300fb92007-01-23 23:42:53 +0000777 if (BitWidth) {
778 // TODO: Validate.
Steve Narofff84d11f2007-05-23 21:48:04 +0000779 //printf("WARNING: BITFIELDS IGNORED!\n");
Chris Lattner1300fb92007-01-23 23:42:53 +0000780
781 // 6.7.2.1p3
782 // 6.7.2.1p4
783
784 } else {
785 // Not a bitfield.
786
787 // validate II.
788
789 }
790
Steve Naroffe5aa9be2007-04-05 22:36:20 +0000791 QualType T = GetTypeForDeclarator(D, S);
Chris Lattner01a7c532007-01-25 23:09:03 +0000792 if (T.isNull()) return 0;
Steve Naroff8eeeb132007-05-08 21:09:37 +0000793
794 // C99 6.7.2.1p8: A member of a structure or union may have any type other
795 // than a variably modified type.
Chris Lattner0fd893e2007-07-31 21:33:24 +0000796 if (const ArrayType *ary = T->getAsArrayType()) {
Chris Lattner6046e002007-06-05 06:39:23 +0000797 if (VerifyConstantArrayType(ary, Loc))
Steve Naroff8eeeb132007-05-08 21:09:37 +0000798 return 0;
799 }
Chris Lattner776fac82007-06-09 00:53:06 +0000800
801 // FIXME: Chain fielddecls together.
802 return new FieldDecl(Loc, II, T, 0);
Chris Lattner1300fb92007-01-23 23:42:53 +0000803}
804
805void Sema::ParseRecordBody(SourceLocation RecLoc, DeclTy *RecDecl,
806 DeclTy **Fields, unsigned NumFields) {
Chris Lattnerc1915e22007-01-25 07:29:02 +0000807 RecordDecl *Record = cast<RecordDecl>(static_cast<Decl*>(RecDecl));
Chris Lattner1300fb92007-01-23 23:42:53 +0000808 if (Record->isDefinition()) {
809 // Diagnose code like:
Chris Lattnerbdf8b8d2007-01-24 02:11:17 +0000810 // struct S { struct S {} X; };
Chris Lattner1300fb92007-01-23 23:42:53 +0000811 // We discover this when we complete the outer S. Reject and ignore the
812 // outer S.
813 Diag(Record->getLocation(), diag::err_nested_redefinition,
814 Record->getKindName());
815 Diag(RecLoc, diag::err_previous_definition);
816 return;
817 }
Chris Lattnerbdf8b8d2007-01-24 02:11:17 +0000818
Chris Lattnerbdf8b8d2007-01-24 02:11:17 +0000819 // Verify that all the fields are okay.
Chris Lattner82625602007-01-24 02:26:21 +0000820 unsigned NumNamedMembers = 0;
Chris Lattner23b7eb62007-06-15 23:05:46 +0000821 llvm::SmallVector<FieldDecl*, 32> RecFields;
822 llvm::SmallSet<const IdentifierInfo*, 32> FieldIDs;
Chris Lattnere5a66562007-01-25 22:48:42 +0000823
Chris Lattnerbdf8b8d2007-01-24 02:11:17 +0000824 for (unsigned i = 0; i != NumFields; ++i) {
825 FieldDecl *FD = cast_or_null<FieldDecl>(static_cast<Decl*>(Fields[i]));
826 if (!FD) continue; // Already issued a diagnostic.
Chris Lattner720a0542007-01-25 00:44:24 +0000827
828 // Get the type for the field.
Chris Lattner0fd893e2007-07-31 21:33:24 +0000829 Type *FDTy = FD->getType().getTypePtr();
Chris Lattner720a0542007-01-25 00:44:24 +0000830
Chris Lattnerbdf8b8d2007-01-24 02:11:17 +0000831 // C99 6.7.2.1p2 - A field may not be a function type.
Chris Lattner0fd893e2007-07-31 21:33:24 +0000832 if (FDTy->isFunctionType()) {
Chris Lattnerbdf8b8d2007-01-24 02:11:17 +0000833 Diag(FD->getLocation(), diag::err_field_declared_as_function,
834 FD->getName());
Chris Lattner82625602007-01-24 02:26:21 +0000835 delete FD;
Chris Lattnerbdf8b8d2007-01-24 02:11:17 +0000836 continue;
837 }
838
Chris Lattner82625602007-01-24 02:26:21 +0000839 // C99 6.7.2.1p2 - A field may not be an incomplete type except...
Chris Lattner720a0542007-01-25 00:44:24 +0000840 if (FDTy->isIncompleteType()) {
Chris Lattner82625602007-01-24 02:26:21 +0000841 if (i != NumFields-1 || // ... that the last member ...
842 Record->getKind() != Decl::Struct || // ... of a structure ...
Chris Lattner0fd893e2007-07-31 21:33:24 +0000843 !FDTy->isArrayType()) { //... may have incomplete array type.
Chris Lattner82625602007-01-24 02:26:21 +0000844 Diag(FD->getLocation(), diag::err_field_incomplete, FD->getName());
845 delete FD;
846 continue;
847 }
Chris Lattner720a0542007-01-25 00:44:24 +0000848 if (NumNamedMembers < 1) { //... must have more than named member ...
Chris Lattner82625602007-01-24 02:26:21 +0000849 Diag(FD->getLocation(), diag::err_flexible_array_empty_struct,
850 FD->getName());
851 delete FD;
852 continue;
853 }
Chris Lattner720a0542007-01-25 00:44:24 +0000854
855 // Okay, we have a legal flexible array member at the end of the struct.
Chris Lattner41943152007-01-25 04:52:46 +0000856 Record->setHasFlexibleArrayMember(true);
Chris Lattnerbdf8b8d2007-01-24 02:11:17 +0000857 }
Chris Lattner720a0542007-01-25 00:44:24 +0000858
859
860 /// C99 6.7.2.1p2 - a struct ending in a flexible array member cannot be the
861 /// field of another structure or the element of an array.
Chris Lattner0fd893e2007-07-31 21:33:24 +0000862 if (const RecordType *FDTTy = FDTy->getAsRecordType()) {
Chris Lattner720a0542007-01-25 00:44:24 +0000863 if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
864 // If this is a member of a union, then entire union becomes "flexible".
865 if (Record->getKind() == Decl::Union) {
Chris Lattner41943152007-01-25 04:52:46 +0000866 Record->setHasFlexibleArrayMember(true);
Chris Lattner720a0542007-01-25 00:44:24 +0000867 } else {
868 // If this is a struct/class and this is not the last element, reject
869 // it. Note that GCC supports variable sized arrays in the middle of
870 // structures.
871 if (i != NumFields-1) {
872 Diag(FD->getLocation(), diag::err_variable_sized_type_in_struct,
873 FD->getName());
874 delete FD;
875 continue;
876 }
877
878 // We support flexible arrays at the end of structs in other structs
879 // as an extension.
880 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct,
881 FD->getName());
Chris Lattner41943152007-01-25 04:52:46 +0000882 Record->setHasFlexibleArrayMember(true);
Chris Lattner720a0542007-01-25 00:44:24 +0000883 }
884 }
885 }
886
Chris Lattner82625602007-01-24 02:26:21 +0000887 // Keep track of the number of named members.
Chris Lattnere5a66562007-01-25 22:48:42 +0000888 if (IdentifierInfo *II = FD->getIdentifier()) {
889 // Detect duplicate member names.
Chris Lattnerbaf33662007-01-27 02:14:08 +0000890 if (!FieldIDs.insert(II)) {
Chris Lattnere5a66562007-01-25 22:48:42 +0000891 Diag(FD->getLocation(), diag::err_duplicate_member, II->getName());
892 // Find the previous decl.
893 SourceLocation PrevLoc;
894 for (unsigned i = 0, e = RecFields.size(); ; ++i) {
895 assert(i != e && "Didn't find previous def!");
896 if (RecFields[i]->getIdentifier() == II) {
897 PrevLoc = RecFields[i]->getLocation();
898 break;
899 }
900 }
901 Diag(PrevLoc, diag::err_previous_definition);
902 delete FD;
903 continue;
904 }
Chris Lattner82625602007-01-24 02:26:21 +0000905 ++NumNamedMembers;
Chris Lattnere5a66562007-01-25 22:48:42 +0000906 }
Chris Lattner41943152007-01-25 04:52:46 +0000907
908 // Remember good fields.
909 RecFields.push_back(FD);
Chris Lattnerbdf8b8d2007-01-24 02:11:17 +0000910 }
Chris Lattner82625602007-01-24 02:26:21 +0000911
912
913 // Okay, we successfully defined 'Record'.
Chris Lattner41943152007-01-25 04:52:46 +0000914 Record->defineBody(&RecFields[0], RecFields.size());
Chris Lattner1300fb92007-01-23 23:42:53 +0000915}
916
Chris Lattner4ef40012007-06-11 01:28:17 +0000917Sema::DeclTy *Sema::ParseEnumConstant(Scope *S, DeclTy *theEnumDecl,
918 DeclTy *lastEnumConst,
Chris Lattnerc1915e22007-01-25 07:29:02 +0000919 SourceLocation IdLoc, IdentifierInfo *Id,
Chris Lattner4ef40012007-06-11 01:28:17 +0000920 SourceLocation EqualLoc, ExprTy *val) {
921 theEnumDecl = theEnumDecl; // silence unused warning.
922 EnumConstantDecl *LastEnumConst =
923 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(lastEnumConst));
924 Expr *Val = static_cast<Expr*>(val);
Chris Lattner8116d1b2007-01-25 22:38:29 +0000925
Chris Lattner1a76a3c2007-08-26 06:24:45 +0000926 // The scope passed in may not be a decl scope. Zip up the scope tree until
927 // we find one that is.
928 while ((S->getFlags() & Scope::DeclScope) == 0)
929 S = S->getParent();
930
Chris Lattner8116d1b2007-01-25 22:38:29 +0000931 // Verify that there isn't already something declared with this name in this
932 // scope.
Chris Lattner9561a0b2007-01-28 08:20:04 +0000933 if (Decl *PrevDecl = LookupScopedDecl(Id, Decl::IDNS_Ordinary, IdLoc, S)) {
Chris Lattner8116d1b2007-01-25 22:38:29 +0000934 if (S->isDeclScope(PrevDecl)) {
935 if (isa<EnumConstantDecl>(PrevDecl))
936 Diag(IdLoc, diag::err_redefinition_of_enumerator, Id->getName());
937 else
938 Diag(IdLoc, diag::err_redefinition, Id->getName());
939 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
Chris Lattner4ef40012007-06-11 01:28:17 +0000940 // FIXME: Don't leak memory: delete Val;
Chris Lattner8116d1b2007-01-25 22:38:29 +0000941 return 0;
942 }
943 }
Chris Lattner4ef40012007-06-11 01:28:17 +0000944
Chris Lattner23b7eb62007-06-15 23:05:46 +0000945 llvm::APSInt EnumVal(32);
Chris Lattner4ef40012007-06-11 01:28:17 +0000946 QualType EltTy;
947 if (Val) {
Chris Lattner0515e4b2007-08-27 21:16:18 +0000948 // Make sure to promote the operand type to int.
949 UsualUnaryConversions(Val);
950
Chris Lattner4ef40012007-06-11 01:28:17 +0000951 // C99 6.7.2.2p2: Make sure we have an integer constant expression.
952 SourceLocation ExpLoc;
Chris Lattner0e9d6222007-07-15 23:26:56 +0000953 if (!Val->isIntegerConstantExpr(EnumVal, Context, &ExpLoc)) {
Chris Lattner4ef40012007-06-11 01:28:17 +0000954 Diag(ExpLoc, diag::err_enum_value_not_integer_constant_expr,
955 Id->getName());
956 // FIXME: Don't leak memory: delete Val;
Chris Lattnerf283a372007-08-27 17:37:24 +0000957 Val = 0; // Just forget about it.
Chris Lattner4ef40012007-06-11 01:28:17 +0000958 }
959 EltTy = Val->getType();
Chris Lattnerf283a372007-08-27 17:37:24 +0000960 }
961
962 if (!Val) {
963 if (LastEnumConst) {
964 // Assign the last value + 1.
965 EnumVal = LastEnumConst->getInitVal();
966 ++EnumVal;
Chris Lattner0515e4b2007-08-27 21:16:18 +0000967
968 // Check for overflow on increment.
969 if (EnumVal < LastEnumConst->getInitVal())
970 Diag(IdLoc, diag::warn_enum_value_overflow);
971
Chris Lattnerf283a372007-08-27 17:37:24 +0000972 EltTy = LastEnumConst->getType();
973 } else {
974 // First value, set to zero.
975 EltTy = Context.IntTy;
Chris Lattner0515e4b2007-08-27 21:16:18 +0000976 EnumVal.zextOrTrunc(Context.getTypeSize(EltTy, IdLoc));
Chris Lattnerf283a372007-08-27 17:37:24 +0000977 }
Steve Naroff63969212007-05-07 21:22:42 +0000978 }
Chris Lattner4ef40012007-06-11 01:28:17 +0000979
Chris Lattner4ef40012007-06-11 01:28:17 +0000980 EnumConstantDecl *New = new EnumConstantDecl(IdLoc, Id, EltTy, Val, EnumVal,
981 LastEnumConst);
Chris Lattner8116d1b2007-01-25 22:38:29 +0000982
983 // Register this decl in the current scope stack.
984 New->setNext(Id->getFETokenInfo<Decl>());
985 Id->setFETokenInfo(New);
986 S->AddDecl(New);
987 return New;
Chris Lattnerc1915e22007-01-25 07:29:02 +0000988}
989
990void Sema::ParseEnumBody(SourceLocation EnumLoc, DeclTy *EnumDeclX,
991 DeclTy **Elements, unsigned NumElements) {
992 EnumDecl *Enum = cast<EnumDecl>(static_cast<Decl*>(EnumDeclX));
993 assert(!Enum->isDefinition() && "Enum redefinitions can't reach here");
994
Chris Lattner67933c02007-08-28 05:10:31 +0000995 // TODO: If the result value doesn't fit in an int, it must be a long or long
996 // long value. ISO C does not support this, but GCC does as an extension,
997 // emit a warning.
Chris Lattnerb8a501c2007-08-28 06:15:15 +0000998 unsigned IntWidth = Context.Target.getIntWidth(Enum->getLocation());
Chris Lattner67933c02007-08-28 05:10:31 +0000999
1000
Chris Lattnerb8a501c2007-08-28 06:15:15 +00001001 // Verify that all the values are okay, compute the size of the values, and
1002 // reverse the list.
1003 unsigned NumNegativeBits = 0;
1004 unsigned NumPositiveBits = 0;
1005
1006 // Keep track of whether all elements have type int.
1007 bool AllElementsInt = true;
1008
Chris Lattner4ef40012007-06-11 01:28:17 +00001009 EnumConstantDecl *EltList = 0;
Chris Lattnerc1915e22007-01-25 07:29:02 +00001010 for (unsigned i = 0; i != NumElements; ++i) {
1011 EnumConstantDecl *ECD =
1012 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
1013 if (!ECD) continue; // Already issued a diagnostic.
Chris Lattnerbf478cb2007-08-28 05:27:00 +00001014
1015 // If the enum value doesn't fit in an int, emit an extension warning.
1016 assert(ECD->getInitVal().getBitWidth() >= IntWidth &&
1017 "Should have promoted value to int");
1018 const llvm::APSInt &InitVal = ECD->getInitVal();
1019 if (InitVal.getBitWidth() > IntWidth) {
1020 llvm::APSInt V(InitVal);
1021 V.trunc(IntWidth);
1022 V.extend(InitVal.getBitWidth());
1023 if (V != InitVal)
1024 Diag(ECD->getLocation(), diag::ext_enum_value_not_int,
1025 InitVal.toString());
1026 }
Chris Lattnerb8a501c2007-08-28 06:15:15 +00001027
1028 // Keep track of the size of positive and negative values.
1029 if (InitVal.isUnsigned() || !InitVal.isNegative())
1030 NumPositiveBits = std::max(NumPositiveBits, InitVal.getActiveBits());
1031 else
1032 NumNegativeBits = std::max(NumNegativeBits, InitVal.getMinSignedBits());
Chris Lattner4ef40012007-06-11 01:28:17 +00001033
Chris Lattnerb8a501c2007-08-28 06:15:15 +00001034 // Keep track of whether every enum element has type int (very commmon).
1035 if (AllElementsInt)
1036 AllElementsInt = ECD->getType() == Context.IntTy;
1037
Chris Lattner4ef40012007-06-11 01:28:17 +00001038 ECD->setNextDeclarator(EltList);
1039 EltList = ECD;
Chris Lattnerc1915e22007-01-25 07:29:02 +00001040 }
1041
Chris Lattnerb8a501c2007-08-28 06:15:15 +00001042 // Figure out the type that should be used for this enum.
1043 // FIXME: Support attribute(packed) on enums and -fshort-enums.
1044 QualType BestType;
1045
1046 if (NumNegativeBits) {
1047 // If there is a negative value, figure out the smallest integer type (of
1048 // int/long/longlong) that fits.
1049 if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth)
1050 BestType = Context.IntTy;
1051 else {
1052 unsigned LongWidth = Context.Target.getLongWidth(Enum->getLocation());
1053 if (NumNegativeBits <= LongWidth && NumPositiveBits < LongWidth)
1054 BestType = Context.LongTy;
1055 else {
1056 unsigned LLWidth = Context.Target.getLongLongWidth(Enum->getLocation());
1057 if (NumNegativeBits > LLWidth || NumPositiveBits >= LLWidth)
1058 Diag(Enum->getLocation(), diag::warn_enum_too_large);
1059 BestType = Context.LongLongTy;
1060 }
1061 }
1062 } else {
1063 // If there is no negative value, figure out which of uint, ulong, ulonglong
1064 // fits.
1065 if (NumPositiveBits <= IntWidth)
1066 BestType = Context.UnsignedIntTy;
1067 else if (NumPositiveBits <=Context.Target.getLongWidth(Enum->getLocation()))
1068 BestType = Context.UnsignedLongTy;
1069 else {
1070 assert(NumPositiveBits <=
1071 Context.Target.getLongLongWidth(Enum->getLocation()) &&
1072 "How could an initializer get larger than ULL?");
1073 BestType = Context.UnsignedLongLongTy;
1074 }
1075 }
1076
1077 // FIXME: Install type in Enum and constant values.
1078
Chris Lattner1c1f9322007-08-28 18:24:31 +00001079 Enum->defineElements(EltList, BestType);
Chris Lattnerc1915e22007-01-25 07:29:02 +00001080}
Chris Lattner1300fb92007-01-23 23:42:53 +00001081
Steve Naroff26c8ea52007-03-21 21:08:52 +00001082void Sema::AddTopLevelDecl(Decl *current, Decl *last) {
1083 if (!current) return;
1084
1085 // If this is a top-level decl that is chained to some other (e.g. int A,B,C;)
1086 // remember this in the LastInGroupList list.
Chris Lattner776fac82007-06-09 00:53:06 +00001087 if (last)
Steve Naroff26c8ea52007-03-21 21:08:52 +00001088 LastInGroupList.push_back((Decl*)last);
Steve Naroff26c8ea52007-03-21 21:08:52 +00001089}
Steve Naroffa8fd9732007-06-11 00:35:03 +00001090
1091void Sema::HandleDeclAttribute(Decl *New, AttributeList *rawAttr) {
1092 if (strcmp(rawAttr->getAttributeName()->getName(), "vector_size") == 0) {
1093 if (ValueDecl *vDecl = dyn_cast<ValueDecl>(New)) {
Steve Naroff4ae0ac62007-07-06 23:09:18 +00001094 QualType newType = HandleVectorTypeAttribute(vDecl->getType(), rawAttr);
Steve Naroff4dddb612007-07-09 18:55:26 +00001095 if (!newType.isNull()) // install the new vector type into the decl
1096 vDecl->setType(newType);
Steve Naroffa8fd9732007-06-11 00:35:03 +00001097 }
1098 if (TypedefDecl *tDecl = dyn_cast<TypedefDecl>(New)) {
Steve Naroff4ae0ac62007-07-06 23:09:18 +00001099 QualType newType = HandleVectorTypeAttribute(tDecl->getUnderlyingType(),
1100 rawAttr);
Steve Naroff4dddb612007-07-09 18:55:26 +00001101 if (!newType.isNull()) // install the new vector type into the decl
1102 tDecl->setUnderlyingType(newType);
Steve Naroffa8fd9732007-06-11 00:35:03 +00001103 }
1104 }
Steve Naroff91fcddb2007-07-18 18:00:27 +00001105 if (strcmp(rawAttr->getAttributeName()->getName(), "ocu_vector_type") == 0) {
Steve Naroffddf5a1d2007-07-29 16:33:31 +00001106 if (TypedefDecl *tDecl = dyn_cast<TypedefDecl>(New))
1107 HandleOCUVectorTypeAttribute(tDecl, rawAttr);
1108 else
Steve Naroff91fcddb2007-07-18 18:00:27 +00001109 Diag(rawAttr->getAttributeLoc(),
1110 diag::err_typecheck_ocu_vector_not_typedef);
Steve Naroff91fcddb2007-07-18 18:00:27 +00001111 }
Steve Naroffa8fd9732007-06-11 00:35:03 +00001112 // FIXME: add other attributes...
1113}
1114
1115void Sema::HandleDeclAttributes(Decl *New, AttributeList *declspec_prefix,
1116 AttributeList *declarator_postfix) {
1117 while (declspec_prefix) {
1118 HandleDeclAttribute(New, declspec_prefix);
1119 declspec_prefix = declspec_prefix->getNext();
1120 }
1121 while (declarator_postfix) {
1122 HandleDeclAttribute(New, declarator_postfix);
1123 declarator_postfix = declarator_postfix->getNext();
1124 }
1125}
1126
Steve Naroffddf5a1d2007-07-29 16:33:31 +00001127void Sema::HandleOCUVectorTypeAttribute(TypedefDecl *tDecl,
1128 AttributeList *rawAttr) {
1129 QualType curType = tDecl->getUnderlyingType();
Steve Naroff91fcddb2007-07-18 18:00:27 +00001130 // check the attribute arugments.
1131 if (rawAttr->getNumArgs() != 1) {
1132 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_wrong_number_arguments,
1133 std::string("1"));
Steve Naroffddf5a1d2007-07-29 16:33:31 +00001134 return;
Steve Naroff91fcddb2007-07-18 18:00:27 +00001135 }
1136 Expr *sizeExpr = static_cast<Expr *>(rawAttr->getArg(0));
1137 llvm::APSInt vecSize(32);
1138 if (!sizeExpr->isIntegerConstantExpr(vecSize, Context)) {
1139 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_vector_size_not_int,
1140 sizeExpr->getSourceRange());
Steve Naroffddf5a1d2007-07-29 16:33:31 +00001141 return;
Steve Naroff91fcddb2007-07-18 18:00:27 +00001142 }
1143 // unlike gcc's vector_size attribute, we do not allow vectors to be defined
1144 // in conjunction with complex types (pointers, arrays, functions, etc.).
1145 Type *canonType = curType.getCanonicalType().getTypePtr();
1146 if (!(canonType->isIntegerType() || canonType->isRealFloatingType())) {
1147 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_invalid_vector_type,
1148 curType.getCanonicalType().getAsString());
Steve Naroffddf5a1d2007-07-29 16:33:31 +00001149 return;
Steve Naroff91fcddb2007-07-18 18:00:27 +00001150 }
1151 // unlike gcc's vector_size attribute, the size is specified as the
1152 // number of elements, not the number of bytes.
1153 unsigned vectorSize = vecSize.getZExtValue();
1154
1155 if (vectorSize == 0) {
1156 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_zero_size,
1157 sizeExpr->getSourceRange());
Steve Naroffddf5a1d2007-07-29 16:33:31 +00001158 return;
Steve Naroff91fcddb2007-07-18 18:00:27 +00001159 }
Steve Naroffddf5a1d2007-07-29 16:33:31 +00001160 // Instantiate/Install the vector type, the number of elements is > 0.
1161 tDecl->setUnderlyingType(Context.getOCUVectorType(curType, vectorSize));
1162 // Remember this typedef decl, we will need it later for diagnostics.
1163 OCUVectorDecls.push_back(tDecl);
Steve Naroff91fcddb2007-07-18 18:00:27 +00001164}
1165
Steve Naroff4ae0ac62007-07-06 23:09:18 +00001166QualType Sema::HandleVectorTypeAttribute(QualType curType,
Chris Lattner983a8bb2007-07-13 22:13:22 +00001167 AttributeList *rawAttr) {
Steve Naroff4ae0ac62007-07-06 23:09:18 +00001168 // check the attribute arugments.
Steve Naroffa8fd9732007-06-11 00:35:03 +00001169 if (rawAttr->getNumArgs() != 1) {
1170 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_wrong_number_arguments,
1171 std::string("1"));
Steve Naroff4ae0ac62007-07-06 23:09:18 +00001172 return QualType();
Steve Naroffa8fd9732007-06-11 00:35:03 +00001173 }
1174 Expr *sizeExpr = static_cast<Expr *>(rawAttr->getArg(0));
Chris Lattner23b7eb62007-06-15 23:05:46 +00001175 llvm::APSInt vecSize(32);
Chris Lattner0e9d6222007-07-15 23:26:56 +00001176 if (!sizeExpr->isIntegerConstantExpr(vecSize, Context)) {
Steve Naroffa8fd9732007-06-11 00:35:03 +00001177 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_vector_size_not_int,
1178 sizeExpr->getSourceRange());
Steve Naroff4ae0ac62007-07-06 23:09:18 +00001179 return QualType();
Steve Naroffa8fd9732007-06-11 00:35:03 +00001180 }
1181 // navigate to the base type - we need to provide for vector pointers,
1182 // vector arrays, and functions returning vectors.
1183 Type *canonType = curType.getCanonicalType().getTypePtr();
1184
Steve Naroff91fcddb2007-07-18 18:00:27 +00001185 if (canonType->isPointerType() || canonType->isArrayType() ||
1186 canonType->isFunctionType()) {
1187 assert(1 && "HandleVector(): Complex type construction unimplemented");
1188 /* FIXME: rebuild the type from the inside out, vectorizing the inner type.
1189 do {
1190 if (PointerType *PT = dyn_cast<PointerType>(canonType))
1191 canonType = PT->getPointeeType().getTypePtr();
1192 else if (ArrayType *AT = dyn_cast<ArrayType>(canonType))
1193 canonType = AT->getElementType().getTypePtr();
1194 else if (FunctionType *FT = dyn_cast<FunctionType>(canonType))
1195 canonType = FT->getResultType().getTypePtr();
1196 } while (canonType->isPointerType() || canonType->isArrayType() ||
1197 canonType->isFunctionType());
1198 */
Steve Naroffa8fd9732007-06-11 00:35:03 +00001199 }
1200 // the base type must be integer or float.
1201 if (!(canonType->isIntegerType() || canonType->isRealFloatingType())) {
1202 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_invalid_vector_type,
1203 curType.getCanonicalType().getAsString());
Steve Naroff4ae0ac62007-07-06 23:09:18 +00001204 return QualType();
Steve Naroffa8fd9732007-06-11 00:35:03 +00001205 }
Chris Lattner4481b422007-07-14 01:29:45 +00001206 unsigned typeSize = Context.getTypeSize(curType, rawAttr->getAttributeLoc());
Steve Naroff4ae0ac62007-07-06 23:09:18 +00001207 // vecSize is specified in bytes - convert to bits.
1208 unsigned vectorSize = vecSize.getZExtValue() * 8;
1209
1210 // the vector size needs to be an integral multiple of the type size.
1211 if (vectorSize % typeSize) {
1212 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_invalid_size,
1213 sizeExpr->getSourceRange());
1214 return QualType();
1215 }
1216 if (vectorSize == 0) {
1217 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_zero_size,
1218 sizeExpr->getSourceRange());
1219 return QualType();
1220 }
1221 // Since OpenCU requires 3 element vectors (OpenCU 5.1.2), we don't restrict
1222 // the number of elements to be a power of two (unlike GCC).
1223 // Instantiate the vector type, the number of elements is > 0.
Steve Naroff91fcddb2007-07-18 18:00:27 +00001224 return Context.getVectorType(curType, vectorSize/typeSize);
Steve Naroffa8fd9732007-06-11 00:35:03 +00001225}
1226