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

Side by Side Diff: src/hydrogen.cc

Issue 1248443003: Move Full-codegen into its own folder. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rename define Created 5 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
« no previous file with comments | « src/heap/spaces.cc ('k') | src/ia32/builtins-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
11 #include "src/allocation-site-scopes.h" 11 #include "src/allocation-site-scopes.h"
12 #include "src/ast-numbering.h" 12 #include "src/ast-numbering.h"
13 #include "src/full-codegen.h" 13 #include "src/full-codegen/full-codegen.h"
14 #include "src/hydrogen-bce.h" 14 #include "src/hydrogen-bce.h"
15 #include "src/hydrogen-bch.h" 15 #include "src/hydrogen-bch.h"
16 #include "src/hydrogen-canonicalize.h" 16 #include "src/hydrogen-canonicalize.h"
17 #include "src/hydrogen-check-elimination.h" 17 #include "src/hydrogen-check-elimination.h"
18 #include "src/hydrogen-dce.h" 18 #include "src/hydrogen-dce.h"
19 #include "src/hydrogen-dehoist.h" 19 #include "src/hydrogen-dehoist.h"
20 #include "src/hydrogen-environment-liveness.h" 20 #include "src/hydrogen-environment-liveness.h"
21 #include "src/hydrogen-escape-analysis.h" 21 #include "src/hydrogen-escape-analysis.h"
22 #include "src/hydrogen-gvn.h" 22 #include "src/hydrogen-gvn.h"
23 #include "src/hydrogen-infer-representation.h" 23 #include "src/hydrogen-infer-representation.h"
(...skipping 13311 matching lines...) Expand 10 before | Expand all | Expand 10 after
13335 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); 13335 isolate()->GetHTracer()->TraceHydrogen(name(), graph_);
13336 } 13336 }
13337 13337
13338 #ifdef DEBUG 13338 #ifdef DEBUG
13339 graph_->Verify(false); // No full verify. 13339 graph_->Verify(false); // No full verify.
13340 #endif 13340 #endif
13341 } 13341 }
13342 13342
13343 } // namespace internal 13343 } // namespace internal
13344 } // namespace v8 13344 } // namespace v8
OLDNEW
« no previous file with comments | « src/heap/spaces.cc ('k') | src/ia32/builtins-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698