utility.hh (6251:1d794d81a4e6) utility.hh (6329:5d8b91875859)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007-2008 The Florida State University
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

108 }
109
110 template <class XC>
111 Fault
112 checkFpEnableFault(XC *xc)
113 {
114 return NoFault;
115 }
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007-2008 The Florida State University
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

108 }
109
110 template <class XC>
111 Fault
112 checkFpEnableFault(XC *xc)
113 {
114 return NoFault;
115 }
116
117 static inline void
118 copyRegs(ThreadContext *src, ThreadContext *dest)
119 {
120 panic("Copy Regs Not Implemented Yet\n");
121 }
122
123 static inline void
124 copyMiscRegs(ThreadContext *src, ThreadContext *dest)
125 {
126 panic("Copy Misc. Regs Not Implemented Yet\n");
127 }
116};
117
118
119#endif
128};
129
130
131#endif