utility.hh (7644:62873d5c2bfc) utility.hh (7666:c1b66fc648e2)
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

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

96 template <class TC>
97 void zeroRegisters(TC *tc);
98
99 inline void startupCPU(ThreadContext *tc, int cpuId)
100 {
101 tc->activate(0);
102 }
103
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

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

96 template <class TC>
97 void zeroRegisters(TC *tc);
98
99 inline void startupCPU(ThreadContext *tc, int cpuId)
100 {
101 tc->activate(0);
102 }
103
104 template <class XC>
105 Fault
106 checkFpEnableFault(XC *xc)
107 {
108 return NoFault;
109 }
110
111 static inline void
112 copyRegs(ThreadContext *src, ThreadContext *dest)
113 {
114 panic("Copy Regs Not Implemented Yet\n");
115 }
116
117 static inline void
118 copyMiscRegs(ThreadContext *src, ThreadContext *dest)

--- 58 unchanged lines hidden ---
104 static inline void
105 copyRegs(ThreadContext *src, ThreadContext *dest)
106 {
107 panic("Copy Regs Not Implemented Yet\n");
108 }
109
110 static inline void
111 copyMiscRegs(ThreadContext *src, ThreadContext *dest)

--- 58 unchanged lines hidden ---