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

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

Issue 2268303002: Include only stuff you need, part 4: ast, scopes + fallout. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 3 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/crankshaft/hydrogen.h ('k') | src/debug/debug-evaluate.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/crankshaft/hydrogen.h" 5 #include "src/crankshaft/hydrogen.h"
6 6
7 #include <memory> 7 #include <memory>
8 #include <sstream> 8 #include <sstream>
9 9
10 #include "src/allocation-site-scopes.h" 10 #include "src/allocation-site-scopes.h"
11 #include "src/ast/ast-numbering.h" 11 #include "src/ast/ast-numbering.h"
12 #include "src/ast/scopes.h"
12 #include "src/code-factory.h" 13 #include "src/code-factory.h"
13 #include "src/crankshaft/hydrogen-bce.h" 14 #include "src/crankshaft/hydrogen-bce.h"
14 #include "src/crankshaft/hydrogen-canonicalize.h" 15 #include "src/crankshaft/hydrogen-canonicalize.h"
15 #include "src/crankshaft/hydrogen-check-elimination.h" 16 #include "src/crankshaft/hydrogen-check-elimination.h"
16 #include "src/crankshaft/hydrogen-dce.h" 17 #include "src/crankshaft/hydrogen-dce.h"
17 #include "src/crankshaft/hydrogen-dehoist.h" 18 #include "src/crankshaft/hydrogen-dehoist.h"
18 #include "src/crankshaft/hydrogen-environment-liveness.h" 19 #include "src/crankshaft/hydrogen-environment-liveness.h"
19 #include "src/crankshaft/hydrogen-escape-analysis.h" 20 #include "src/crankshaft/hydrogen-escape-analysis.h"
20 #include "src/crankshaft/hydrogen-gvn.h" 21 #include "src/crankshaft/hydrogen-gvn.h"
21 #include "src/crankshaft/hydrogen-infer-representation.h" 22 #include "src/crankshaft/hydrogen-infer-representation.h"
(...skipping 13410 matching lines...) Expand 10 before | Expand all | Expand 10 after
13432 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); 13433 isolate()->GetHTracer()->TraceHydrogen(name(), graph_);
13433 } 13434 }
13434 13435
13435 #ifdef DEBUG 13436 #ifdef DEBUG
13436 graph_->Verify(false); // No full verify. 13437 graph_->Verify(false); // No full verify.
13437 #endif 13438 #endif
13438 } 13439 }
13439 13440
13440 } // namespace internal 13441 } // namespace internal
13441 } // namespace v8 13442 } // namespace v8
OLDNEW
« no previous file with comments | « src/crankshaft/hydrogen.h ('k') | src/debug/debug-evaluate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698