OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |