| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "src/hydrogen.h" | 5 #include "src/hydrogen.h" |
| 6 | 6 |
| 7 #include <sstream> | 7 #include <sstream> |
| 8 | 8 |
| 9 #include "src/v8.h" | 9 #include "src/v8.h" |
| 10 | 10 |
| (...skipping 11467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11478 ExportDeclaration* declaration) { | 11478 ExportDeclaration* declaration) { |
| 11479 UNREACHABLE(); | 11479 UNREACHABLE(); |
| 11480 } | 11480 } |
| 11481 | 11481 |
| 11482 | 11482 |
| 11483 void HOptimizedGraphBuilder::VisitModuleLiteral(ModuleLiteral* module) { | 11483 void HOptimizedGraphBuilder::VisitModuleLiteral(ModuleLiteral* module) { |
| 11484 UNREACHABLE(); | 11484 UNREACHABLE(); |
| 11485 } | 11485 } |
| 11486 | 11486 |
| 11487 | 11487 |
| 11488 void HOptimizedGraphBuilder::VisitModuleVariable(ModuleVariable* module) { | |
| 11489 UNREACHABLE(); | |
| 11490 } | |
| 11491 | |
| 11492 | |
| 11493 void HOptimizedGraphBuilder::VisitModulePath(ModulePath* module) { | 11488 void HOptimizedGraphBuilder::VisitModulePath(ModulePath* module) { |
| 11494 UNREACHABLE(); | 11489 UNREACHABLE(); |
| 11495 } | 11490 } |
| 11496 | 11491 |
| 11497 | 11492 |
| 11498 void HOptimizedGraphBuilder::VisitModuleUrl(ModuleUrl* module) { | 11493 void HOptimizedGraphBuilder::VisitModuleUrl(ModuleUrl* module) { |
| 11499 UNREACHABLE(); | 11494 UNREACHABLE(); |
| 11500 } | 11495 } |
| 11501 | 11496 |
| 11502 | 11497 |
| (...skipping 1924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13427 if (ShouldProduceTraceOutput()) { | 13422 if (ShouldProduceTraceOutput()) { |
| 13428 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); | 13423 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); |
| 13429 } | 13424 } |
| 13430 | 13425 |
| 13431 #ifdef DEBUG | 13426 #ifdef DEBUG |
| 13432 graph_->Verify(false); // No full verify. | 13427 graph_->Verify(false); // No full verify. |
| 13433 #endif | 13428 #endif |
| 13434 } | 13429 } |
| 13435 | 13430 |
| 13436 } } // namespace v8::internal | 13431 } } // namespace v8::internal |
| OLD | NEW |