2015-08-04 06:08:40 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015, University of Kaiserslautern
|
2017-02-10 01:15:30 +01:00
|
|
|
* Copyright (c) 2016, Dresden University of Technology (TU Dresden)
|
2015-08-04 06:08:40 +02:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* 3. Neither the name of the copyright holder nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
|
|
|
|
* OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
|
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Matthias Jung
|
2017-02-10 01:15:30 +01:00
|
|
|
* Christian Menard
|
2015-08-04 06:08:40 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "sc_ext.hh"
|
|
|
|
|
|
|
|
using namespace tlm;
|
|
|
|
|
2017-02-10 01:15:30 +01:00
|
|
|
namespace Gem5SystemC
|
|
|
|
{
|
|
|
|
|
|
|
|
Gem5Extension::Gem5Extension(PacketPtr packet)
|
2015-08-04 06:08:40 +02:00
|
|
|
{
|
|
|
|
Packet = packet;
|
2017-02-10 01:15:43 +01:00
|
|
|
pipeThrough = false;
|
2015-08-04 06:08:40 +02:00
|
|
|
}
|
|
|
|
|
2017-02-10 01:15:30 +01:00
|
|
|
Gem5Extension& Gem5Extension::getExtension(const tlm_generic_payload *payload)
|
2015-08-04 06:08:40 +02:00
|
|
|
{
|
2017-02-10 01:15:30 +01:00
|
|
|
Gem5Extension *result = NULL;
|
2015-08-04 06:08:40 +02:00
|
|
|
payload->get_extension(result);
|
|
|
|
sc_assert(result!=NULL);
|
|
|
|
return *result;
|
|
|
|
}
|
|
|
|
|
2017-02-10 01:15:30 +01:00
|
|
|
Gem5Extension& Gem5Extension::getExtension(const tlm_generic_payload &payload)
|
2015-08-04 06:08:40 +02:00
|
|
|
{
|
2017-02-10 01:15:30 +01:00
|
|
|
return Gem5Extension::getExtension(&payload);
|
2015-08-04 06:08:40 +02:00
|
|
|
}
|
|
|
|
|
2017-02-10 01:15:30 +01:00
|
|
|
PacketPtr Gem5Extension::getPacket()
|
2015-08-04 06:08:40 +02:00
|
|
|
{
|
|
|
|
return Packet;
|
|
|
|
}
|
|
|
|
|
2017-02-10 01:15:30 +01:00
|
|
|
tlm_extension_base* Gem5Extension::clone() const
|
2015-08-04 06:08:40 +02:00
|
|
|
{
|
2017-02-10 01:15:30 +01:00
|
|
|
return new Gem5Extension(Packet);
|
2015-08-04 06:08:40 +02:00
|
|
|
}
|
|
|
|
|
2017-02-10 01:15:30 +01:00
|
|
|
void Gem5Extension::copy_from(const tlm_extension_base& ext)
|
2015-08-04 06:08:40 +02:00
|
|
|
{
|
2017-02-10 01:15:30 +01:00
|
|
|
const Gem5Extension& cpyFrom = static_cast<const Gem5Extension&>(ext);
|
2015-08-04 06:08:40 +02:00
|
|
|
Packet = cpyFrom.Packet;
|
|
|
|
}
|
2017-02-10 01:15:30 +01:00
|
|
|
|
|
|
|
}
|