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

Side by Side Diff: src/hydrogen.cc

Issue 429583002: Revert "Make --always-opt also optimize toplevel code." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « src/factory.cc ('k') | src/ia32/lithium-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 <algorithm> 7 #include <algorithm>
8 8
9 #include "src/v8.h" 9 #include "src/v8.h"
10 10
(...skipping 11257 matching lines...) Expand 10 before | Expand all | Expand 10 after
11268 break; 11268 break;
11269 } 11269 }
11270 case Variable::LOOKUP: 11270 case Variable::LOOKUP:
11271 return Bailout(kUnsupportedLookupSlotInDeclaration); 11271 return Bailout(kUnsupportedLookupSlotInDeclaration);
11272 } 11272 }
11273 } 11273 }
11274 11274
11275 11275
11276 void HOptimizedGraphBuilder::VisitModuleDeclaration( 11276 void HOptimizedGraphBuilder::VisitModuleDeclaration(
11277 ModuleDeclaration* declaration) { 11277 ModuleDeclaration* declaration) {
11278 return Bailout(kModuleDeclaration); 11278 UNREACHABLE();
11279 } 11279 }
11280 11280
11281 11281
11282 void HOptimizedGraphBuilder::VisitImportDeclaration( 11282 void HOptimizedGraphBuilder::VisitImportDeclaration(
11283 ImportDeclaration* declaration) { 11283 ImportDeclaration* declaration) {
11284 UNREACHABLE(); 11284 UNREACHABLE();
11285 } 11285 }
11286 11286
11287 11287
11288 void HOptimizedGraphBuilder::VisitExportDeclaration( 11288 void HOptimizedGraphBuilder::VisitExportDeclaration(
(...skipping 1188 matching lines...) Expand 10 before | Expand all | Expand 10 after
12477 if (ShouldProduceTraceOutput()) { 12477 if (ShouldProduceTraceOutput()) {
12478 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); 12478 isolate()->GetHTracer()->TraceHydrogen(name(), graph_);
12479 } 12479 }
12480 12480
12481 #ifdef DEBUG 12481 #ifdef DEBUG
12482 graph_->Verify(false); // No full verify. 12482 graph_->Verify(false); // No full verify.
12483 #endif 12483 #endif
12484 } 12484 }
12485 12485
12486 } } // namespace v8::internal 12486 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698