summaryrefslogtreecommitdiff
path: root/src/arch/power/utility.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/power/utility.hh')
-rw-r--r--src/arch/power/utility.hh27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/arch/power/utility.hh b/src/arch/power/utility.hh
index 6263635e9..aff6fda78 100644
--- a/src/arch/power/utility.hh
+++ b/src/arch/power/utility.hh
@@ -61,33 +61,6 @@ namespace PowerISA {
template <class TC>
void zeroRegisters(TC *tc);
-// Instruction address compression hooks
-static inline Addr
-realPCToFetchPC(const Addr &addr)
-{
- return addr;
-}
-
-static inline Addr
-fetchPCToRealPC(const Addr &addr)
-{
- return addr;
-}
-
-// the size of "fetched" instructions
-static inline size_t
-fetchInstSize()
-{
- return sizeof(MachInst);
-}
-
-static inline MachInst
-makeRegisterCopy(int dest, int src)
-{
- panic("makeRegisterCopy not implemented");
- return 0;
-}
-
inline void
startupCPU(ThreadContext *tc, int cpuId)
{