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

Side by Side Diff: src/hydrogen.cc

Issue 1322883002: Make isolate.h usable without objects-inl.h header. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_cleanup-includes-frames-2
Patch Set: Rebased. Created 5 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/heap/memory-reducer.cc ('k') | src/ic/arm/handler-compiler-arm.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/allocation-site-scopes.h" 9 #include "src/allocation-site-scopes.h"
10 #include "src/ast-numbering.h" 10 #include "src/ast-numbering.h"
(...skipping 17 matching lines...) Expand all
28 #include "src/hydrogen-redundant-phi.h" 28 #include "src/hydrogen-redundant-phi.h"
29 #include "src/hydrogen-removable-simulates.h" 29 #include "src/hydrogen-removable-simulates.h"
30 #include "src/hydrogen-representation-changes.h" 30 #include "src/hydrogen-representation-changes.h"
31 #include "src/hydrogen-sce.h" 31 #include "src/hydrogen-sce.h"
32 #include "src/hydrogen-store-elimination.h" 32 #include "src/hydrogen-store-elimination.h"
33 #include "src/hydrogen-uint32-analysis.h" 33 #include "src/hydrogen-uint32-analysis.h"
34 #include "src/ic/call-optimization.h" 34 #include "src/ic/call-optimization.h"
35 #include "src/ic/ic.h" 35 #include "src/ic/ic.h"
36 // GetRootConstructor 36 // GetRootConstructor
37 #include "src/ic/ic-inl.h" 37 #include "src/ic/ic-inl.h"
38 #include "src/isolate-inl.h"
38 #include "src/lithium-allocator.h" 39 #include "src/lithium-allocator.h"
39 #include "src/parser.h" 40 #include "src/parser.h"
40 #include "src/runtime/runtime.h" 41 #include "src/runtime/runtime.h"
41 #include "src/scopeinfo.h" 42 #include "src/scopeinfo.h"
42 #include "src/typing.h" 43 #include "src/typing.h"
43 44
44 #if V8_TARGET_ARCH_IA32 45 #if V8_TARGET_ARCH_IA32
45 #include "src/ia32/lithium-codegen-ia32.h" // NOLINT 46 #include "src/ia32/lithium-codegen-ia32.h" // NOLINT
46 #elif V8_TARGET_ARCH_X64 47 #elif V8_TARGET_ARCH_X64
47 #include "src/x64/lithium-codegen-x64.h" // NOLINT 48 #include "src/x64/lithium-codegen-x64.h" // NOLINT
(...skipping 13406 matching lines...) Expand 10 before | Expand all | Expand 10 after
13454 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); 13455 isolate()->GetHTracer()->TraceHydrogen(name(), graph_);
13455 } 13456 }
13456 13457
13457 #ifdef DEBUG 13458 #ifdef DEBUG
13458 graph_->Verify(false); // No full verify. 13459 graph_->Verify(false); // No full verify.
13459 #endif 13460 #endif
13460 } 13461 }
13461 13462
13462 } // namespace internal 13463 } // namespace internal
13463 } // namespace v8 13464 } // namespace v8
OLDNEW
« no previous file with comments | « src/heap/memory-reducer.cc ('k') | src/ic/arm/handler-compiler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698