faults.cc (11793:ef606668d247) faults.cc (12110:c24ee249b8ba)
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;

--- 84 unchanged lines hidden (view full) ---

93FaultName UnimplementedOpcodeFault::_name = "opdec";
94FaultVect UnimplementedOpcodeFault::_vect = 0x0481;
95FaultStat UnimplementedOpcodeFault::_count;
96
97FaultName FloatEnableFault::_name = "fen";
98FaultVect FloatEnableFault::_vect = 0x0581;
99FaultStat FloatEnableFault::_count;
100
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;

--- 84 unchanged lines hidden (view full) ---

93FaultName UnimplementedOpcodeFault::_name = "opdec";
94FaultVect UnimplementedOpcodeFault::_vect = 0x0481;
95FaultStat UnimplementedOpcodeFault::_count;
96
97FaultName FloatEnableFault::_name = "fen";
98FaultVect FloatEnableFault::_vect = 0x0581;
99FaultStat FloatEnableFault::_count;
100
101/* We use the same fault vector, as for the guest system these should be the
102 * same, but for host purposes, having differentiation is helpful for
103 * debug/monitorization purposes. */
104FaultName VectorEnableFault::_name = "ven";
105FaultVect VectorEnableFault::_vect = 0x0581;
106FaultStat VectorEnableFault::_count;
107
101FaultName PalFault::_name = "pal";
102FaultVect PalFault::_vect = 0x2001;
103FaultStat PalFault::_count;
104
105FaultName IntegerOverflowFault::_name = "intover";
106FaultVect IntegerOverflowFault::_vect = 0x0501;
107FaultStat IntegerOverflowFault::_count;
108

--- 117 unchanged lines hidden ---
108FaultName PalFault::_name = "pal";
109FaultVect PalFault::_vect = 0x2001;
110FaultStat PalFault::_count;
111
112FaultName IntegerOverflowFault::_name = "intover";
113FaultVect IntegerOverflowFault::_vect = 0x0501;
114FaultStat IntegerOverflowFault::_count;
115

--- 117 unchanged lines hidden ---