faults.cc (10823:64cd1dcd61a5) | faults.cc (11793:ef606668d247) |
---|---|
1/* 2 * Copyright (c) 2003-2005 The Regents of The University of Michigan 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions are 7 * met: redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer; --- 15 unchanged lines hidden (view full) --- 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 * 28 * Authors: Gabe Black 29 * Kevin Lim 30 */ 31 | 1/* 2 * Copyright (c) 2003-2005 The Regents of The University of Michigan 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions are 7 * met: redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer; --- 15 unchanged lines hidden (view full) --- 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 * 28 * Authors: Gabe Black 29 * Kevin Lim 30 */ 31 |
32#include "arch/alpha/ev5.hh" | |
33#include "arch/alpha/faults.hh" | 32#include "arch/alpha/faults.hh" |
33 34#include "arch/alpha/ev5.hh" |
|
34#include "arch/alpha/tlb.hh" 35#include "base/trace.hh" 36#include "cpu/base.hh" 37#include "cpu/thread_context.hh" 38#include "mem/page_table.hh" | 35#include "arch/alpha/tlb.hh" 36#include "base/trace.hh" 37#include "cpu/base.hh" 38#include "cpu/thread_context.hh" 39#include "mem/page_table.hh" |
39#include "sim/process.hh" | |
40#include "sim/full_system.hh" | 40#include "sim/full_system.hh" |
41#include "sim/process.hh" |
|
41 42namespace AlphaISA { 43 44FaultName MachineCheckFault::_name = "mchk"; 45FaultVect MachineCheckFault::_vect = 0x0401; 46FaultStat MachineCheckFault::_count; 47 48FaultName AlignmentFault::_name = "unalign"; --- 176 unchanged lines hidden --- | 42 43namespace AlphaISA { 44 45FaultName MachineCheckFault::_name = "mchk"; 46FaultVect MachineCheckFault::_vect = 0x0401; 47FaultStat MachineCheckFault::_count; 48 49FaultName AlignmentFault::_name = "unalign"; --- 176 unchanged lines hidden --- |