| 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 633 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |