Arm: Get rid of unused and incomplete setCp15Register and readCp15Register.

This commit is contained in:
Gabe Black
2011-03-24 14:39:00 -04:00
parent 5d09a78dce
commit 475685df49
2 changed files with 0 additions and 18 deletions

View 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)
{

View 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);