// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. #ifndef RUNTIME_VM_MEMORY_REGION_H_ #define RUNTIME_VM_MEMORY_REGION_H_ #include "platform/assert.h" #include "vm/allocation.h" #include "vm/globals.h" namespace dart { // Memory regions are useful for accessing memory with bounds check in // debug mode. They can be safely passed by value and do not assume ownership // of the region. class MemoryRegion : public ValueObject { public: MemoryRegion() : pointer_(NULL), size_(0) {} MemoryRegion(void* pointer, uword size) : pointer_(pointer), size_(size) {} MemoryRegion(const MemoryRegion& other) : ValueObject() { *this = other; } MemoryRegion& operator=(const MemoryRegion& other) { pointer_ = other.pointer_; size_ = other.size_; return *this; } void* pointer() const { return pointer_; } uword size() const { return size_; } void set_size(uword new_size) { size_ = new_size; } uword start() const { return reinterpret_cast(pointer_); } uword end() const { return start() + size_; } template T Load(uword offset) const { return *ComputeInternalPointer(offset); } template void Store(uword offset, T value) const { *ComputeInternalPointer(offset) = value; } template T* PointerTo(uword offset) const { return ComputeInternalPointer(offset); } bool Contains(uword address) const { return (address >= start()) && (address < end()); } void CopyFrom(uword offset, const MemoryRegion& from) const; // Compute a sub memory region based on an existing one. void Subregion(const MemoryRegion& from, uword offset, uword size) { ASSERT(from.size() >= size); ASSERT(offset <= (from.size() - size)); pointer_ = reinterpret_cast(from.start() + offset); size_ = size; } // Compute an extended memory region based on an existing one. void Extend(const MemoryRegion& region, uword extra) { pointer_ = region.pointer(); size_ = (region.size() + extra); } private: template T* ComputeInternalPointer(uword offset) const { ASSERT(size() >= sizeof(T)); ASSERT(offset <= size() - sizeof(T)); return reinterpret_cast(start() + offset); } void* pointer_; uword size_; }; } // namespace dart #endif // RUNTIME_VM_MEMORY_REGION_H_