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 Variable* var = decl->proxy()->var(); | 649 if (decl->fun() != NULL) { |
650 if (!var->is_global() || var->mode() == Variable::CONST) { | 650 ProcessExpression(decl->fun(), Expression::kValue); |
651 BAILOUT("Non-global declaration"); | |
652 } | 651 } |
653 } | 652 } |
654 | 653 |
655 | 654 |
656 void CodeGenSelector::VisitBlock(Block* stmt) { | 655 void CodeGenSelector::VisitBlock(Block* stmt) { |
657 VisitStatements(stmt->statements()); | 656 VisitStatements(stmt->statements()); |
658 } | 657 } |
659 | 658 |
660 | 659 |
661 void CodeGenSelector::VisitExpressionStatement(ExpressionStatement* stmt) { | 660 void CodeGenSelector::VisitExpressionStatement(ExpressionStatement* stmt) { |
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1104 | 1103 |
1105 void CodeGenSelector::VisitThisFunction(ThisFunction* expr) { | 1104 void CodeGenSelector::VisitThisFunction(ThisFunction* expr) { |
1106 BAILOUT("ThisFunction"); | 1105 BAILOUT("ThisFunction"); |
1107 } | 1106 } |
1108 | 1107 |
1109 #undef BAILOUT | 1108 #undef BAILOUT |
1110 #undef CHECK_BAILOUT | 1109 #undef CHECK_BAILOUT |
1111 | 1110 |
1112 | 1111 |
1113 } } // namespace v8::internal | 1112 } } // namespace v8::internal |
OLD | NEW |