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

Side by Side Diff: src/crankshaft/hydrogen.cc

Issue 2081733004: Rip out most of our outdated modules implementation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Leftovers. Created 4 years, 6 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/crankshaft/hydrogen.h" 5 #include "src/crankshaft/hydrogen.h"
6 6
7 #include <sstream> 7 #include <sstream>
8 8
9 #include "src/allocation-site-scopes.h" 9 #include "src/allocation-site-scopes.h"
10 #include "src/ast/ast-numbering.h" 10 #include "src/ast/ast-numbering.h"
(...skipping 12407 matching lines...) Expand 10 before | Expand all | Expand 10 after
12418 } 12418 }
12419 } 12419 }
12420 12420
12421 12421
12422 void HOptimizedGraphBuilder::VisitImportDeclaration( 12422 void HOptimizedGraphBuilder::VisitImportDeclaration(
12423 ImportDeclaration* declaration) { 12423 ImportDeclaration* declaration) {
12424 UNREACHABLE(); 12424 UNREACHABLE();
12425 } 12425 }
12426 12426
12427 12427
12428 void HOptimizedGraphBuilder::VisitExportDeclaration(
12429 ExportDeclaration* declaration) {
12430 UNREACHABLE();
12431 }
12432
12433
12434 void HOptimizedGraphBuilder::VisitRewritableExpression( 12428 void HOptimizedGraphBuilder::VisitRewritableExpression(
12435 RewritableExpression* node) { 12429 RewritableExpression* node) {
12436 CHECK_ALIVE(Visit(node->expression())); 12430 CHECK_ALIVE(Visit(node->expression()));
12437 } 12431 }
12438 12432
12439 12433
12440 // Generators for inline runtime functions. 12434 // Generators for inline runtime functions.
12441 // Support for types. 12435 // Support for types.
12442 void HOptimizedGraphBuilder::GenerateIsSmi(CallRuntime* call) { 12436 void HOptimizedGraphBuilder::GenerateIsSmi(CallRuntime* call) {
12443 DCHECK(call->arguments()->length() == 1); 12437 DCHECK(call->arguments()->length() == 1);
(...skipping 1247 matching lines...) Expand 10 before | Expand all | Expand 10 after
13691 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); 13685 isolate()->GetHTracer()->TraceHydrogen(name(), graph_);
13692 } 13686 }
13693 13687
13694 #ifdef DEBUG 13688 #ifdef DEBUG
13695 graph_->Verify(false); // No full verify. 13689 graph_->Verify(false); // No full verify.
13696 #endif 13690 #endif
13697 } 13691 }
13698 13692
13699 } // namespace internal 13693 } // namespace internal
13700 } // namespace v8 13694 } // namespace v8
OLDNEW
« src/ast/scopes.cc ('K') | « src/contexts-inl.h ('k') | src/crankshaft/typing.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698