Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(366)

Side by Side Diff: src/compiler.cc

Issue 368005: Add support for all declarations in the top-level compiler: ... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/arm/fast-codegen-arm.cc ('k') | src/fast-codegen.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2009 the V8 project authors. All rights reserved. 1 // Copyright 2009 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after
644 644
645 void CodeGenSelector::VisitStatements(ZoneList<Statement*>* stmts) { 645 void CodeGenSelector::VisitStatements(ZoneList<Statement*>* stmts) {
646 for (int i = 0, len = stmts->length(); i < len; i++) { 646 for (int i = 0, len = stmts->length(); i < len; i++) {
647 Visit(stmts->at(i)); 647 Visit(stmts->at(i));
648 CHECK_BAILOUT; 648 CHECK_BAILOUT;
649 } 649 }
650 } 650 }
651 651
652 652
653 void CodeGenSelector::VisitDeclaration(Declaration* decl) { 653 void CodeGenSelector::VisitDeclaration(Declaration* decl) {
654 Variable* var = decl->proxy()->var(); 654 if (decl->fun() != NULL) {
655 if (!var->is_global() || var->mode() == Variable::CONST) { 655 ProcessExpression(decl->fun(), Expression::kValue);
656 BAILOUT("Non-global declaration");
657 } 656 }
658 } 657 }
659 658
660 659
661 void CodeGenSelector::VisitBlock(Block* stmt) { 660 void CodeGenSelector::VisitBlock(Block* stmt) {
662 VisitStatements(stmt->statements()); 661 VisitStatements(stmt->statements());
663 } 662 }
664 663
665 664
666 void CodeGenSelector::VisitExpressionStatement(ExpressionStatement* stmt) { 665 void CodeGenSelector::VisitExpressionStatement(ExpressionStatement* stmt) {
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
1103 1102
1104 void CodeGenSelector::VisitThisFunction(ThisFunction* expr) { 1103 void CodeGenSelector::VisitThisFunction(ThisFunction* expr) {
1105 BAILOUT("ThisFunction"); 1104 BAILOUT("ThisFunction");
1106 } 1105 }
1107 1106
1108 #undef BAILOUT 1107 #undef BAILOUT
1109 #undef CHECK_BAILOUT 1108 #undef CHECK_BAILOUT
1110 1109
1111 1110
1112 } } // namespace v8::internal 1111 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/arm/fast-codegen-arm.cc ('k') | src/fast-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698