| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 DebuggerStatement* stmt) { | 188 DebuggerStatement* stmt) { |
| 189 BAILOUT("DebuggerStatement"); | 189 BAILOUT("DebuggerStatement"); |
| 190 } | 190 } |
| 191 | 191 |
| 192 | 192 |
| 193 void FastCodeGenSyntaxChecker::VisitFunctionLiteral(FunctionLiteral* expr) { | 193 void FastCodeGenSyntaxChecker::VisitFunctionLiteral(FunctionLiteral* expr) { |
| 194 BAILOUT("FunctionLiteral"); | 194 BAILOUT("FunctionLiteral"); |
| 195 } | 195 } |
| 196 | 196 |
| 197 | 197 |
| 198 void FastCodeGenSyntaxChecker::VisitFunctionBoilerplateLiteral( | 198 void FastCodeGenSyntaxChecker::VisitSharedFunctionInfoLiteral( |
| 199 FunctionBoilerplateLiteral* expr) { | 199 SharedFunctionInfoLiteral* expr) { |
| 200 BAILOUT("FunctionBoilerplateLiteral"); | 200 BAILOUT("SharedFunctionInfoLiteral"); |
| 201 } | 201 } |
| 202 | 202 |
| 203 | 203 |
| 204 void FastCodeGenSyntaxChecker::VisitConditional(Conditional* expr) { | 204 void FastCodeGenSyntaxChecker::VisitConditional(Conditional* expr) { |
| 205 BAILOUT("Conditional"); | 205 BAILOUT("Conditional"); |
| 206 } | 206 } |
| 207 | 207 |
| 208 | 208 |
| 209 void FastCodeGenSyntaxChecker::VisitSlot(Slot* expr) { | 209 void FastCodeGenSyntaxChecker::VisitSlot(Slot* expr) { |
| 210 UNREACHABLE(); | 210 UNREACHABLE(); |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 void FastCodeGenerator::VisitDebuggerStatement(DebuggerStatement* stmt) { | 553 void FastCodeGenerator::VisitDebuggerStatement(DebuggerStatement* stmt) { |
| 554 UNREACHABLE(); | 554 UNREACHABLE(); |
| 555 } | 555 } |
| 556 | 556 |
| 557 | 557 |
| 558 void FastCodeGenerator::VisitFunctionLiteral(FunctionLiteral* expr) { | 558 void FastCodeGenerator::VisitFunctionLiteral(FunctionLiteral* expr) { |
| 559 UNREACHABLE(); | 559 UNREACHABLE(); |
| 560 } | 560 } |
| 561 | 561 |
| 562 | 562 |
| 563 void FastCodeGenerator::VisitFunctionBoilerplateLiteral( | 563 void FastCodeGenerator::VisitSharedFunctionInfoLiteral( |
| 564 FunctionBoilerplateLiteral* expr) { | 564 SharedFunctionInfoLiteral* expr) { |
| 565 UNREACHABLE(); | 565 UNREACHABLE(); |
| 566 } | 566 } |
| 567 | 567 |
| 568 | 568 |
| 569 void FastCodeGenerator::VisitConditional(Conditional* expr) { | 569 void FastCodeGenerator::VisitConditional(Conditional* expr) { |
| 570 UNREACHABLE(); | 570 UNREACHABLE(); |
| 571 } | 571 } |
| 572 | 572 |
| 573 | 573 |
| 574 void FastCodeGenerator::VisitSlot(Slot* expr) { | 574 void FastCodeGenerator::VisitSlot(Slot* expr) { |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 737 | 737 |
| 738 | 738 |
| 739 void FastCodeGenerator::VisitThisFunction(ThisFunction* expr) { | 739 void FastCodeGenerator::VisitThisFunction(ThisFunction* expr) { |
| 740 UNREACHABLE(); | 740 UNREACHABLE(); |
| 741 } | 741 } |
| 742 | 742 |
| 743 #undef __ | 743 #undef __ |
| 744 | 744 |
| 745 | 745 |
| 746 } } // namespace v8::internal | 746 } } // namespace v8::internal |
| OLD | NEW |