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

Side by Side Diff: src/hydrogen.cc

Issue 480413008: Move PropertyAccessCompiler and CallOptimization to their own files (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 | « BUILD.gn ('k') | src/ic/access-compiler.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/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 16 matching lines...) Expand all
27 #include "src/hydrogen-mark-deoptimize.h" 27 #include "src/hydrogen-mark-deoptimize.h"
28 #include "src/hydrogen-mark-unreachable.h" 28 #include "src/hydrogen-mark-unreachable.h"
29 #include "src/hydrogen-osr.h" 29 #include "src/hydrogen-osr.h"
30 #include "src/hydrogen-range-analysis.h" 30 #include "src/hydrogen-range-analysis.h"
31 #include "src/hydrogen-redundant-phi.h" 31 #include "src/hydrogen-redundant-phi.h"
32 #include "src/hydrogen-removable-simulates.h" 32 #include "src/hydrogen-removable-simulates.h"
33 #include "src/hydrogen-representation-changes.h" 33 #include "src/hydrogen-representation-changes.h"
34 #include "src/hydrogen-sce.h" 34 #include "src/hydrogen-sce.h"
35 #include "src/hydrogen-store-elimination.h" 35 #include "src/hydrogen-store-elimination.h"
36 #include "src/hydrogen-uint32-analysis.h" 36 #include "src/hydrogen-uint32-analysis.h"
37 #include "src/ic/call-optimization.h"
38 // GetRootConstructor
39 #include "src/ic/ic-inl.h"
37 #include "src/lithium-allocator.h" 40 #include "src/lithium-allocator.h"
38 #include "src/parser.h" 41 #include "src/parser.h"
39 #include "src/runtime.h" 42 #include "src/runtime.h"
40 #include "src/scopeinfo.h" 43 #include "src/scopeinfo.h"
41 #include "src/scopes.h" 44 #include "src/scopes.h"
42 #include "src/typing.h" 45 #include "src/typing.h"
43 // CallOptimization
44 #include "src/ic/ic-compiler.h"
45 // GetRootConstructor
46 #include "src/ic/ic-inl.h"
47 46
48 #if V8_TARGET_ARCH_IA32 47 #if V8_TARGET_ARCH_IA32
49 #include "src/ia32/lithium-codegen-ia32.h" // NOLINT 48 #include "src/ia32/lithium-codegen-ia32.h" // NOLINT
50 #elif V8_TARGET_ARCH_X64 49 #elif V8_TARGET_ARCH_X64
51 #include "src/x64/lithium-codegen-x64.h" // NOLINT 50 #include "src/x64/lithium-codegen-x64.h" // NOLINT
52 #elif V8_TARGET_ARCH_ARM64 51 #elif V8_TARGET_ARCH_ARM64
53 #include "src/arm64/lithium-codegen-arm64.h" // NOLINT 52 #include "src/arm64/lithium-codegen-arm64.h" // NOLINT
54 #elif V8_TARGET_ARCH_ARM 53 #elif V8_TARGET_ARCH_ARM
55 #include "src/arm/lithium-codegen-arm.h" // NOLINT 54 #include "src/arm/lithium-codegen-arm.h" // NOLINT
56 #elif V8_TARGET_ARCH_MIPS 55 #elif V8_TARGET_ARCH_MIPS
(...skipping 12436 matching lines...) Expand 10 before | Expand all | Expand 10 after
12493 if (ShouldProduceTraceOutput()) { 12492 if (ShouldProduceTraceOutput()) {
12494 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); 12493 isolate()->GetHTracer()->TraceHydrogen(name(), graph_);
12495 } 12494 }
12496 12495
12497 #ifdef DEBUG 12496 #ifdef DEBUG
12498 graph_->Verify(false); // No full verify. 12497 graph_->Verify(false); // No full verify.
12499 #endif 12498 #endif
12500 } 12499 }
12501 12500
12502 } } // namespace v8::internal 12501 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/ic/access-compiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698