2004-05-13 14:08:42 +02:00
|
|
|
/*
|
2005-06-05 11:16:00 +02:00
|
|
|
* Copyright (c) 2004-2005 The Regents of The University of Michigan
|
2004-05-13 14:08:42 +02:00
|
|
|
* 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.
|
2006-06-01 01:26:56 +02:00
|
|
|
*
|
|
|
|
* Authors: Nathan Binkert
|
2004-05-13 14:08:42 +02:00
|
|
|
*/
|
|
|
|
|
2005-01-15 00:34:56 +01:00
|
|
|
#ifndef __ARCH_ALPHA_VPTR_HH__
|
|
|
|
#define __ARCH_ALPHA_VPTR_HH__
|
2004-05-13 14:08:42 +02:00
|
|
|
|
2006-02-27 11:35:43 +01:00
|
|
|
#include "arch/vtophys.hh"
|
2006-02-12 18:40:58 +01:00
|
|
|
#include "arch/isa_traits.hh"
|
2007-10-31 06:21:54 +01:00
|
|
|
#include "mem/vport.hh"
|
2004-05-13 14:08:42 +02:00
|
|
|
|
2006-06-06 23:32:21 +02:00
|
|
|
class ThreadContext;
|
2004-05-13 14:08:42 +02:00
|
|
|
|
|
|
|
template <class T>
|
|
|
|
class VPtr
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef T Type;
|
|
|
|
|
2007-10-31 06:21:54 +01:00
|
|
|
protected:
|
2006-06-06 23:32:21 +02:00
|
|
|
ThreadContext *tc;
|
2004-05-13 14:08:42 +02:00
|
|
|
Addr ptr;
|
2007-10-31 06:21:54 +01:00
|
|
|
Addr buffer[(sizeof(T)-1)/sizeof(Addr) + 1];
|
2004-05-13 14:08:42 +02:00
|
|
|
|
|
|
|
public:
|
2007-10-31 06:21:54 +01:00
|
|
|
explicit VPtr(ThreadContext *_tc, Addr p = 0)
|
|
|
|
: tc(_tc), ptr(p)
|
|
|
|
{
|
|
|
|
refresh();
|
|
|
|
}
|
2004-05-13 14:08:42 +02:00
|
|
|
|
|
|
|
template <class U>
|
2007-10-31 06:21:54 +01:00
|
|
|
VPtr(const VPtr<U> &vp)
|
|
|
|
: tc(vp.tc), ptr(vp.ptr)
|
|
|
|
{
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
~VPtr()
|
|
|
|
{}
|
2004-05-13 14:08:42 +02:00
|
|
|
|
2007-10-31 06:21:54 +01:00
|
|
|
void
|
|
|
|
refresh()
|
2004-05-13 14:08:42 +02:00
|
|
|
{
|
2007-10-31 06:21:54 +01:00
|
|
|
if (!ptr)
|
|
|
|
return;
|
|
|
|
|
2008-07-01 16:24:19 +02:00
|
|
|
VirtualPort *port = tc->getVirtPort();
|
2007-10-31 06:21:54 +01:00
|
|
|
port->readBlob(ptr, buffer, sizeof(T));
|
2004-05-13 14:08:42 +02:00
|
|
|
}
|
|
|
|
|
2007-10-31 06:21:54 +01:00
|
|
|
bool
|
|
|
|
operator!() const
|
2004-05-13 14:08:42 +02:00
|
|
|
{
|
2007-10-31 06:21:54 +01:00
|
|
|
return ptr == 0;
|
|
|
|
}
|
2004-05-13 14:08:42 +02:00
|
|
|
|
2007-10-31 06:21:54 +01:00
|
|
|
VPtr<T>
|
|
|
|
operator+(int offset)
|
|
|
|
{
|
|
|
|
return VPtr<T>(tc, ptr + offset);
|
2004-05-13 14:08:42 +02:00
|
|
|
}
|
|
|
|
|
2007-10-31 06:21:54 +01:00
|
|
|
const VPtr<T> &
|
|
|
|
operator+=(int offset)
|
2004-05-13 14:08:42 +02:00
|
|
|
{
|
|
|
|
ptr += offset;
|
2007-10-31 06:21:54 +01:00
|
|
|
refresh();
|
2004-05-13 14:08:42 +02:00
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2007-10-31 06:21:54 +01:00
|
|
|
const VPtr<T> &
|
|
|
|
operator=(Addr p)
|
2004-05-13 14:08:42 +02:00
|
|
|
{
|
|
|
|
ptr = p;
|
2007-10-31 06:21:54 +01:00
|
|
|
refresh();
|
2004-05-13 14:08:42 +02:00
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class U>
|
2007-10-31 06:21:54 +01:00
|
|
|
const VPtr<T> &
|
|
|
|
operator=(const VPtr<U> &vp)
|
2004-05-13 14:08:42 +02:00
|
|
|
{
|
2007-10-31 06:21:54 +01:00
|
|
|
tc = vp.tc;
|
|
|
|
ptr = vp.ptr;
|
|
|
|
refresh();
|
2004-05-13 14:08:42 +02:00
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
operator T *()
|
|
|
|
{
|
2007-10-31 06:21:54 +01:00
|
|
|
return (T *)buffer;
|
2004-05-13 14:08:42 +02:00
|
|
|
}
|
|
|
|
|
2007-10-31 06:21:54 +01:00
|
|
|
T *
|
|
|
|
operator->()
|
2004-05-13 14:08:42 +02:00
|
|
|
{
|
2007-10-31 06:21:54 +01:00
|
|
|
return (T *)buffer;
|
2004-05-13 14:08:42 +02:00
|
|
|
}
|
|
|
|
|
2007-10-31 06:21:54 +01:00
|
|
|
T &
|
|
|
|
operator*()
|
2004-05-13 14:08:42 +02:00
|
|
|
{
|
2007-10-31 06:21:54 +01:00
|
|
|
return *(T *)buffer;
|
2004-05-13 14:08:42 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2005-01-15 00:34:56 +01:00
|
|
|
#endif // __ARCH_ALPHA_VPTR_HH__
|