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

Side by Side Diff: src/compiler/loop-analysis.cc

Issue 838783002: [turbofan] Cleanup Graph and related classes. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Parameter pack causes compile errors. Created 5 years, 11 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/compiler/graph-reducer.h ('k') | src/compiler/node.h » ('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/compiler/loop-analysis.h"
6
5 #include "src/compiler/graph.h" 7 #include "src/compiler/graph.h"
6 #include "src/compiler/loop-analysis.h"
7 #include "src/compiler/node.h" 8 #include "src/compiler/node.h"
9 #include "src/compiler/node-marker.h"
8 #include "src/compiler/node-properties-inl.h" 10 #include "src/compiler/node-properties-inl.h"
9 #include "src/zone.h" 11 #include "src/zone.h"
10 12
11 namespace v8 { 13 namespace v8 {
12 namespace internal { 14 namespace internal {
13 namespace compiler { 15 namespace compiler {
14 16
15 typedef uint32_t LoopMarks; 17 typedef uint32_t LoopMarks;
16 18
17 19
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 finder.Run(); 404 finder.Run();
403 if (FLAG_trace_turbo_graph) { 405 if (FLAG_trace_turbo_graph) {
404 finder.Print(); 406 finder.Print();
405 } 407 }
406 return loop_tree; 408 return loop_tree;
407 } 409 }
408 410
409 } // namespace compiler 411 } // namespace compiler
410 } // namespace internal 412 } // namespace internal
411 } // namespace v8 413 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/graph-reducer.h ('k') | src/compiler/node.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698