Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Side by Side Diff: src/hydrogen.cc

Issue 918373002: Strip Interface class of most of its logic, make it all about Module exports (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Merged to trunk Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 11548 matching lines...) Expand 10 before | Expand all | Expand 10 after
11559 ExportDeclaration* declaration) { 11559 ExportDeclaration* declaration) {
11560 UNREACHABLE(); 11560 UNREACHABLE();
11561 } 11561 }
11562 11562
11563 11563
11564 void HOptimizedGraphBuilder::VisitModuleLiteral(ModuleLiteral* module) { 11564 void HOptimizedGraphBuilder::VisitModuleLiteral(ModuleLiteral* module) {
11565 UNREACHABLE(); 11565 UNREACHABLE();
11566 } 11566 }
11567 11567
11568 11568
11569 void HOptimizedGraphBuilder::VisitModuleVariable(ModuleVariable* module) {
11570 UNREACHABLE();
11571 }
11572
11573
11574 void HOptimizedGraphBuilder::VisitModulePath(ModulePath* module) { 11569 void HOptimizedGraphBuilder::VisitModulePath(ModulePath* module) {
11575 UNREACHABLE(); 11570 UNREACHABLE();
11576 } 11571 }
11577 11572
11578 11573
11579 void HOptimizedGraphBuilder::VisitModuleUrl(ModuleUrl* module) { 11574 void HOptimizedGraphBuilder::VisitModuleUrl(ModuleUrl* module) {
11580 UNREACHABLE(); 11575 UNREACHABLE();
11581 } 11576 }
11582 11577
11583 11578
(...skipping 1924 matching lines...) Expand 10 before | Expand all | Expand 10 after
13508 if (ShouldProduceTraceOutput()) { 13503 if (ShouldProduceTraceOutput()) {
13509 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); 13504 isolate()->GetHTracer()->TraceHydrogen(name(), graph_);
13510 } 13505 }
13511 13506
13512 #ifdef DEBUG 13507 #ifdef DEBUG
13513 graph_->Verify(false); // No full verify. 13508 graph_->Verify(false); // No full verify.
13514 #endif 13509 #endif
13515 } 13510 }
13516 13511
13517 } } // namespace v8::internal 13512 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698