cpu: Delete unnecessary create() methods.

These were added in changes which were created before create() methods
were mostly automated, but were checked in after the then unnecessary
create() methods were purged.

Change-Id: I03da797ae8328fab6ef6b85dbc4ea86b34512fd5
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/42743
Reviewed-by: Daniel Carvalho <odanrc@yahoo.com.br>
Reviewed-by: Jason Lowe-Power <power.jg@gmail.com>
Maintainer: Gabe Black <gabe.black@gmail.com>
Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
Gabe Black
2021-03-11 04:26:17 -08:00
parent cf1659a0c8
commit 6572078a99
4 changed files with 0 additions and 24 deletions

View File

@@ -43,12 +43,6 @@ CpuThread::CpuThread(const Params &p)
assert(numLanes == 1);
}
CpuThread*
CpuThreadParams::create() const
{
return new CpuThread(*this);
}
void
CpuThread::issueLoadOps()
{

View File

@@ -48,12 +48,6 @@ DmaThread::~DmaThread()
}
DmaThread*
DmaThreadParams::create() const
{
return new DmaThread(*this);
}
void
DmaThread::issueLoadOps()
{

View File

@@ -48,12 +48,6 @@ GpuWavefront::~GpuWavefront()
}
GpuWavefront*
GpuWavefrontParams::create() const
{
return new GpuWavefront(*this);
}
void
GpuWavefront::issueLoadOps()
{

View File

@@ -357,9 +357,3 @@ ProtocolTester::SeqPort::recvTimingResp(PacketPtr pkt)
return true;
}
ProtocolTester*
ProtocolTesterParams::create() const
{
return new ProtocolTester(*this);
}