2006-11-23 07:42:57 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006 The Regents of The University of Michigan
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met: redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer;
|
|
|
|
* redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution;
|
|
|
|
* neither the name of the copyright holders nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* Authors: Ali Saidi
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ARCH_SPARC_TLB_MAP_HH__
|
|
|
|
#define __ARCH_SPARC_TLB_MAP_HH__
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2011-04-15 19:44:06 +02:00
|
|
|
#include "arch/sparc/pagetable.hh"
|
|
|
|
|
2006-11-23 07:42:57 +01:00
|
|
|
namespace SparcISA
|
|
|
|
{
|
|
|
|
|
|
|
|
class TlbMap
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
typedef std::map<TlbRange, TlbEntry*> RangeMap;
|
|
|
|
RangeMap tree;
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef RangeMap::iterator iterator;
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
iterator
|
|
|
|
find(const TlbRange &r)
|
2006-11-23 07:42:57 +01:00
|
|
|
{
|
|
|
|
iterator i;
|
|
|
|
|
|
|
|
i = tree.upper_bound(r);
|
|
|
|
|
2008-09-26 17:18:57 +02:00
|
|
|
if (i == tree.begin()) {
|
2006-12-12 23:55:27 +01:00
|
|
|
if (r.real == i->first.real &&
|
|
|
|
r.partitionId == i->first.partitionId &&
|
|
|
|
i->first.va < r.va + r.size &&
|
|
|
|
i->first.va+i->first.size >= r.va &&
|
|
|
|
(r.real || r.contextId == i->first.contextId))
|
|
|
|
return i;
|
|
|
|
else
|
|
|
|
// Nothing could match, so return end()
|
|
|
|
return tree.end();
|
2008-09-26 17:18:57 +02:00
|
|
|
}
|
2006-11-23 07:42:57 +01:00
|
|
|
|
|
|
|
i--;
|
|
|
|
|
|
|
|
if (r.real != i->first.real)
|
|
|
|
return tree.end();
|
|
|
|
if (!r.real && r.contextId != i->first.contextId)
|
|
|
|
return tree.end();
|
|
|
|
if (r.partitionId != i->first.partitionId)
|
|
|
|
return tree.end();
|
|
|
|
if (i->first.va <= r.va+r.size &&
|
|
|
|
i->first.va+i->first.size >= r.va)
|
|
|
|
return i;
|
|
|
|
|
|
|
|
return tree.end();
|
|
|
|
}
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
bool
|
|
|
|
intersect(const TlbRange &r)
|
2006-11-23 07:42:57 +01:00
|
|
|
{
|
|
|
|
iterator i;
|
|
|
|
i = find(r);
|
|
|
|
if (i != tree.end())
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
iterator
|
|
|
|
insert(TlbRange &r, TlbEntry *d)
|
2006-11-23 07:42:57 +01:00
|
|
|
{
|
|
|
|
if (intersect(r))
|
|
|
|
return tree.end();
|
|
|
|
|
|
|
|
return tree.insert(std::make_pair<TlbRange,TlbEntry*>(r, d)).first;
|
|
|
|
}
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
size_t
|
|
|
|
erase(TlbRange k)
|
2006-11-23 07:42:57 +01:00
|
|
|
{
|
|
|
|
return tree.erase(k);
|
|
|
|
}
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
void
|
|
|
|
erase(iterator p)
|
2006-11-23 07:42:57 +01:00
|
|
|
{
|
|
|
|
tree.erase(p);
|
|
|
|
}
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
void
|
|
|
|
erase(iterator p, iterator q)
|
2006-11-23 07:42:57 +01:00
|
|
|
{
|
|
|
|
tree.erase(p,q);
|
|
|
|
}
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
void
|
|
|
|
clear()
|
2006-11-23 07:42:57 +01:00
|
|
|
{
|
|
|
|
tree.erase(tree.begin(), tree.end());
|
|
|
|
}
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
iterator
|
|
|
|
begin()
|
2006-11-23 07:42:57 +01:00
|
|
|
{
|
|
|
|
return tree.begin();
|
|
|
|
}
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
iterator
|
|
|
|
end()
|
2006-11-23 07:42:57 +01:00
|
|
|
{
|
|
|
|
return tree.end();
|
|
|
|
}
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
size_t
|
|
|
|
size()
|
2006-11-23 07:42:57 +01:00
|
|
|
{
|
|
|
|
return tree.size();
|
|
|
|
}
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
bool
|
|
|
|
empty()
|
2006-11-23 07:42:57 +01:00
|
|
|
{
|
|
|
|
return tree.empty();
|
|
|
|
}
|
2007-01-25 19:43:46 +01:00
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
void
|
|
|
|
print()
|
2007-01-25 19:43:46 +01:00
|
|
|
{
|
|
|
|
iterator i;
|
|
|
|
i = tree.begin();
|
|
|
|
while (i != tree.end()) {
|
|
|
|
std::cout << std::hex << i->first.va << " " << i->first.size << " " <<
|
|
|
|
i->first.contextId << " " << i->first.partitionId << " " <<
|
|
|
|
i->first.real << " " << i->second << std::endl;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-23 07:42:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __ARCH_SPARC_TLB_MAP_HH__
|