| 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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 757 void FastCodeGenerator::VisitDebuggerStatement(DebuggerStatement* stmt) { | 757 void FastCodeGenerator::VisitDebuggerStatement(DebuggerStatement* stmt) { |
| 758 UNREACHABLE(); | 758 UNREACHABLE(); |
| 759 } | 759 } |
| 760 | 760 |
| 761 | 761 |
| 762 void FastCodeGenerator::VisitFunctionLiteral(FunctionLiteral* expr) { | 762 void FastCodeGenerator::VisitFunctionLiteral(FunctionLiteral* expr) { |
| 763 UNREACHABLE(); | 763 UNREACHABLE(); |
| 764 } | 764 } |
| 765 | 765 |
| 766 | 766 |
| 767 void FastCodeGenerator::VisitFunctionBoilerplateLiteral( | 767 void FastCodeGenerator::VisitSharedFunctionInfoLiteral( |
| 768 FunctionBoilerplateLiteral* expr) { | 768 SharedFunctionInfoLiteral* expr) { |
| 769 UNREACHABLE(); | 769 UNREACHABLE(); |
| 770 } | 770 } |
| 771 | 771 |
| 772 | 772 |
| 773 void FastCodeGenerator::VisitConditional(Conditional* expr) { | 773 void FastCodeGenerator::VisitConditional(Conditional* expr) { |
| 774 UNREACHABLE(); | 774 UNREACHABLE(); |
| 775 } | 775 } |
| 776 | 776 |
| 777 | 777 |
| 778 void FastCodeGenerator::VisitSlot(Slot* expr) { | 778 void FastCodeGenerator::VisitSlot(Slot* expr) { |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 941 | 941 |
| 942 | 942 |
| 943 void FastCodeGenerator::VisitThisFunction(ThisFunction* expr) { | 943 void FastCodeGenerator::VisitThisFunction(ThisFunction* expr) { |
| 944 UNREACHABLE(); | 944 UNREACHABLE(); |
| 945 } | 945 } |
| 946 | 946 |
| 947 #undef __ | 947 #undef __ |
| 948 | 948 |
| 949 | 949 |
| 950 } } // namespace v8::internal | 950 } } // namespace v8::internal |
| OLD | NEW |