git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1040 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
81 lines
1.7 KiB
C++
81 lines
1.7 KiB
C++
#ifndef __MEMORYMAP_HPP__
|
|
#define __MEMORYMAP_HPP__
|
|
|
|
#ifdef BOOST_1_46_OR_NEWER
|
|
#include <boost/icl/interval_set.hpp>
|
|
using namespace boost::icl;
|
|
#endif
|
|
|
|
#include <set>
|
|
#include "SAL/SALConfig.hpp"
|
|
|
|
/**
|
|
* \class MemoryMap
|
|
* An efficient container for memory maps with holes.
|
|
*/
|
|
class MemoryMap
|
|
{
|
|
#ifdef BOOST_1_46_OR_NEWER
|
|
typedef interval<sal::address_t>::type address_interval;
|
|
typedef interval_set<sal::address_t>::type address_set;
|
|
|
|
address_set as;
|
|
public:
|
|
MemoryMap() {}
|
|
void clear() { as.clear(); }
|
|
void add(sal::address_t addr, int size) { as.add(address_interval(addr, addr+size-1)); }
|
|
void isMatching(sal::address_t addr, int size) { return intersects(as, address_interval(addr, addr+size-1)); }
|
|
#endif
|
|
std::set<sal::address_t> as;
|
|
public:
|
|
MemoryMap() {}
|
|
/**
|
|
* Clears the map.
|
|
*/
|
|
void clear() { as.clear(); }
|
|
|
|
/**
|
|
* Adds one or a sequence of addresses to the map.
|
|
*/
|
|
void add(sal::address_t addr, int size = 1)
|
|
{
|
|
for (int i = 0; i < size; ++i) {
|
|
as.insert(addr + i);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Determines whether a given memory access at address \a addr with width
|
|
* \a size hits the map.
|
|
*/
|
|
bool isMatching(sal::address_t addr, int size = 1)
|
|
{
|
|
for (int i = 0; i < size; ++i) {
|
|
if (as.find(addr + i) != as.end()) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* The (STL-style) iterator of this class used to iterate over all
|
|
* addresses in this map.
|
|
*/
|
|
typedef std::set<sal::address_t>::iterator iterator;
|
|
|
|
/**
|
|
* Returns an (STL-style) iterator to the beginning of the internal data
|
|
* structure.
|
|
*/
|
|
iterator begin() { return as.begin(); }
|
|
|
|
/**
|
|
* Returns an (STL-style) iterator to the end of the interal data
|
|
* structure.
|
|
*/
|
|
iterator end() { return as.end(); }
|
|
};
|
|
|
|
#endif
|