utility.hh (6691:cd68b6ecd68d) utility.hh (7506:e76cc0ca16cc)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007-2008 The Florida State University
4 * Copyright (c) 2009 The University of Edinburgh
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are

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

96
97template <class XC>
98Fault
99checkFpEnableFault(XC *xc)
100{
101 return NoFault;
102}
103
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007-2008 The Florida State University
4 * Copyright (c) 2009 The University of Edinburgh
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are

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

96
97template <class XC>
98Fault
99checkFpEnableFault(XC *xc)
100{
101 return NoFault;
102}
103
104static inline void
105copyRegs(ThreadContext *src, ThreadContext *dest)
106{
107 panic("Copy Regs Not Implemented Yet\n");
108}
104void
105copyRegs(ThreadContext *src, ThreadContext *dest);
109
110static inline void
111copyMiscRegs(ThreadContext *src, ThreadContext *dest)
112{
106
107static inline void
108copyMiscRegs(ThreadContext *src, ThreadContext *dest)
109{
113 panic("Copy Misc. Regs Not Implemented Yet\n");
114}
115
116} // PowerISA namespace
117
118#endif // __ARCH_POWER_UTILITY_HH__
110}
111
112} // PowerISA namespace
113
114#endif // __ARCH_POWER_UTILITY_HH__