Arm: Get rid of unused and incomplete setCp15Register and readCp15Register.
authorGabe Black <gblack@eecs.umich.edu>
Thu, 24 Mar 2011 18:39:00 +0000 (14:39 -0400)
committerGabe Black <gblack@eecs.umich.edu>
Thu, 24 Mar 2011 18:39:00 +0000 (14:39 -0400)
src/arch/arm/utility.cc
src/arch/arm/utility.hh

index 47e13bdea3ac1df04aefcee3392ab49f152e87d8..0d91c9f909944ad5730a7717d216458e1150320f 100644 (file)
@@ -112,21 +112,6 @@ getArgument(ThreadContext *tc, int &number, uint16_t size, bool fp)
 #endif
 }
 
-Fault 
-setCp15Register(uint32_t &Rd, int CRn, int opc1, int CRm, int opc2)
-{
-   return new UnimpFault(csprintf("MCR CP15: CRn: %d opc1: %d CRm: %d opc1: %d\n", 
-               CRn, opc1, CRm, opc2));     
-}
-
-Fault 
-readCp15Register(uint32_t &Rd, int CRn, int opc1, int CRm, int opc2)
-{
-   return new UnimpFault(csprintf("MRC CP15: CRn: %d opc1: %d CRm: %d opc1: %d\n", 
-           CRn, opc1, CRm, opc2));
-
-}
-
 void
 skipFunction(ThreadContext *tc)
 {
index 17a9a6c5fc2d69db7c7f853bb328ec203bee16e5..0fea44695db12d528742945342e874c1ad939e3f 100644 (file)
@@ -156,9 +156,6 @@ neonEnabled(CPACR cpacr, CPSR cpsr, FPEXC fpexc)
 }
 
 uint64_t getArgument(ThreadContext *tc, int &number, uint16_t size, bool fp);
-    
-Fault setCp15Register(uint32_t &Rd, int CRn, int opc1, int CRm, int opc2);
-Fault readCp15Register(uint32_t &Rd, int CRn, int opc1, int CRm, int opc2);
 
 void skipFunction(ThreadContext *tc);