Index: src/mips/constants-mips.h |
diff --git a/src/mips/constants-mips.h b/src/mips/constants-mips.h |
index 1e438eea066003828688b6ae20791084cec30dac..f50a84927af4eeab18aa718f4bfa0023faa1a9ee 100644 |
--- a/src/mips/constants-mips.h |
+++ b/src/mips/constants-mips.h |
@@ -108,6 +108,19 @@ const uint32_t kHoleNanLower32Offset = 4; |
(CpuFeatures::IsSupported(static_cast<CpuFeature>(check))) |
#endif |
+#if defined(V8_TARGET_LITTLE_ENDIAN) |
+const uint32_t kMipsLwrOffset = 0; |
+const uint32_t kMipsLwlOffset = 3; |
+const uint32_t kMipsSwrOffset = 0; |
+const uint32_t kMipsSwlOffset = 3; |
+#elif defined(V8_TARGET_BIG_ENDIAN) |
+const uint32_t kMipsLwrOffset = 3; |
+const uint32_t kMipsLwlOffset = 0; |
+const uint32_t kMipsSwrOffset = 3; |
+const uint32_t kMipsSwlOffset = 0; |
+#else |
+#error Unknown endianness |
+#endif |
#define __STDC_FORMAT_MACROS |
#include <inttypes.h> |