blob: 696631878abd13e2b5dd94a1fc8c8d303a643e4a [file] [log] [blame]
Chris Lattner0ccd51e2006-08-09 05:47:47 +00001//===--- Statement.cpp - Statement and Block Parser -----------------------===//
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 the Statement and Block portions of the Parser
11// interface.
12//
13//===----------------------------------------------------------------------===//
14
15#include "clang/Parse/Parser.h"
16#include "clang/Basic/Diagnostic.h"
Chris Lattner53361ac2006-08-10 05:19:57 +000017#include "clang/Parse/Declarations.h"
Chris Lattner0ccd51e2006-08-09 05:47:47 +000018using namespace llvm;
19using namespace clang;
20
21//===----------------------------------------------------------------------===//
22// C99 6.8: Statements and Blocks.
23//===----------------------------------------------------------------------===//
24
25/// ParseStatementOrDeclaration - Read 'statement' or 'declaration'.
26/// StatementOrDeclaration:
27/// statement
28/// declaration
29///
30/// statement:
31/// labeled-statement
32/// compound-statement
33/// expression-statement
34/// selection-statement
35/// iteration-statement
36/// jump-statement
37/// [OBC] objc-throw-statement [TODO]
38/// [OBC] objc-try-catch-statement [TODO]
39/// [OBC] objc-synchronized-statement [TODO]
40/// [GNU] asm-statement [TODO]
41/// [OMP] openmp-construct [TODO]
42///
43/// labeled-statement:
44/// identifier ':' statement
45/// 'case' constant-expression ':' statement
46/// 'default' ':' statement
47///
Chris Lattner0ccd51e2006-08-09 05:47:47 +000048/// selection-statement:
49/// if-statement
50/// switch-statement
51///
52/// iteration-statement:
53/// while-statement
54/// do-statement
55/// for-statement
56///
Chris Lattner9075bd72006-08-10 04:59:57 +000057/// expression-statement:
58/// expression[opt] ';'
59///
Chris Lattner0ccd51e2006-08-09 05:47:47 +000060/// jump-statement:
61/// 'goto' identifier ';'
62/// 'continue' ';'
63/// 'break' ';'
64/// 'return' expression[opt] ';'
Chris Lattner503fadc2006-08-10 05:45:44 +000065/// [GNU] 'goto' '*' expression ';'
Chris Lattner0ccd51e2006-08-09 05:47:47 +000066///
67/// [OBC] objc-throw-statement: [TODO]
68/// [OBC] '@' 'throw' expression ';' [TODO]
69/// [OBC] '@' 'throw' ';' [TODO]
70///
Chris Lattnerc951dae2006-08-10 04:23:57 +000071void Parser::ParseStatementOrDeclaration(bool OnlyStatement) {
Chris Lattner503fadc2006-08-10 05:45:44 +000072 const char *SemiError = 0;
73
Chris Lattnerd2685cf2006-08-10 05:59:48 +000074ParseNextStatement:
Chris Lattner503fadc2006-08-10 05:45:44 +000075 // Cases in this switch statement should fall through if the parser expects
76 // the token to end in a semicolon (in which case SemiError should be set),
77 // or they directly 'return;' if not.
Chris Lattner0ccd51e2006-08-09 05:47:47 +000078 switch (Tok.getKind()) {
Chris Lattnerf8afb622006-08-10 18:26:31 +000079 case tok::identifier: // C99 6.8.1: labeled-statement
80 // identifier ':' statement
81 // declaration (if !OnlyStatement)
82 // expression[opt] ';'
83 return ParseIdentifierStatement(OnlyStatement);
84
Chris Lattner0ccd51e2006-08-09 05:47:47 +000085 default:
Chris Lattnerf8afb622006-08-10 18:26:31 +000086 if (!OnlyStatement && isDeclarationSpecifier()) {
87 // TODO: warn/disable if declaration is in the middle of a block and !C99.
88 ParseDeclaration(Declarator::BlockContext);
89 return;
90 } else if (Tok.getKind() == tok::r_brace) {
91 Diag(Tok, diag::err_expected_statement);
92 } else {
93 // expression[opt] ';'
Chris Lattner89c50c62006-08-11 06:41:18 +000094 ExprResult Res = ParseExpression();
95 if (Res.isInvalid) {
96 // If the expression is invalid, skip ahead to the next semicolon. Not
97 // doing this opens us up to the possibility of infinite loops if
98 // ParseExpression does not consume any tokens.
99 SkipUntil(tok::semi);
100 }
Chris Lattnerf8afb622006-08-10 18:26:31 +0000101 }
Chris Lattner503fadc2006-08-10 05:45:44 +0000102 return;
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000103
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000104 case tok::kw_case: // C99 6.8.1: labeled-statement
105 ParseCaseStatement();
106 if (Tok.getKind() == tok::r_brace) {
107 Diag(Tok, diag::err_label_end_of_compound_statement);
108 return;
109 }
110 OnlyStatement = true;
111 goto ParseNextStatement;
112 case tok::kw_default: // C99 6.8.1: labeled-statement
113 ParseDefaultStatement();
114 if (Tok.getKind() == tok::r_brace) {
115 Diag(Tok, diag::err_label_end_of_compound_statement);
116 return;
117 }
118 OnlyStatement = true;
119 goto ParseNextStatement;
Chris Lattner9075bd72006-08-10 04:59:57 +0000120
121 case tok::l_brace: // C99 6.8.2: compound-statement
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000122 ParseCompoundStatement();
Chris Lattner503fadc2006-08-10 05:45:44 +0000123 return;
Chris Lattner9075bd72006-08-10 04:59:57 +0000124 case tok::semi: // C99 6.8.3: expression[opt] ';'
Chris Lattnerc951dae2006-08-10 04:23:57 +0000125 ConsumeToken();
Chris Lattner503fadc2006-08-10 05:45:44 +0000126 return;
127
Chris Lattner9075bd72006-08-10 04:59:57 +0000128 case tok::kw_if: // C99 6.8.4.1: if-statement
Chris Lattnerc951dae2006-08-10 04:23:57 +0000129 ParseIfStatement();
Chris Lattner503fadc2006-08-10 05:45:44 +0000130 return;
Chris Lattner9075bd72006-08-10 04:59:57 +0000131 case tok::kw_switch: // C99 6.8.4.2: switch-statement
132 ParseSwitchStatement();
Chris Lattner503fadc2006-08-10 05:45:44 +0000133 return;
134
Chris Lattner9075bd72006-08-10 04:59:57 +0000135 case tok::kw_while: // C99 6.8.5.1: while-statement
136 ParseWhileStatement();
Chris Lattner503fadc2006-08-10 05:45:44 +0000137 return;
Chris Lattner9075bd72006-08-10 04:59:57 +0000138 case tok::kw_do: // C99 6.8.5.2: do-statement
139 ParseDoStatement();
Chris Lattner503fadc2006-08-10 05:45:44 +0000140 SemiError = "do/while loop";
Chris Lattner9075bd72006-08-10 04:59:57 +0000141 break;
142 case tok::kw_for: // C99 6.8.5.3: for-statement
143 ParseForStatement();
Chris Lattner503fadc2006-08-10 05:45:44 +0000144 return;
145
146 case tok::kw_goto: // C99 6.8.6.1: goto-statement
147 ParseGotoStatement();
148 SemiError = "goto statement";
Chris Lattner9075bd72006-08-10 04:59:57 +0000149 break;
Chris Lattner503fadc2006-08-10 05:45:44 +0000150 case tok::kw_continue: // C99 6.8.6.2: continue-statement
151 ConsumeToken(); // eat the 'continue'.
152 SemiError = "continue statement";
153 break;
154 case tok::kw_break: // C99 6.8.6.3: break-statement
155 ConsumeToken(); // eat the 'break'.
156 SemiError = "break statement";
157 break;
158 case tok::kw_return: // C99 6.8.6.4: return-statement
159 ParseReturnStatement();
160 SemiError = "return statement";
161 break;
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000162 }
Chris Lattner503fadc2006-08-10 05:45:44 +0000163
164 // If we reached this code, the statement must end in a semicolon.
165 if (Tok.getKind() == tok::semi) {
166 ConsumeToken();
167 } else {
168 Diag(Tok, diag::err_expected_semi_after, SemiError);
169 SkipUntil(tok::semi);
170 }
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000171}
172
Chris Lattnerf8afb622006-08-10 18:26:31 +0000173/// ParseIdentifierStatement - Because we don't have two-token lookahead, we
174/// have a bit of a quandry here. Reading the identifier is necessary to see if
175/// there is a ':' after it. If there is, this is a label, regardless of what
176/// else the identifier can mean. If not, this is either part of a declaration
177/// (if the identifier is a type-name) or part of an expression.
Chris Lattner6dfd9782006-08-10 18:31:37 +0000178///
179/// labeled-statement:
180/// identifier ':' statement
181/// declaration (if !OnlyStatement)
182/// expression[opt] ';'
183///
Chris Lattnerf8afb622006-08-10 18:26:31 +0000184void Parser::ParseIdentifierStatement(bool OnlyStatement) {
Chris Lattner6dfd9782006-08-10 18:31:37 +0000185 IdentifierInfo *II = Tok.getIdentifierInfo();
186 assert(Tok.getKind() == tok::identifier && II && "Not an identifier!");
187
Chris Lattner0c6c0342006-08-12 18:12:45 +0000188 LexerToken IdentTok = Tok; // Save the token.
Chris Lattner6dfd9782006-08-10 18:31:37 +0000189 ConsumeToken(); // eat the identifier.
190
191 // identifier ':' statement
192 if (Tok.getKind() == tok::colon) {
193 ConsumeToken();
194 ParseStatement();
195 return;
196 }
197
198 // declaration
199 if (!OnlyStatement && 0/*Is typedef name!*/) {
200 // Handle this. Warn/disable if in middle of block and !C99.
Chris Lattner2f9980e2006-08-10 18:39:24 +0000201 DeclSpec DS;
202
203 // FIXME: Add the typedef name to the start of the decl-specs.
204 // ParseDeclarationSpecifiers will continue from there.
205 ParseDeclarationSpecifiers(DS);
206
207 // Parse all the declarators.
208 Declarator DeclaratorInfo(DS, Declarator::BlockContext);
209 ParseDeclarator(DeclaratorInfo);
210
211 ParseInitDeclaratorListAfterFirstDeclarator(DeclaratorInfo);
212 return;
Chris Lattner6dfd9782006-08-10 18:31:37 +0000213 }
214
Chris Lattner0c6c0342006-08-12 18:12:45 +0000215 // Otherwise, this is an expression. Seed it with II and parse it.
216 ExprResult Res = ParseExpressionWithLeadingIdentifier(IdentTok);
217 if (Res.isInvalid)
218 SkipUntil(tok::semi);
219 else if (Tok.getKind() == tok::semi)
220 ConsumeToken();
221 else {
222 Diag(Tok, diag::err_expected_semi_after, "expression");
223 SkipUntil(tok::semi);
224 }
Chris Lattnerf8afb622006-08-10 18:26:31 +0000225}
226
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000227/// ParseCaseStatement
228/// labeled-statement:
229/// 'case' constant-expression ':' statement
230///
231/// Note that this does not parse the 'statement' at the end.
232///
233void Parser::ParseCaseStatement() {
234 assert(Tok.getKind() == tok::kw_case && "Not a case stmt!");
235 ConsumeToken(); // eat the 'case'.
236
Chris Lattnerc5e0d4a2006-08-10 19:06:03 +0000237 ParseAssignmentExpression(); // Expr without commas.
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000238
239 if (Tok.getKind() == tok::colon) {
240 ConsumeToken();
241 } else {
242 Diag(Tok, diag::err_expected_colon_after, "'case'");
243 SkipUntil(tok::colon);
244 }
245}
246
247/// ParseDefaultStatement
248/// labeled-statement:
249/// 'default' ':' statement
250/// Note that this does not parse the 'statement' at the end.
251///
252void Parser::ParseDefaultStatement() {
253 assert(Tok.getKind() == tok::kw_default && "Not a default stmt!");
254 ConsumeToken(); // eat the 'default'.
255
256 if (Tok.getKind() == tok::colon) {
257 ConsumeToken();
258 } else {
259 Diag(Tok, diag::err_expected_colon_after, "'default'");
260 SkipUntil(tok::colon);
261 }
262}
263
264
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000265/// ParseCompoundStatement - Parse a "{}" block.
266///
267/// compound-statement: [C99 6.8.2]
268/// { block-item-list[opt] }
269/// [GNU] { label-declarations block-item-list } [TODO]
270///
271/// block-item-list:
272/// block-item
273/// block-item-list block-item
274///
275/// block-item:
276/// declaration
277/// [GNU] '__extension__' declaration [TODO]
278/// statement
279/// [OMP] openmp-directive [TODO]
280///
281/// [GNU] label-declarations:
282/// [GNU] label-declaration
283/// [GNU] label-declarations label-declaration
284///
285/// [GNU] label-declaration:
286/// [GNU] '__label__' identifier-list ';'
287///
288/// [OMP] openmp-directive: [TODO]
289/// [OMP] barrier-directive
290/// [OMP] flush-directive
291void Parser::ParseCompoundStatement() {
292 assert(Tok.getKind() == tok::l_brace && "Not a compount stmt!");
293 ConsumeBrace(); // eat the '{'.
294
295 while (Tok.getKind() != tok::r_brace && Tok.getKind() != tok::eof)
Chris Lattnerc951dae2006-08-10 04:23:57 +0000296 ParseStatementOrDeclaration(false);
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000297
298 // We broke out of the while loop because we found a '}' or EOF.
299 if (Tok.getKind() == tok::r_brace)
300 ConsumeBrace();
301 else
302 Diag(Tok, diag::err_expected_rbrace);
303}
Chris Lattnerc951dae2006-08-10 04:23:57 +0000304
305/// ParseIfStatement
306/// if-statement: [C99 6.8.4.1]
307/// 'if' '(' expression ')' statement
308/// 'if' '(' expression ')' statement 'else' statement
309void Parser::ParseIfStatement() {
310 assert(Tok.getKind() == tok::kw_if && "Not an if stmt!");
311 ConsumeToken(); // eat the 'if'.
312
313 if (Tok.getKind() != tok::l_paren) {
Chris Lattner9075bd72006-08-10 04:59:57 +0000314 Diag(Tok, diag::err_expected_lparen_after, "if");
Chris Lattnerc951dae2006-08-10 04:23:57 +0000315 SkipUntil(tok::semi);
316 return;
317 }
318
319 // Parse the condition.
Chris Lattner4add4e62006-08-11 01:33:00 +0000320 ParenParseOption ParenExprType = SimpleExpr;
321 ParseParenExpression(ParenExprType);
Chris Lattnerc951dae2006-08-10 04:23:57 +0000322
323 // Read the if condition.
324 ParseStatement();
325
326 // If it has an else, parse it.
327 if (Tok.getKind() == tok::kw_else) {
328 ConsumeToken();
329 ParseStatement();
330 }
Chris Lattnerc951dae2006-08-10 04:23:57 +0000331}
332
Chris Lattner9075bd72006-08-10 04:59:57 +0000333/// ParseSwitchStatement
334/// switch-statement:
335/// 'switch' '(' expression ')' statement
336void Parser::ParseSwitchStatement() {
337 assert(Tok.getKind() == tok::kw_switch && "Not a switch stmt!");
338 ConsumeToken(); // eat the 'switch'.
339
340 if (Tok.getKind() != tok::l_paren) {
341 Diag(Tok, diag::err_expected_lparen_after, "switch");
342 SkipUntil(tok::semi);
343 return;
344 }
345
346 // Parse the condition.
Chris Lattner4add4e62006-08-11 01:33:00 +0000347 ParenParseOption ParenExprType = SimpleExpr;
348 ParseParenExpression(ParenExprType);
Chris Lattner9075bd72006-08-10 04:59:57 +0000349
350 // Read the body statement.
351 ParseStatement();
352}
353
354/// ParseWhileStatement
355/// while-statement: [C99 6.8.5.1]
356/// 'while' '(' expression ')' statement
357void Parser::ParseWhileStatement() {
358 assert(Tok.getKind() == tok::kw_while && "Not a while stmt!");
359 ConsumeToken(); // eat the 'while'.
360
361 if (Tok.getKind() != tok::l_paren) {
362 Diag(Tok, diag::err_expected_lparen_after, "while");
363 SkipUntil(tok::semi);
364 return;
365 }
366
367 // Parse the condition.
Chris Lattner4add4e62006-08-11 01:33:00 +0000368 ParenParseOption ParenExprType = SimpleExpr;
369 ParseParenExpression(ParenExprType);
Chris Lattner9075bd72006-08-10 04:59:57 +0000370
371 // Read the body statement.
372 ParseStatement();
373}
374
375/// ParseDoStatement
376/// do-statement: [C99 6.8.5.2]
377/// 'do' statement 'while' '(' expression ')' ';'
Chris Lattner503fadc2006-08-10 05:45:44 +0000378/// Note: this lets the caller parse the end ';'.
Chris Lattner9075bd72006-08-10 04:59:57 +0000379void Parser::ParseDoStatement() {
380 assert(Tok.getKind() == tok::kw_do && "Not a do stmt!");
381 SourceLocation DoLoc = Tok.getLocation();
382 ConsumeToken(); // eat the 'do'.
383
384 // Read the body statement.
385 ParseStatement();
386
387 if (Tok.getKind() != tok::kw_while) {
388 Diag(Tok, diag::err_expected_while);
Chris Lattnerc2dd85a2006-08-10 22:57:16 +0000389 Diag(DoLoc, diag::err_matching, "do");
Chris Lattner9075bd72006-08-10 04:59:57 +0000390 SkipUntil(tok::semi);
391 return;
392 }
393 ConsumeToken();
394
395 if (Tok.getKind() != tok::l_paren) {
396 Diag(Tok, diag::err_expected_lparen_after, "do/while");
397 SkipUntil(tok::semi);
398 return;
399 }
400
401 // Parse the condition.
Chris Lattner4add4e62006-08-11 01:33:00 +0000402 ParenParseOption ParenExprType = SimpleExpr;
403 ParseParenExpression(ParenExprType);
Chris Lattner9075bd72006-08-10 04:59:57 +0000404}
405
406/// ParseForStatement
407/// for-statement: [C99 6.8.5.3]
408/// 'for' '(' expr[opt] ';' expr[opt] ';' expr[opt] ')' statement
409/// 'for' '(' declaration expr[opt] ';' expr[opt] ')' statement
410void Parser::ParseForStatement() {
411 assert(Tok.getKind() == tok::kw_for && "Not a for stmt!");
412 SourceLocation ForLoc = Tok.getLocation();
413 ConsumeToken(); // eat the 'for'.
414
415 if (Tok.getKind() != tok::l_paren) {
416 Diag(Tok, diag::err_expected_lparen_after, "for");
417 SkipUntil(tok::semi);
418 return;
419 }
420
421 SourceLocation LParenLoc = Tok.getLocation();
422 ConsumeParen();
423
Chris Lattner89c50c62006-08-11 06:41:18 +0000424 ExprResult Value;
425
Chris Lattner9075bd72006-08-10 04:59:57 +0000426 // Parse the first part of the for specifier.
427 if (Tok.getKind() == tok::semi) { // for (;
Chris Lattner53361ac2006-08-10 05:19:57 +0000428 // no first part, eat the ';'.
429 ConsumeToken();
Chris Lattner9075bd72006-08-10 04:59:57 +0000430 } else if (isDeclarationSpecifier()) { // for (int X = 4;
Chris Lattner53361ac2006-08-10 05:19:57 +0000431 // Parse declaration, which eats the ';'.
Chris Lattnerab1803652006-08-10 05:22:36 +0000432 if (!getLang().C99) // Use of C99-style for loops in C90 mode?
433 Diag(Tok, diag::ext_c99_variable_decl_in_for_loop);
Chris Lattner53361ac2006-08-10 05:19:57 +0000434 ParseDeclaration(Declarator::ForContext);
Chris Lattner9075bd72006-08-10 04:59:57 +0000435 } else {
Chris Lattner89c50c62006-08-11 06:41:18 +0000436 Value = ParseExpression();
Chris Lattner9075bd72006-08-10 04:59:57 +0000437
Chris Lattner53361ac2006-08-10 05:19:57 +0000438 if (Tok.getKind() == tok::semi) {
439 ConsumeToken();
440 } else {
Chris Lattner89c50c62006-08-11 06:41:18 +0000441 if (!Value.isInvalid) Diag(Tok, diag::err_expected_semi_for);
Chris Lattner53361ac2006-08-10 05:19:57 +0000442 SkipUntil(tok::semi);
443 }
Chris Lattner9075bd72006-08-10 04:59:57 +0000444 }
445
446 // Parse the second part of the for specifier.
447 if (Tok.getKind() == tok::semi) { // for (...;;
448 // no second part.
Chris Lattner89c50c62006-08-11 06:41:18 +0000449 Value = ExprResult();
Chris Lattner9075bd72006-08-10 04:59:57 +0000450 } else {
Chris Lattner89c50c62006-08-11 06:41:18 +0000451 Value = ParseExpression();
Chris Lattner9075bd72006-08-10 04:59:57 +0000452 }
453
454 if (Tok.getKind() == tok::semi) {
455 ConsumeToken();
456 } else {
Chris Lattner89c50c62006-08-11 06:41:18 +0000457 if (!Value.isInvalid) Diag(Tok, diag::err_expected_semi_for);
Chris Lattner9075bd72006-08-10 04:59:57 +0000458 SkipUntil(tok::semi);
459 }
460
461 // Parse the third part of the for specifier.
462 if (Tok.getKind() == tok::r_paren) { // for (...;...;)
463 // no third part.
Chris Lattner89c50c62006-08-11 06:41:18 +0000464 Value = ExprResult();
Chris Lattner9075bd72006-08-10 04:59:57 +0000465 } else {
Chris Lattner89c50c62006-08-11 06:41:18 +0000466 Value = ParseExpression();
Chris Lattner9075bd72006-08-10 04:59:57 +0000467 }
468
Chris Lattner4564bc12006-08-10 23:14:52 +0000469 // Match the ')'.
470 MatchRHSPunctuation(tok::r_paren, LParenLoc, "(", diag::err_expected_rparen);
Chris Lattner9075bd72006-08-10 04:59:57 +0000471
472 // Read the body statement.
473 ParseStatement();
474}
Chris Lattnerc951dae2006-08-10 04:23:57 +0000475
Chris Lattner503fadc2006-08-10 05:45:44 +0000476/// ParseGotoStatement
477/// jump-statement:
478/// 'goto' identifier ';'
479/// [GNU] 'goto' '*' expression ';'
480///
481/// Note: this lets the caller parse the end ';'.
482///
483void Parser::ParseGotoStatement() {
484 assert(Tok.getKind() == tok::kw_goto && "Not a goto stmt!");
485 ConsumeToken(); // eat the 'goto'.
486
487 if (Tok.getKind() == tok::identifier) {
488 ConsumeToken();
489 } else if (Tok.getKind() == tok::star && !getLang().NoExtensions) {
490 // GNU indirect goto extension.
491 Diag(Tok, diag::ext_gnu_indirect_goto);
492 ConsumeToken();
Chris Lattnera0927ce2006-08-12 16:59:03 +0000493 ExprResult R = ParseExpression();
494 if (R.isInvalid) // Skip to the semicolon, but don't consume it.
495 SkipUntil(tok::semi, false, true);
Chris Lattner503fadc2006-08-10 05:45:44 +0000496 }
497}
498
499/// ParseReturnStatement
500/// jump-statement:
501/// 'return' expression[opt] ';'
502void Parser::ParseReturnStatement() {
503 assert(Tok.getKind() == tok::kw_return && "Not a return stmt!");
504 ConsumeToken(); // eat the 'return'.
505
Chris Lattnera0927ce2006-08-12 16:59:03 +0000506 if (Tok.getKind() != tok::semi) {
507 ExprResult R = ParseExpression();
508 if (R.isInvalid) // Skip to the semicolon, but don't consume it.
509 SkipUntil(tok::semi, false, true);
510 }
Chris Lattner503fadc2006-08-10 05:45:44 +0000511}