Index: src/crankshaft/hydrogen-instructions.cc |
diff --git a/src/hydrogen-instructions.cc b/src/crankshaft/hydrogen-instructions.cc |
similarity index 99% |
rename from src/hydrogen-instructions.cc |
rename to src/crankshaft/hydrogen-instructions.cc |
index 4482155fbead2242b6785ad60ddd8d5d8729c731..cd5a56370d9795f3d36c7d5c0e47ea6e04f06ae5 100644 |
--- a/src/hydrogen-instructions.cc |
+++ b/src/crankshaft/hydrogen-instructions.cc |
@@ -2,36 +2,35 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "src/hydrogen-instructions.h" |
+#include "src/crankshaft/hydrogen-instructions.h" |
#include "src/base/bits.h" |
+#include "src/base/safe_math.h" |
+#include "src/crankshaft/hydrogen-infer-representation.h" |
#include "src/double.h" |
#include "src/elements.h" |
#include "src/factory.h" |
-#include "src/hydrogen-infer-representation.h" |
#if V8_TARGET_ARCH_IA32 |
-#include "src/ia32/lithium-ia32.h" // NOLINT |
+#include "src/crankshaft/ia32/lithium-ia32.h" // NOLINT |
#elif V8_TARGET_ARCH_X64 |
-#include "src/x64/lithium-x64.h" // NOLINT |
+#include "src/crankshaft/x64/lithium-x64.h" // NOLINT |
#elif V8_TARGET_ARCH_ARM64 |
-#include "src/arm64/lithium-arm64.h" // NOLINT |
+#include "src/crankshaft/arm64/lithium-arm64.h" // NOLINT |
#elif V8_TARGET_ARCH_ARM |
-#include "src/arm/lithium-arm.h" // NOLINT |
+#include "src/crankshaft/arm/lithium-arm.h" // NOLINT |
#elif V8_TARGET_ARCH_PPC |
-#include "src/ppc/lithium-ppc.h" // NOLINT |
+#include "src/crankshaft/ppc/lithium-ppc.h" // NOLINT |
#elif V8_TARGET_ARCH_MIPS |
-#include "src/mips/lithium-mips.h" // NOLINT |
+#include "src/crankshaft/mips/lithium-mips.h" // NOLINT |
#elif V8_TARGET_ARCH_MIPS64 |
-#include "src/mips64/lithium-mips64.h" // NOLINT |
+#include "src/crankshaft/mips64/lithium-mips64.h" // NOLINT |
#elif V8_TARGET_ARCH_X87 |
-#include "src/x87/lithium-x87.h" // NOLINT |
+#include "src/crankshaft/x87/lithium-x87.h" // NOLINT |
#else |
#error Unsupported target architecture. |
#endif |
-#include "src/base/safe_math.h" |
- |
namespace v8 { |
namespace internal { |