| 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 <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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |