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

Side by Side Diff: src/compiler.cc

Issue 421002: Disable the fast top-level compiler for non-global declarations.... (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 | « no previous file | no next file » | 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 628 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 639
640 void CodeGenSelector::VisitStatements(ZoneList<Statement*>* stmts) { 640 void CodeGenSelector::VisitStatements(ZoneList<Statement*>* stmts) {
641 for (int i = 0, len = stmts->length(); i < len; i++) { 641 for (int i = 0, len = stmts->length(); i < len; i++) {
642 Visit(stmts->at(i)); 642 Visit(stmts->at(i));
643 CHECK_BAILOUT; 643 CHECK_BAILOUT;
644 } 644 }
645 } 645 }
646 646
647 647
648 void CodeGenSelector::VisitDeclaration(Declaration* decl) { 648 void CodeGenSelector::VisitDeclaration(Declaration* decl) {
649 if (decl->fun() != NULL) { 649 Variable* var = decl->proxy()->var();
650 ProcessExpression(decl->fun(), Expression::kValue); 650 if (!var->is_global() || var->mode() == Variable::CONST) {
651 BAILOUT("Non-global declaration");
651 } 652 }
652 } 653 }
653 654
654 655
655 void CodeGenSelector::VisitBlock(Block* stmt) { 656 void CodeGenSelector::VisitBlock(Block* stmt) {
656 VisitStatements(stmt->statements()); 657 VisitStatements(stmt->statements());
657 } 658 }
658 659
659 660
660 void CodeGenSelector::VisitExpressionStatement(ExpressionStatement* stmt) { 661 void CodeGenSelector::VisitExpressionStatement(ExpressionStatement* stmt) {
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
1103 1104
1104 void CodeGenSelector::VisitThisFunction(ThisFunction* expr) { 1105 void CodeGenSelector::VisitThisFunction(ThisFunction* expr) {
1105 BAILOUT("ThisFunction"); 1106 BAILOUT("ThisFunction");
1106 } 1107 }
1107 1108
1108 #undef BAILOUT 1109 #undef BAILOUT
1109 #undef CHECK_BAILOUT 1110 #undef CHECK_BAILOUT
1110 1111
1111 1112
1112 } } // namespace v8::internal 1113 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698