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

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: Properly freeze interface at the end of ParseModule 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
« no previous file with comments | « src/globals.h ('k') | src/ia32/full-codegen-ia32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 11467 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « src/globals.h ('k') | src/ia32/full-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698