2011-11-11 13:48:14 +00:00
|
|
|
// Copyright 2011 the V8 project authors. All rights reserved.
|
2014-04-29 06:42:26 +00:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2018-02-02 12:05:19 +00:00
|
|
|
#ifndef V8_V8MEMORY_H_
|
|
|
|
#define V8_V8MEMORY_H_
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2018-08-01 09:45:25 +00:00
|
|
|
#include "src/globals.h"
|
|
|
|
|
2009-05-25 10:05:56 +00:00
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
// Memory provides an interface to 'raw' memory. It encapsulates the casts
|
|
|
|
// that typically are needed when incompatible pointer types are used.
|
2018-08-02 09:55:03 +00:00
|
|
|
// Note that this class currently relies on undefined behaviour. There is a
|
|
|
|
// proposal (http://wg21.link/p0593r2) to make it defined behaviour though.
|
2008-07-03 15:10:15 +00:00
|
|
|
class Memory {
|
|
|
|
public:
|
2010-08-30 08:54:43 +00:00
|
|
|
static uint8_t& uint8_at(Address addr) {
|
|
|
|
return *reinterpret_cast<uint8_t*>(addr);
|
|
|
|
}
|
|
|
|
|
2009-06-02 13:40:52 +00:00
|
|
|
static uint16_t& uint16_at(Address addr) {
|
|
|
|
return *reinterpret_cast<uint16_t*>(addr);
|
|
|
|
}
|
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
static uint32_t& uint32_at(Address addr) {
|
|
|
|
return *reinterpret_cast<uint32_t*>(addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int32_t& int32_at(Address addr) {
|
|
|
|
return *reinterpret_cast<int32_t*>(addr);
|
|
|
|
}
|
|
|
|
|
2009-05-28 09:18:17 +00:00
|
|
|
static uint64_t& uint64_at(Address addr) {
|
|
|
|
return *reinterpret_cast<uint64_t*>(addr);
|
|
|
|
}
|
|
|
|
|
2018-04-24 17:39:59 +00:00
|
|
|
static int64_t& int64_at(Address addr) {
|
|
|
|
return *reinterpret_cast<int64_t*>(addr);
|
|
|
|
}
|
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
static int& int_at(Address addr) {
|
|
|
|
return *reinterpret_cast<int*>(addr);
|
|
|
|
}
|
|
|
|
|
2011-11-11 13:48:14 +00:00
|
|
|
static unsigned& unsigned_at(Address addr) {
|
|
|
|
return *reinterpret_cast<unsigned*>(addr);
|
|
|
|
}
|
|
|
|
|
2013-05-08 08:08:23 +00:00
|
|
|
static intptr_t& intptr_at(Address addr) {
|
|
|
|
return *reinterpret_cast<intptr_t*>(addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static uintptr_t& uintptr_at(Address addr) {
|
|
|
|
return *reinterpret_cast<uintptr_t*>(addr);
|
|
|
|
}
|
|
|
|
|
2018-04-09 19:26:43 +00:00
|
|
|
static float& float_at(Address addr) {
|
|
|
|
return *reinterpret_cast<float*>(addr);
|
|
|
|
}
|
|
|
|
|
2010-12-07 11:31:57 +00:00
|
|
|
static double& double_at(Address addr) {
|
|
|
|
return *reinterpret_cast<double*>(addr);
|
|
|
|
}
|
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
static Address& Address_at(Address addr) {
|
|
|
|
return *reinterpret_cast<Address*>(addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Object*& Object_at(Address addr) {
|
|
|
|
return *reinterpret_cast<Object**>(addr);
|
|
|
|
}
|
2009-10-06 13:11:05 +00:00
|
|
|
|
|
|
|
static Handle<Object>& Object_Handle_at(Address addr) {
|
|
|
|
return *reinterpret_cast<Handle<Object>*>(addr);
|
|
|
|
}
|
2016-06-20 05:22:02 +00:00
|
|
|
|
|
|
|
static bool IsAddressInRange(Address base, Address address, uint32_t size) {
|
2018-04-13 22:28:05 +00:00
|
|
|
return base <= address && address < base + size;
|
2016-06-20 05:22:02 +00:00
|
|
|
}
|
2008-07-03 15:10:15 +00:00
|
|
|
};
|
|
|
|
|
2018-08-01 10:03:27 +00:00
|
|
|
template <typename V>
|
|
|
|
static inline V ReadUnalignedValue(Address p) {
|
|
|
|
ASSERT_TRIVIALLY_COPYABLE(V);
|
|
|
|
#if !(V8_TARGET_ARCH_MIPS || V8_TARGET_ARCH_MIPS64 || V8_TARGET_ARCH_ARM)
|
|
|
|
return *reinterpret_cast<const V*>(p);
|
|
|
|
#else // V8_TARGET_ARCH_MIPS || V8_TARGET_ARCH_MIPS64 || V8_TARGET_ARCH_ARM
|
|
|
|
V r;
|
|
|
|
memmove(&r, reinterpret_cast<void*>(p), sizeof(V));
|
|
|
|
return r;
|
|
|
|
#endif // V8_TARGET_ARCH_MIPS || V8_TARGET_ARCH_MIPS64 || V8_TARGET_ARCH_ARM
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename V>
|
|
|
|
static inline void WriteUnalignedValue(Address p, V value) {
|
|
|
|
ASSERT_TRIVIALLY_COPYABLE(V);
|
|
|
|
#if !(V8_TARGET_ARCH_MIPS || V8_TARGET_ARCH_MIPS64 || V8_TARGET_ARCH_ARM)
|
|
|
|
*(reinterpret_cast<V*>(p)) = value;
|
|
|
|
#else // V8_TARGET_ARCH_MIPS || V8_TARGET_ARCH_MIPS64 || V8_TARGET_ARCH_ARM
|
|
|
|
memmove(reinterpret_cast<void*>(p), &value, sizeof(V));
|
|
|
|
#endif // V8_TARGET_ARCH_MIPS || V8_TARGET_ARCH_MIPS64 || V8_TARGET_ARCH_ARM
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline double ReadFloatValue(Address p) {
|
|
|
|
return ReadUnalignedValue<float>(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline double ReadDoubleValue(Address p) {
|
|
|
|
return ReadUnalignedValue<double>(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void WriteDoubleValue(Address p, double value) {
|
|
|
|
WriteUnalignedValue(p, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint16_t ReadUnalignedUInt16(Address p) {
|
|
|
|
return ReadUnalignedValue<uint16_t>(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void WriteUnalignedUInt16(Address p, uint16_t value) {
|
|
|
|
WriteUnalignedValue(p, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint32_t ReadUnalignedUInt32(Address p) {
|
|
|
|
return ReadUnalignedValue<uint32_t>(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void WriteUnalignedUInt32(Address p, uint32_t value) {
|
|
|
|
WriteUnalignedValue(p, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename V>
|
|
|
|
static inline V ReadLittleEndianValue(Address p) {
|
|
|
|
#if defined(V8_TARGET_LITTLE_ENDIAN)
|
|
|
|
return ReadUnalignedValue<V>(p);
|
|
|
|
#elif defined(V8_TARGET_BIG_ENDIAN)
|
|
|
|
V ret{};
|
|
|
|
const byte* src = reinterpret_cast<const byte*>(p);
|
|
|
|
byte* dst = reinterpret_cast<byte*>(&ret);
|
|
|
|
for (size_t i = 0; i < sizeof(V); i++) {
|
|
|
|
dst[i] = src[sizeof(V) - i - 1];
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
#endif // V8_TARGET_LITTLE_ENDIAN
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename V>
|
|
|
|
static inline void WriteLittleEndianValue(Address p, V value) {
|
|
|
|
#if defined(V8_TARGET_LITTLE_ENDIAN)
|
|
|
|
WriteUnalignedValue<V>(p, value);
|
|
|
|
#elif defined(V8_TARGET_BIG_ENDIAN)
|
|
|
|
byte* src = reinterpret_cast<byte*>(&value);
|
|
|
|
byte* dst = reinterpret_cast<byte*>(p);
|
|
|
|
for (size_t i = 0; i < sizeof(V); i++) {
|
|
|
|
dst[i] = src[sizeof(V) - i - 1];
|
|
|
|
}
|
|
|
|
#endif // V8_TARGET_LITTLE_ENDIAN
|
|
|
|
}
|
|
|
|
|
2018-08-10 11:20:40 +00:00
|
|
|
template <typename V>
|
|
|
|
static inline V ReadLittleEndianValue(V* p) {
|
|
|
|
return ReadLittleEndianValue<V>(reinterpret_cast<Address>(p));
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename V>
|
|
|
|
static inline void WriteLittleEndianValue(V* p, V value) {
|
|
|
|
WriteLittleEndianValue<V>(reinterpret_cast<Address>(p), value);
|
|
|
|
}
|
|
|
|
|
2015-09-30 13:46:56 +00:00
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2018-02-02 12:05:19 +00:00
|
|
|
#endif // V8_V8MEMORY_H_
|