faults.hh (8229:78bf55f23338) faults.hh (8518:9c87727099ce)
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

252};
253
254
255static inline Fault genMachineCheckFault()
256{
257 return new Reset();
258}
259
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

252};
253
254
255static inline Fault genMachineCheckFault()
256{
257 return new Reset();
258}
259
260// A fault that flushes the pipe, excluding the faulting instructions
261class ArmSev : public ArmFaultVals<ArmSev>
262{
263 public:
264 ArmSev () {}
265 void invoke(ThreadContext *tc,
266 StaticInstPtr inst = StaticInst::nullStaticInstPtr);
267};
268
260} // namespace ArmISA
261
262#endif // __ARM_FAULTS_HH__
269} // namespace ArmISA
270
271#endif // __ARM_FAULTS_HH__