/* * 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 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 { public: bool isMachineCheckFault() {return true;} }; class NonMaskableInterrupt : public MipsFault { public: bool isNonMaskableInterrupt() {return true;} }; class AddressErrorFault : public MipsFault { public: AddressErrorFault(Addr vaddr) { badVAddr = vaddr; } #if FULL_SYSTEM void invoke(ThreadContext * tc, StaticInstPtr inst = StaticInst::nullStaticInstPtr); #endif }; class StoreAddressErrorFault : public MipsFault { 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 { public: void invoke(ThreadContext * tc, StaticInstPtr inst = StaticInst::nullStaticInstPtr); }; class SystemCallFault : public MipsFault { public: #if FULL_SYSTEM void invoke(ThreadContext * tc, StaticInstPtr inst = StaticInst::nullStaticInstPtr); #endif }; class SoftResetFault : public MipsFault { public: void invoke(ThreadContext * tc, StaticInstPtr inst = StaticInst::nullStaticInstPtr); }; class CoprocessorUnusableFault : public MipsFault { protected: int coProcID; public: CoprocessorUnusableFault(int _procid) : coProcID(_procid) {} void invoke(ThreadContext * tc, StaticInstPtr inst = StaticInst::nullStaticInstPtr); }; class ReservedInstructionFault : public MipsFault { public: void invoke(ThreadContext * tc, StaticInstPtr inst = StaticInst::nullStaticInstPtr); }; class ThreadFault : public MipsFault { public: void invoke(ThreadContext * tc, StaticInstPtr inst = StaticInst::nullStaticInstPtr); }; class IntegerOverflowFault : public MipsFault { protected: bool skipFaultingInstruction() {return true;} public: #if FULL_SYSTEM void invoke(ThreadContext * tc, StaticInstPtr inst = StaticInst::nullStaticInstPtr); #endif }; class InterruptFault : public MipsFault { protected: bool setRestartAddress() {return false;} public: #if FULL_SYSTEM void invoke(ThreadContext * tc, StaticInstPtr inst = StaticInst::nullStaticInstPtr); #endif }; class TrapFault : public MipsFault { public: #if FULL_SYSTEM void invoke(ThreadContext * tc, StaticInstPtr inst = StaticInst::nullStaticInstPtr); #endif }; class BreakpointFault : public MipsFault { public: #if FULL_SYSTEM void invoke(ThreadContext * tc, StaticInstPtr inst = StaticInst::nullStaticInstPtr); #endif }; class ItbRefillFault : public MipsFault { 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 { 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 { 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 { 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 { 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 { public: void invoke(ThreadContext * tc, StaticInstPtr inst = StaticInst::nullStaticInstPtr); }; } // namespace MipsISA #endif // __MIPS_FAULTS_HH__