Index: src/hydrogen.cc |
diff --git a/src/hydrogen.cc b/src/hydrogen.cc |
index c836dc21653129de5d7255a3c8d8b2e9c63e71c0..c73277a56eeb6d95bdafffac727bc9ab8dd0b110 100644 |
--- a/src/hydrogen.cc |
+++ b/src/hydrogen.cc |
@@ -2,57 +2,57 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "hydrogen.h" |
+#include "src/hydrogen.h" |
#include <algorithm> |
-#include "v8.h" |
-#include "allocation-site-scopes.h" |
-#include "codegen.h" |
-#include "full-codegen.h" |
-#include "hashmap.h" |
-#include "hydrogen-bce.h" |
-#include "hydrogen-bch.h" |
-#include "hydrogen-canonicalize.h" |
-#include "hydrogen-check-elimination.h" |
-#include "hydrogen-dce.h" |
-#include "hydrogen-dehoist.h" |
-#include "hydrogen-environment-liveness.h" |
-#include "hydrogen-escape-analysis.h" |
-#include "hydrogen-infer-representation.h" |
-#include "hydrogen-infer-types.h" |
-#include "hydrogen-load-elimination.h" |
-#include "hydrogen-gvn.h" |
-#include "hydrogen-mark-deoptimize.h" |
-#include "hydrogen-mark-unreachable.h" |
-#include "hydrogen-osr.h" |
-#include "hydrogen-range-analysis.h" |
-#include "hydrogen-redundant-phi.h" |
-#include "hydrogen-removable-simulates.h" |
-#include "hydrogen-representation-changes.h" |
-#include "hydrogen-sce.h" |
-#include "hydrogen-store-elimination.h" |
-#include "hydrogen-uint32-analysis.h" |
-#include "lithium-allocator.h" |
-#include "parser.h" |
-#include "runtime.h" |
-#include "scopeinfo.h" |
-#include "scopes.h" |
-#include "stub-cache.h" |
-#include "typing.h" |
+#include "src/v8.h" |
+#include "src/allocation-site-scopes.h" |
+#include "src/codegen.h" |
+#include "src/full-codegen.h" |
+#include "src/hashmap.h" |
+#include "src/hydrogen-bce.h" |
+#include "src/hydrogen-bch.h" |
+#include "src/hydrogen-canonicalize.h" |
+#include "src/hydrogen-check-elimination.h" |
+#include "src/hydrogen-dce.h" |
+#include "src/hydrogen-dehoist.h" |
+#include "src/hydrogen-environment-liveness.h" |
+#include "src/hydrogen-escape-analysis.h" |
+#include "src/hydrogen-infer-representation.h" |
+#include "src/hydrogen-infer-types.h" |
+#include "src/hydrogen-load-elimination.h" |
+#include "src/hydrogen-gvn.h" |
+#include "src/hydrogen-mark-deoptimize.h" |
+#include "src/hydrogen-mark-unreachable.h" |
+#include "src/hydrogen-osr.h" |
+#include "src/hydrogen-range-analysis.h" |
+#include "src/hydrogen-redundant-phi.h" |
+#include "src/hydrogen-removable-simulates.h" |
+#include "src/hydrogen-representation-changes.h" |
+#include "src/hydrogen-sce.h" |
+#include "src/hydrogen-store-elimination.h" |
+#include "src/hydrogen-uint32-analysis.h" |
+#include "src/lithium-allocator.h" |
+#include "src/parser.h" |
+#include "src/runtime.h" |
+#include "src/scopeinfo.h" |
+#include "src/scopes.h" |
+#include "src/stub-cache.h" |
+#include "src/typing.h" |
#if V8_TARGET_ARCH_IA32 |
-#include "ia32/lithium-codegen-ia32.h" |
+#include "src/ia32/lithium-codegen-ia32.h" |
#elif V8_TARGET_ARCH_X64 |
-#include "x64/lithium-codegen-x64.h" |
+#include "src/x64/lithium-codegen-x64.h" |
#elif V8_TARGET_ARCH_ARM64 |
-#include "arm64/lithium-codegen-arm64.h" |
+#include "src/arm64/lithium-codegen-arm64.h" |
#elif V8_TARGET_ARCH_ARM |
-#include "arm/lithium-codegen-arm.h" |
+#include "src/arm/lithium-codegen-arm.h" |
#elif V8_TARGET_ARCH_MIPS |
-#include "mips/lithium-codegen-mips.h" |
+#include "src/mips/lithium-codegen-mips.h" |
#elif V8_TARGET_ARCH_X87 |
-#include "x87/lithium-codegen-x87.h" |
+#include "src/x87/lithium-codegen-x87.h" |
#else |
#error Unsupported target architecture. |
#endif |