faults.hh (4135:58a8bd096de9) faults.hh (4139:385be08269d7)
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

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

53 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 *
55 * Authors: Gabe Black
56 */
57
58#ifndef __ARCH_X86_FAULTS_HH__
59#define __ARCH_X86_FAULTS_HH__
60
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

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

53 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 *
55 * Authors: Gabe Black
56 */
57
58#ifndef __ARCH_X86_FAULTS_HH__
59#define __ARCH_X86_FAULTS_HH__
60
61#include "base/misc.hh"
61#include "sim/faults.hh"
62
63namespace X86ISA
64{
65 class X86Fault : public FaultBase
66 {
67 void invoke(ThreadContext * tc)
68 {
69 panic("X86 faults are not implemented!");
70 }
71 };
72};
73
74#endif // __ARCH_X86_FAULTS_HH__
62#include "sim/faults.hh"
63
64namespace X86ISA
65{
66 class X86Fault : public FaultBase
67 {
68 void invoke(ThreadContext * tc)
69 {
70 panic("X86 faults are not implemented!");
71 }
72 };
73};
74
75#endif // __ARCH_X86_FAULTS_HH__