faults.hh (7850:02450f4443ce) faults.hh (8202:1b63e9afeafc)
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

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

237class FlushPipe : public ArmFaultVals<FlushPipe>
238{
239 public:
240 FlushPipe() {}
241 void invoke(ThreadContext *tc,
242 StaticInstPtr inst = StaticInst::nullStaticInstPtr);
243};
244
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

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

237class FlushPipe : public ArmFaultVals<FlushPipe>
238{
239 public:
240 FlushPipe() {}
241 void invoke(ThreadContext *tc,
242 StaticInstPtr inst = StaticInst::nullStaticInstPtr);
243};
244
245// A fault that flushes the pipe, including the faulting instructions
246class ReExec : public ArmFaultVals<ReExec>
247{
248 public:
249 ReExec() {}
250 void invoke(ThreadContext *tc,
251 StaticInstPtr inst = StaticInst::nullStaticInstPtr);
252};
253
254
245static inline Fault genMachineCheckFault()
246{
247 return new Reset();
248}
249
250} // namespace ArmISA
251
252#endif // __ARM_FAULTS_HH__
255static inline Fault genMachineCheckFault()
256{
257 return new Reset();
258}
259
260} // namespace ArmISA
261
262#endif // __ARM_FAULTS_HH__