110c59b414
Get rid of Fault classes left over from when this file was copied from Alpha, and rename ArithmeticOverflowFault to be IntegerOverflowFault and get rid of the old IntegerOverflowFault stub. The Integer version is what's actually in the manual, but the Arithmetic version had the implementation.
304 lines
7.9 KiB
C++
304 lines
7.9 KiB
C++
/*
|
|
* Copyright (c) 2003-2005 The Regents of The University of Michigan
|
|
* Copyright (c) 2007 MIPS Technologies, Inc.
|
|
* 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: Gabe Black
|
|
* Korey Sewell
|
|
* Jaidev Patwardhan
|
|
*/
|
|
|
|
#ifndef __MIPS_FAULTS_HH__
|
|
#define __MIPS_FAULTS_HH__
|
|
|
|
#include "sim/faults.hh"
|
|
|
|
namespace MipsISA
|
|
{
|
|
|
|
typedef const Addr FaultVect;
|
|
|
|
class MipsFaultBase : public FaultBase
|
|
{
|
|
protected:
|
|
virtual bool skipFaultingInstruction() {return false;}
|
|
virtual bool setRestartAddress() {return true;}
|
|
public:
|
|
struct FaultVals
|
|
{
|
|
const FaultName name;
|
|
const FaultVect vect;
|
|
FaultStat count;
|
|
};
|
|
|
|
Addr badVAddr;
|
|
Addr entryHiAsid;
|
|
Addr entryHiVPN2;
|
|
Addr entryHiVPN2X;
|
|
Addr contextBadVPN2;
|
|
#if FULL_SYSTEM
|
|
void invoke(ThreadContext * tc,
|
|
StaticInst::StaticInstPtr inst = StaticInst::nullStaticInstPtr)
|
|
{}
|
|
void setExceptionState(ThreadContext *, uint8_t);
|
|
void setHandlerPC(Addr, ThreadContext *);
|
|
#endif
|
|
};
|
|
|
|
template <typename T>
|
|
class MipsFault : public MipsFaultBase
|
|
{
|
|
protected:
|
|
static FaultVals vals;
|
|
public:
|
|
FaultName name() const { return vals.name; }
|
|
FaultVect vect() const { return vals.vect; }
|
|
FaultStat & countStat() { return vals.count; }
|
|
};
|
|
|
|
class MachineCheckFault : public MipsFault<MachineCheckFault>
|
|
{
|
|
public:
|
|
bool isMachineCheckFault() {return true;}
|
|
};
|
|
|
|
class NonMaskableInterrupt : public MipsFault<NonMaskableInterrupt>
|
|
{
|
|
public:
|
|
bool isNonMaskableInterrupt() {return true;}
|
|
};
|
|
|
|
class AddressErrorFault : public MipsFault<AddressErrorFault>
|
|
{
|
|
public:
|
|
AddressErrorFault(Addr vaddr) { badVAddr = vaddr; }
|
|
#if FULL_SYSTEM
|
|
void invoke(ThreadContext * tc,
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
|
#endif
|
|
|
|
};
|
|
|
|
class StoreAddressErrorFault : public MipsFault<StoreAddressErrorFault>
|
|
{
|
|
public:
|
|
StoreAddressErrorFault(Addr vaddr) { badVAddr = vaddr; }
|
|
#if FULL_SYSTEM
|
|
void invoke(ThreadContext * tc,
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
|
#endif
|
|
};
|
|
|
|
static inline Fault genMachineCheckFault()
|
|
{
|
|
return new MachineCheckFault;
|
|
}
|
|
|
|
class ResetFault : public MipsFault<ResetFault>
|
|
{
|
|
public:
|
|
void invoke(ThreadContext * tc,
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
|
|
|
};
|
|
|
|
class SystemCallFault : public MipsFault<SystemCallFault>
|
|
{
|
|
public:
|
|
#if FULL_SYSTEM
|
|
void invoke(ThreadContext * tc,
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
|
#endif
|
|
};
|
|
|
|
class SoftResetFault : public MipsFault<SoftResetFault>
|
|
{
|
|
public:
|
|
void invoke(ThreadContext * tc,
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
|
};
|
|
|
|
class CoprocessorUnusableFault : public MipsFault<CoprocessorUnusableFault>
|
|
{
|
|
protected:
|
|
int coProcID;
|
|
public:
|
|
CoprocessorUnusableFault(int _procid) : coProcID(_procid)
|
|
{}
|
|
|
|
void invoke(ThreadContext * tc,
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
|
};
|
|
|
|
class ReservedInstructionFault : public MipsFault<ReservedInstructionFault>
|
|
{
|
|
public:
|
|
void invoke(ThreadContext * tc,
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
|
};
|
|
|
|
class ThreadFault : public MipsFault<ThreadFault>
|
|
{
|
|
public:
|
|
void invoke(ThreadContext * tc,
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
|
};
|
|
|
|
class IntegerOverflowFault : public MipsFault<IntegerOverflowFault>
|
|
{
|
|
protected:
|
|
bool skipFaultingInstruction() {return true;}
|
|
public:
|
|
#if FULL_SYSTEM
|
|
void invoke(ThreadContext * tc,
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
|
#endif
|
|
};
|
|
|
|
class InterruptFault : public MipsFault<InterruptFault>
|
|
{
|
|
protected:
|
|
bool setRestartAddress() {return false;}
|
|
public:
|
|
#if FULL_SYSTEM
|
|
void invoke(ThreadContext * tc,
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
|
#endif
|
|
};
|
|
|
|
class TrapFault : public MipsFault<TrapFault>
|
|
{
|
|
public:
|
|
#if FULL_SYSTEM
|
|
void invoke(ThreadContext * tc,
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
|
#endif
|
|
};
|
|
|
|
class BreakpointFault : public MipsFault<BreakpointFault>
|
|
{
|
|
public:
|
|
#if FULL_SYSTEM
|
|
void invoke(ThreadContext * tc,
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
|
#endif
|
|
};
|
|
|
|
class ItbRefillFault : public MipsFault<ItbRefillFault>
|
|
{
|
|
public:
|
|
ItbRefillFault(Addr asid, Addr vaddr, Addr vpn)
|
|
{
|
|
entryHiAsid = asid;
|
|
entryHiVPN2 = vpn >> 2;
|
|
entryHiVPN2X = vpn & 0x3;
|
|
badVAddr = vaddr;
|
|
contextBadVPN2 = vpn >> 2;
|
|
}
|
|
#if FULL_SYSTEM
|
|
void invoke(ThreadContext * tc,
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
|
#endif
|
|
};
|
|
|
|
class DtbRefillFault : public MipsFault<DtbRefillFault>
|
|
{
|
|
public:
|
|
DtbRefillFault(Addr asid, Addr vaddr, Addr vpn)
|
|
{
|
|
entryHiAsid = asid;
|
|
entryHiVPN2 = vpn >> 2;
|
|
entryHiVPN2X = vpn & 0x3;
|
|
badVAddr = vaddr;
|
|
contextBadVPN2 = vpn >> 2;
|
|
}
|
|
#if FULL_SYSTEM
|
|
void invoke(ThreadContext * tc,
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
|
#endif
|
|
};
|
|
|
|
class ItbInvalidFault : public MipsFault<ItbInvalidFault>
|
|
{
|
|
public:
|
|
ItbInvalidFault(Addr asid, Addr vaddr, Addr vpn)
|
|
{
|
|
entryHiAsid = asid;
|
|
entryHiVPN2 = vpn >> 2;
|
|
entryHiVPN2X = vpn & 0x3;
|
|
badVAddr = vaddr;
|
|
contextBadVPN2 = vpn >> 2;
|
|
}
|
|
#if FULL_SYSTEM
|
|
void invoke(ThreadContext * tc,
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
|
#endif
|
|
};
|
|
|
|
class TLBModifiedFault : public MipsFault<TLBModifiedFault>
|
|
{
|
|
public:
|
|
TLBModifiedFault(Addr asid, Addr vaddr, Addr vpn)
|
|
{
|
|
entryHiAsid = asid;
|
|
entryHiVPN2 = vpn >> 2;
|
|
entryHiVPN2X = vpn & 0x3;
|
|
badVAddr = vaddr;
|
|
contextBadVPN2 = vpn >> 2;
|
|
}
|
|
#if FULL_SYSTEM
|
|
void invoke(ThreadContext * tc,
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
|
#endif
|
|
};
|
|
|
|
class DtbInvalidFault : public MipsFault<DtbInvalidFault>
|
|
{
|
|
public:
|
|
DtbInvalidFault(Addr asid, Addr vaddr, Addr vpn)
|
|
{
|
|
entryHiAsid = asid;
|
|
entryHiVPN2 = vpn >> 2;
|
|
entryHiVPN2X = vpn & 0x3;
|
|
badVAddr = vaddr;
|
|
contextBadVPN2 = vpn >> 2;
|
|
}
|
|
#if FULL_SYSTEM
|
|
void invoke(ThreadContext * tc,
|
|
StaticInst::StaticInstPtr inst = nullStaticInstPtr);
|
|
#endif
|
|
};
|
|
|
|
class DspStateDisabledFault : public MipsFault<DspStateDisabledFault>
|
|
{
|
|
public:
|
|
void invoke(ThreadContext * tc,
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
|
};
|
|
|
|
} // namespace MipsISA
|
|
|
|
#endif // __MIPS_FAULTS_HH__
|