| 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 21 matching lines...) Expand all Loading... |
| 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/lithium-allocator.h" | 37 #include "src/lithium-allocator.h" |
| 38 #include "src/parser.h" | 38 #include "src/parser.h" |
| 39 #include "src/runtime.h" | 39 #include "src/runtime.h" |
| 40 #include "src/scopeinfo.h" | 40 #include "src/scopeinfo.h" |
| 41 #include "src/scopes.h" | 41 #include "src/scopes.h" |
| 42 #include "src/stub-cache.h" | |
| 43 #include "src/typing.h" | 42 #include "src/typing.h" |
| 43 // CallOptimization |
| 44 #include "src/ic/ic-compiler.h" |
| 45 // GetRootConstructor |
| 46 #include "src/ic/ic-inl.h" |
| 44 | 47 |
| 45 #if V8_TARGET_ARCH_IA32 | 48 #if V8_TARGET_ARCH_IA32 |
| 46 #include "src/ia32/lithium-codegen-ia32.h" // NOLINT | 49 #include "src/ia32/lithium-codegen-ia32.h" // NOLINT |
| 47 #elif V8_TARGET_ARCH_X64 | 50 #elif V8_TARGET_ARCH_X64 |
| 48 #include "src/x64/lithium-codegen-x64.h" // NOLINT | 51 #include "src/x64/lithium-codegen-x64.h" // NOLINT |
| 49 #elif V8_TARGET_ARCH_ARM64 | 52 #elif V8_TARGET_ARCH_ARM64 |
| 50 #include "src/arm64/lithium-codegen-arm64.h" // NOLINT | 53 #include "src/arm64/lithium-codegen-arm64.h" // NOLINT |
| 51 #elif V8_TARGET_ARCH_ARM | 54 #elif V8_TARGET_ARCH_ARM |
| 52 #include "src/arm/lithium-codegen-arm.h" // NOLINT | 55 #include "src/arm/lithium-codegen-arm.h" // NOLINT |
| 53 #elif V8_TARGET_ARCH_MIPS | 56 #elif V8_TARGET_ARCH_MIPS |
| (...skipping 12436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12490 if (ShouldProduceTraceOutput()) { | 12493 if (ShouldProduceTraceOutput()) { |
| 12491 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); | 12494 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); |
| 12492 } | 12495 } |
| 12493 | 12496 |
| 12494 #ifdef DEBUG | 12497 #ifdef DEBUG |
| 12495 graph_->Verify(false); // No full verify. | 12498 graph_->Verify(false); // No full verify. |
| 12496 #endif | 12499 #endif |
| 12497 } | 12500 } |
| 12498 | 12501 |
| 12499 } } // namespace v8::internal | 12502 } } // namespace v8::internal |
| OLD | NEW |