2007-03-03 17:01:48 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 The Hewlett-Packard Development Company
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
2010-05-24 07:44:15 +02:00
|
|
|
* The license below extends only to copyright in the software and shall
|
|
|
|
* not be construed as granting a license to any other intellectual
|
|
|
|
* property including but not limited to intellectual property relating
|
|
|
|
* to a hardware implementation of the functionality of the software
|
|
|
|
* licensed hereunder. You may use the software subject to the license
|
|
|
|
* terms below provided that you ensure that this notice is replicated
|
|
|
|
* unmodified and in its entirety in all distributions of the software,
|
|
|
|
* modified or unmodified, in source code or in binary form.
|
2007-03-03 17:01:48 +01:00
|
|
|
*
|
2010-05-24 07:44:15 +02:00
|
|
|
* 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
|
2007-03-03 17:01:48 +01:00
|
|
|
* contributors may be used to endorse or promote products derived from
|
2010-05-24 07:44:15 +02:00
|
|
|
* this software without specific prior written permission.
|
2007-03-03 17:01:48 +01:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ARCH_X86_FAULTS_HH__
|
|
|
|
#define __ARCH_X86_FAULTS_HH__
|
|
|
|
|
2011-04-15 19:44:06 +02:00
|
|
|
#include <string>
|
|
|
|
|
2009-02-02 02:08:32 +01:00
|
|
|
#include "base/bitunion.hh"
|
2007-03-05 15:47:42 +01:00
|
|
|
#include "base/misc.hh"
|
2007-03-05 13:20:34 +01:00
|
|
|
#include "sim/faults.hh"
|
2009-04-09 07:21:27 +02:00
|
|
|
#include "sim/tlb.hh"
|
2007-03-03 17:01:48 +01:00
|
|
|
|
|
|
|
namespace X86ISA
|
|
|
|
{
|
2007-10-03 07:04:20 +02:00
|
|
|
// Base class for all x86 "faults" where faults is in the m5 sense
|
|
|
|
class X86FaultBase : public FaultBase
|
2007-03-05 13:20:34 +01:00
|
|
|
{
|
2007-04-10 19:13:26 +02:00
|
|
|
protected:
|
2007-10-03 07:04:20 +02:00
|
|
|
const char * faultName;
|
|
|
|
const char * mnem;
|
2009-02-02 02:03:11 +01:00
|
|
|
uint8_t vector;
|
2007-10-08 03:17:52 +02:00
|
|
|
uint64_t errorCode;
|
2007-10-03 07:04:20 +02:00
|
|
|
|
2007-10-08 03:17:52 +02:00
|
|
|
X86FaultBase(const char * _faultName, const char * _mnem,
|
2009-03-08 06:34:50 +01:00
|
|
|
const uint8_t _vector, uint64_t _errorCode = (uint64_t)-1)
|
|
|
|
: faultName(_faultName), mnem(_mnem),
|
|
|
|
vector(_vector), errorCode(_errorCode)
|
2007-10-03 07:04:20 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-07-21 03:24:46 +02:00
|
|
|
const char * name() const
|
2007-04-10 19:13:26 +02:00
|
|
|
{
|
2007-10-03 07:04:20 +02:00
|
|
|
return faultName;
|
2007-04-10 19:13:26 +02:00
|
|
|
}
|
|
|
|
|
2007-10-03 07:04:20 +02:00
|
|
|
virtual bool isBenign()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual const char * mnemonic() const
|
|
|
|
{
|
|
|
|
return mnem;
|
|
|
|
}
|
2008-10-13 08:00:28 +02:00
|
|
|
|
2009-02-02 02:09:08 +01:00
|
|
|
virtual bool isSoft()
|
2008-10-13 08:00:28 +02:00
|
|
|
{
|
2009-02-02 02:09:08 +01:00
|
|
|
return false;
|
2008-10-13 08:00:28 +02:00
|
|
|
}
|
2009-02-02 02:09:08 +01:00
|
|
|
|
2010-09-14 04:26:03 +02:00
|
|
|
void invoke(ThreadContext * tc,
|
|
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
2009-02-25 19:17:59 +01:00
|
|
|
|
|
|
|
virtual std::string describe() const;
|
2007-10-03 07:04:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// Base class for x86 faults which behave as if the underlying instruction
|
|
|
|
// didn't happen.
|
|
|
|
class X86Fault : public X86FaultBase
|
|
|
|
{
|
|
|
|
protected:
|
2007-10-08 03:17:52 +02:00
|
|
|
X86Fault(const char * name, const char * mnem,
|
2009-03-08 06:34:50 +01:00
|
|
|
const uint8_t vector, uint64_t _errorCode = (uint64_t)-1)
|
|
|
|
: X86FaultBase(name, mnem, vector, _errorCode)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Base class for x86 traps which behave as if the underlying instruction
|
|
|
|
// completed.
|
|
|
|
class X86Trap : public X86FaultBase
|
|
|
|
{
|
|
|
|
protected:
|
2007-10-08 03:17:52 +02:00
|
|
|
X86Trap(const char * name, const char * mnem,
|
2009-03-08 06:34:50 +01:00
|
|
|
const uint8_t vector, uint64_t _errorCode = (uint64_t)-1)
|
|
|
|
: X86FaultBase(name, mnem, vector, _errorCode)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
|
|
|
|
2010-09-14 04:26:03 +02:00
|
|
|
void invoke(ThreadContext * tc,
|
|
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
2007-10-03 07:04:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// Base class for x86 aborts which seem to be catastrophic failures.
|
|
|
|
class X86Abort : public X86FaultBase
|
|
|
|
{
|
|
|
|
protected:
|
2007-10-08 03:17:52 +02:00
|
|
|
X86Abort(const char * name, const char * mnem,
|
2009-03-08 06:34:50 +01:00
|
|
|
const uint8_t vector, uint64_t _errorCode = (uint64_t)-1)
|
|
|
|
: X86FaultBase(name, mnem, vector, _errorCode)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
|
|
|
|
2010-09-14 04:26:03 +02:00
|
|
|
void invoke(ThreadContext * tc,
|
|
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
2007-10-03 07:04:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// Base class for x86 interrupts.
|
|
|
|
class X86Interrupt : public X86FaultBase
|
|
|
|
{
|
|
|
|
protected:
|
2009-02-02 02:03:11 +01:00
|
|
|
X86Interrupt(const char * name, const char * mnem,
|
2009-03-08 06:34:50 +01:00
|
|
|
const uint8_t _vector, uint64_t _errorCode = (uint64_t)-1)
|
|
|
|
: X86FaultBase(name, mnem, _vector, _errorCode)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
2007-03-05 13:20:34 +01:00
|
|
|
};
|
2007-03-05 17:07:01 +01:00
|
|
|
|
2007-04-10 19:13:26 +02:00
|
|
|
class UnimpInstFault : public FaultBase
|
|
|
|
{
|
|
|
|
public:
|
2007-07-21 03:24:46 +02:00
|
|
|
const char * name() const
|
2007-04-10 19:13:26 +02:00
|
|
|
{
|
|
|
|
return "unimplemented_micro";
|
|
|
|
}
|
|
|
|
|
2010-09-14 04:26:03 +02:00
|
|
|
void invoke(ThreadContext * tc,
|
|
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr)
|
2007-04-10 19:13:26 +02:00
|
|
|
{
|
|
|
|
panic("Unimplemented instruction!");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2007-10-03 07:04:20 +02:00
|
|
|
// Below is a summary of the interrupt/exception information in the
|
|
|
|
// architecture manuals.
|
|
|
|
|
|
|
|
// Class | Type | vector | Cause | mnem
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
//Contrib Fault 0 Divide-by-Zero-Error #DE
|
|
|
|
//Benign Either 1 Debug #DB
|
|
|
|
//Benign Interrupt 2 Non-Maskable-Interrupt #NMI
|
|
|
|
//Benign Trap 3 Breakpoint #BP
|
|
|
|
//Benign Trap 4 Overflow #OF
|
|
|
|
//Benign Fault 5 Bound-Range #BR
|
|
|
|
//Benign Fault 6 Invalid-Opcode #UD
|
|
|
|
//Benign Fault 7 Device-Not-Available #NM
|
|
|
|
//Benign Abort 8 Double-Fault #DF
|
|
|
|
// 9 Coprocessor-Segment-Overrun
|
|
|
|
//Contrib Fault 10 Invalid-TSS #TS
|
|
|
|
//Contrib Fault 11 Segment-Not-Present #NP
|
|
|
|
//Contrib Fault 12 Stack #SS
|
|
|
|
//Contrib Fault 13 General-Protection #GP
|
|
|
|
//Either Fault 14 Page-Fault #PF
|
|
|
|
// 15 Reserved
|
|
|
|
//Benign Fault 16 x87 Floating-Point Exception Pending #MF
|
|
|
|
//Benign Fault 17 Alignment-Check #AC
|
|
|
|
//Benign Abort 18 Machine-Check #MC
|
|
|
|
//Benign Fault 19 SIMD Floating-Point #XF
|
|
|
|
// 20-29 Reserved
|
|
|
|
//Contrib ? 30 Security Exception #SX
|
|
|
|
// 31 Reserved
|
|
|
|
//Benign Interrupt 0-255 External Interrupts #INTR
|
|
|
|
//Benign Interrupt 0-255 Software Interrupts INTn
|
|
|
|
|
|
|
|
class DivideByZero : public X86Fault
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DivideByZero() :
|
2009-02-02 02:03:11 +01:00
|
|
|
X86Fault("Divide-by-Zero-Error", "#DE", 0)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
class DebugException : public X86FaultBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DebugException() :
|
2009-02-02 02:03:11 +01:00
|
|
|
X86FaultBase("Debug", "#DB", 1)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
class NonMaskableInterrupt : public X86Interrupt
|
|
|
|
{
|
|
|
|
public:
|
2008-10-12 22:45:21 +02:00
|
|
|
NonMaskableInterrupt(uint8_t _vector) :
|
2009-02-02 02:03:11 +01:00
|
|
|
X86Interrupt("Non Maskable Interrupt", "#NMI", 2, _vector)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
class Breakpoint : public X86Trap
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Breakpoint() :
|
2009-02-02 02:03:11 +01:00
|
|
|
X86Trap("Breakpoint", "#BP", 3)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
class OverflowTrap : public X86Trap
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
OverflowTrap() :
|
2009-02-02 02:03:11 +01:00
|
|
|
X86Trap("Overflow", "#OF", 4)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
class BoundRange : public X86Fault
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
BoundRange() :
|
2009-02-02 02:03:11 +01:00
|
|
|
X86Fault("Bound-Range", "#BR", 5)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
class InvalidOpcode : public X86Fault
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
InvalidOpcode() :
|
2009-02-02 02:03:11 +01:00
|
|
|
X86Fault("Invalid-Opcode", "#UD", 6)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
2010-09-14 21:27:30 +02:00
|
|
|
|
|
|
|
void invoke(ThreadContext * tc,
|
|
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
2007-10-03 07:04:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class DeviceNotAvailable : public X86Fault
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DeviceNotAvailable() :
|
2009-02-02 02:03:11 +01:00
|
|
|
X86Fault("Device-Not-Available", "#NM", 7)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
class DoubleFault : public X86Abort
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DoubleFault() :
|
2009-02-02 02:08:32 +01:00
|
|
|
X86Abort("Double-Fault", "#DF", 8, 0)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
class InvalidTSS : public X86Fault
|
|
|
|
{
|
|
|
|
public:
|
2009-02-02 02:08:32 +01:00
|
|
|
InvalidTSS(uint32_t _errorCode) :
|
|
|
|
X86Fault("Invalid-TSS", "#TS", 10, _errorCode)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
class SegmentNotPresent : public X86Fault
|
|
|
|
{
|
|
|
|
public:
|
2009-02-02 02:08:32 +01:00
|
|
|
SegmentNotPresent(uint32_t _errorCode) :
|
|
|
|
X86Fault("Segment-Not-Present", "#NP", 11, _errorCode)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
class StackFault : public X86Fault
|
|
|
|
{
|
|
|
|
public:
|
2009-02-02 02:08:32 +01:00
|
|
|
StackFault(uint32_t _errorCode) :
|
|
|
|
X86Fault("Stack", "#SS", 12, _errorCode)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
class GeneralProtection : public X86Fault
|
|
|
|
{
|
|
|
|
public:
|
2009-02-02 02:08:32 +01:00
|
|
|
GeneralProtection(uint32_t _errorCode) :
|
2009-02-02 02:03:11 +01:00
|
|
|
X86Fault("General-Protection", "#GP", 13, _errorCode)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
class PageFault : public X86Fault
|
|
|
|
{
|
2009-02-02 02:08:32 +01:00
|
|
|
protected:
|
|
|
|
BitUnion32(PageFaultErrorCode)
|
|
|
|
Bitfield<0> present;
|
|
|
|
Bitfield<1> write;
|
|
|
|
Bitfield<2> user;
|
|
|
|
Bitfield<3> reserved;
|
|
|
|
Bitfield<4> fetch;
|
|
|
|
EndBitUnion(PageFaultErrorCode)
|
|
|
|
|
2009-02-02 02:09:08 +01:00
|
|
|
Addr addr;
|
|
|
|
|
2007-10-03 07:04:20 +02:00
|
|
|
public:
|
2009-02-02 02:09:08 +01:00
|
|
|
PageFault(Addr _addr, uint32_t _errorCode) :
|
|
|
|
X86Fault("Page-Fault", "#PF", 14, _errorCode), addr(_addr)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
2009-02-02 02:09:08 +01:00
|
|
|
|
2009-04-09 07:21:27 +02:00
|
|
|
PageFault(Addr _addr, bool present, BaseTLB::Mode mode,
|
|
|
|
bool user, bool reserved) :
|
2009-02-02 02:09:08 +01:00
|
|
|
X86Fault("Page-Fault", "#PF", 14, 0), addr(_addr)
|
2009-02-02 02:08:32 +01:00
|
|
|
{
|
|
|
|
PageFaultErrorCode code = 0;
|
|
|
|
code.present = present;
|
2009-04-09 07:21:27 +02:00
|
|
|
code.write = (mode == BaseTLB::Write);
|
2009-02-02 02:08:32 +01:00
|
|
|
code.user = user;
|
|
|
|
code.reserved = reserved;
|
2009-04-09 07:21:27 +02:00
|
|
|
code.fetch = (mode == BaseTLB::Execute);
|
2009-02-02 02:08:32 +01:00
|
|
|
errorCode = code;
|
|
|
|
}
|
2009-02-02 02:09:08 +01:00
|
|
|
|
2010-09-14 04:26:03 +02:00
|
|
|
void invoke(ThreadContext * tc,
|
|
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
2009-02-25 19:17:59 +01:00
|
|
|
|
|
|
|
virtual std::string describe() const;
|
2007-10-03 07:04:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class X87FpExceptionPending : public X86Fault
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
X87FpExceptionPending() :
|
2009-02-02 02:03:11 +01:00
|
|
|
X86Fault("x87 Floating-Point Exception Pending", "#MF", 16)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2008-10-12 22:29:26 +02:00
|
|
|
class AlignmentCheck : public X86Fault
|
2007-10-03 07:04:20 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
AlignmentCheck() :
|
2009-02-02 02:08:32 +01:00
|
|
|
X86Fault("Alignment-Check", "#AC", 17, 0)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2008-10-12 22:29:26 +02:00
|
|
|
class MachineCheck : public X86Abort
|
2007-10-03 07:04:20 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
MachineCheck() :
|
2009-02-02 02:03:11 +01:00
|
|
|
X86Abort("Machine-Check", "#MC", 18)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2008-10-12 22:29:26 +02:00
|
|
|
class SIMDFloatingPointFault : public X86Fault
|
2007-10-03 07:04:20 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
SIMDFloatingPointFault() :
|
2009-02-02 02:03:11 +01:00
|
|
|
X86Fault("SIMD Floating-Point", "#XF", 19)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2008-10-12 22:29:26 +02:00
|
|
|
class SecurityException : public X86FaultBase
|
2007-10-03 07:04:20 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
SecurityException() :
|
2009-02-02 02:03:11 +01:00
|
|
|
X86FaultBase("Security Exception", "#SX", 30)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2008-10-12 22:29:26 +02:00
|
|
|
class ExternalInterrupt : public X86Interrupt
|
2007-10-03 07:04:20 +02:00
|
|
|
{
|
|
|
|
public:
|
2008-10-12 22:44:24 +02:00
|
|
|
ExternalInterrupt(uint8_t _vector) :
|
2008-10-13 07:42:10 +02:00
|
|
|
X86Interrupt("External Interrupt", "#INTR", _vector)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2008-10-12 22:45:21 +02:00
|
|
|
class SystemManagementInterrupt : public X86Interrupt
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SystemManagementInterrupt() :
|
2008-10-13 07:42:10 +02:00
|
|
|
X86Interrupt("System Management Interrupt", "#SMI", 0)
|
2008-10-12 22:45:21 +02:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
class InitInterrupt : public X86Interrupt
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
InitInterrupt(uint8_t _vector) :
|
2008-10-13 07:42:10 +02:00
|
|
|
X86Interrupt("INIT Interrupt", "#INIT", _vector)
|
2008-10-12 22:45:21 +02:00
|
|
|
{}
|
2009-04-19 11:53:00 +02:00
|
|
|
|
2010-09-14 04:26:03 +02:00
|
|
|
void invoke(ThreadContext * tc,
|
|
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
2008-10-12 22:45:21 +02:00
|
|
|
};
|
|
|
|
|
2009-04-19 11:56:03 +02:00
|
|
|
class StartupInterrupt : public X86Interrupt
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
StartupInterrupt(uint8_t _vector) :
|
|
|
|
X86Interrupt("Startup Interrupt", "#SIPI", _vector)
|
|
|
|
{}
|
|
|
|
|
2010-09-14 04:26:03 +02:00
|
|
|
void invoke(ThreadContext * tc,
|
|
|
|
StaticInstPtr inst = StaticInst::nullStaticInstPtr);
|
2009-04-19 11:56:03 +02:00
|
|
|
};
|
|
|
|
|
2008-10-12 22:29:26 +02:00
|
|
|
class SoftwareInterrupt : public X86Interrupt
|
2007-10-03 07:04:20 +02:00
|
|
|
{
|
|
|
|
public:
|
2008-10-13 07:42:10 +02:00
|
|
|
SoftwareInterrupt(uint8_t _vector) :
|
2009-02-25 19:17:59 +01:00
|
|
|
X86Interrupt("Software Interrupt", "#INTR", _vector)
|
2007-10-03 07:04:20 +02:00
|
|
|
{}
|
2009-02-02 02:09:08 +01:00
|
|
|
|
|
|
|
bool isSoft()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2007-10-03 07:04:20 +02:00
|
|
|
};
|
2012-03-19 11:36:09 +01:00
|
|
|
}
|
2007-03-03 17:01:48 +01:00
|
|
|
|
|
|
|
#endif // __ARCH_X86_FAULTS_HH__
|