/* * Copyright (c) 2003-2005 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: Gabe Black * Kevin Lim */ #ifndef __SPARC_FAULTS_HH__ #define __SPARC_FAULTS_HH__ #include "cpu/static_inst.hh" #include "sim/faults.hh" // The design of the "name" and "vect" functions is in sim/faults.hh namespace SparcISA { typedef uint32_t TrapType; typedef uint32_t FaultPriority; class ITB; class SparcFaultBase : public FaultBase { public: enum PrivilegeLevel { U, User = U, P, Privileged = P, H, Hyperprivileged = H, NumLevels, SH = -1, ShouldntHappen = SH }; using PrivilegeLevelSpec = std::array; struct FaultVals { const FaultName name; const TrapType trapType; const FaultPriority priority; const PrivilegeLevelSpec nextPrivilegeLevel; FaultStat count; FaultVals(const FaultName& name_, const TrapType& trapType_, const FaultPriority& priority_, const PrivilegeLevelSpec& il) : name(name_), trapType(trapType_), priority(priority_), nextPrivilegeLevel(il) {} }; void invoke(ThreadContext * tc, const StaticInstPtr &inst = StaticInst::nullStaticInstPtr); virtual TrapType trapType() = 0; virtual FaultPriority priority() = 0; virtual FaultStat & countStat() = 0; virtual PrivilegeLevel getNextLevel(PrivilegeLevel current) = 0; }; template class SparcFault : public SparcFaultBase { protected: static FaultVals vals; public: FaultName name() const { return vals.name; } TrapType trapType() { return vals.trapType; } FaultPriority priority() { return vals.priority; } FaultStat & countStat() { return vals.count; } PrivilegeLevel getNextLevel(PrivilegeLevel current) { return vals.nextPrivilegeLevel[current]; } }; class PowerOnReset : public SparcFault { void invoke(ThreadContext * tc, const StaticInstPtr &inst = StaticInst::nullStaticInstPtr); }; class WatchDogReset : public SparcFault {}; class ExternallyInitiatedReset : public SparcFault {}; class SoftwareInitiatedReset : public SparcFault {}; class REDStateException : public SparcFault {}; class StoreError : public SparcFault {}; class InstructionAccessException : public SparcFault {}; // class InstructionAccessMMUMiss : public SparcFault {}; class InstructionAccessError : public SparcFault {}; class IllegalInstruction : public SparcFault {}; class PrivilegedOpcode : public SparcFault {}; // class UnimplementedLDD : public SparcFault {}; // class UnimplementedSTD : public SparcFault {}; class FpDisabled : public SparcFault {}; class VecDisabled : public SparcFault {}; class FpExceptionIEEE754 : public SparcFault {}; class FpExceptionOther : public SparcFault {}; class TagOverflow : public SparcFault {}; class CleanWindow : public SparcFault {}; class DivisionByZero : public SparcFault {}; class InternalProcessorError : public SparcFault {}; class InstructionInvalidTSBEntry : public SparcFault {}; class DataInvalidTSBEntry : public SparcFault {}; class DataAccessException : public SparcFault {}; // class DataAccessMMUMiss : public SparcFault {}; class DataAccessError : public SparcFault {}; class DataAccessProtection : public SparcFault {}; class MemAddressNotAligned : public SparcFault {}; class LDDFMemAddressNotAligned : public SparcFault {}; class STDFMemAddressNotAligned : public SparcFault {}; class PrivilegedAction : public SparcFault {}; class LDQFMemAddressNotAligned : public SparcFault {}; class STQFMemAddressNotAligned : public SparcFault {}; class InstructionRealTranslationMiss : public SparcFault {}; class DataRealTranslationMiss : public SparcFault {}; // class AsyncDataError : public SparcFault {}; template class EnumeratedFault : public SparcFault { protected: uint32_t _n; public: EnumeratedFault(uint32_t n) : SparcFault(), _n(n) {} TrapType trapType() { return SparcFault::trapType() + _n; } }; class InterruptLevelN : public EnumeratedFault { public: InterruptLevelN(uint32_t n) : EnumeratedFault(n) {;} FaultPriority priority() { return 3200 - _n*100; } }; class HstickMatch : public SparcFault {}; class TrapLevelZero : public SparcFault {}; class InterruptVector : public SparcFault {}; class PAWatchpoint : public SparcFault {}; class VAWatchpoint : public SparcFault {}; class FastInstructionAccessMMUMiss : public SparcFault { protected: Addr vaddr; public: FastInstructionAccessMMUMiss(Addr addr) : vaddr(addr) {} FastInstructionAccessMMUMiss() : vaddr(0) {} void invoke(ThreadContext * tc, const StaticInstPtr &inst = StaticInst::nullStaticInstPtr); }; class FastDataAccessMMUMiss : public SparcFault { protected: Addr vaddr; public: FastDataAccessMMUMiss(Addr addr) : vaddr(addr) {} FastDataAccessMMUMiss() : vaddr(0) {} void invoke(ThreadContext * tc, const StaticInstPtr &inst = StaticInst::nullStaticInstPtr); }; class FastDataAccessProtection : public SparcFault {}; class InstructionBreakpoint : public SparcFault {}; class CpuMondo : public SparcFault {}; class DevMondo : public SparcFault {}; class ResumableError : public SparcFault {}; class SpillNNormal : public EnumeratedFault { public: SpillNNormal(uint32_t n) : EnumeratedFault(n) {;} // These need to be handled specially to enable spill traps in SE void invoke(ThreadContext * tc, const StaticInstPtr &inst = StaticInst::nullStaticInstPtr); }; class SpillNOther : public EnumeratedFault { public: SpillNOther(uint32_t n) : EnumeratedFault(n) {} }; class FillNNormal : public EnumeratedFault { public: FillNNormal(uint32_t n) : EnumeratedFault(n) {} // These need to be handled specially to enable fill traps in SE void invoke(ThreadContext * tc, const StaticInstPtr &inst = StaticInst::nullStaticInstPtr); }; class FillNOther : public EnumeratedFault { public: FillNOther(uint32_t n) : EnumeratedFault(n) {} }; class TrapInstruction : public EnumeratedFault { public: TrapInstruction(uint32_t n) : EnumeratedFault(n) {} // In SE, trap instructions are requesting services from the OS. void invoke(ThreadContext * tc, const StaticInstPtr &inst = StaticInst::nullStaticInstPtr); }; /* * Explicitly declare template static member variables to avoid warnings * in some clang versions */ template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; template<> SparcFaultBase::FaultVals SparcFault::vals; void enterREDState(ThreadContext *tc); void doREDFault(ThreadContext *tc, TrapType tt); void doNormalFault(ThreadContext *tc, TrapType tt, bool gotoHpriv); void getREDVector(MiscReg TT, Addr &PC, Addr &NPC); void getHyperVector(ThreadContext * tc, Addr &PC, Addr &NPC, MiscReg TT); void getPrivVector(ThreadContext *tc, Addr &PC, Addr &NPC, MiscReg TT, MiscReg TL); } // namespace SparcISA #endif // __SPARC_FAULTS_HH__