OLD | NEW |
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 22 matching lines...) Expand all Loading... |
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" | 37 #include "src/ic/call-optimization.h" |
38 #include "src/ic/ic.h" | 38 #include "src/ic/ic.h" |
39 // GetRootConstructor | 39 // GetRootConstructor |
40 #include "src/ic/ic-inl.h" | 40 #include "src/ic/ic-inl.h" |
41 #include "src/lithium-allocator.h" | 41 #include "src/lithium-allocator.h" |
42 #include "src/parser.h" | 42 #include "src/parser.h" |
43 #include "src/runtime.h" | 43 #include "src/runtime/runtime.h" |
44 #include "src/scopeinfo.h" | 44 #include "src/scopeinfo.h" |
45 #include "src/scopes.h" | 45 #include "src/scopes.h" |
46 #include "src/typing.h" | 46 #include "src/typing.h" |
47 | 47 |
48 #if V8_TARGET_ARCH_IA32 | 48 #if V8_TARGET_ARCH_IA32 |
49 #include "src/ia32/lithium-codegen-ia32.h" // NOLINT | 49 #include "src/ia32/lithium-codegen-ia32.h" // NOLINT |
50 #elif V8_TARGET_ARCH_X64 | 50 #elif V8_TARGET_ARCH_X64 |
51 #include "src/x64/lithium-codegen-x64.h" // NOLINT | 51 #include "src/x64/lithium-codegen-x64.h" // NOLINT |
52 #elif V8_TARGET_ARCH_ARM64 | 52 #elif V8_TARGET_ARCH_ARM64 |
53 #include "src/arm64/lithium-codegen-arm64.h" // NOLINT | 53 #include "src/arm64/lithium-codegen-arm64.h" // NOLINT |
(...skipping 12463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
12517 if (ShouldProduceTraceOutput()) { | 12517 if (ShouldProduceTraceOutput()) { |
12518 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); | 12518 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); |
12519 } | 12519 } |
12520 | 12520 |
12521 #ifdef DEBUG | 12521 #ifdef DEBUG |
12522 graph_->Verify(false); // No full verify. | 12522 graph_->Verify(false); // No full verify. |
12523 #endif | 12523 #endif |
12524 } | 12524 } |
12525 | 12525 |
12526 } } // namespace v8::internal | 12526 } } // namespace v8::internal |
OLD | NEW |