lsq.cc (10563:755b18321206) lsq.cc (10566:c99c8d2a7c31)
1/*
2 * Copyright (c) 2013-2014 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 1544 unchanged lines hidden (view full) ---

1553 PacketPtr ret = new Packet(&request, command);
1554
1555 if (sender_state)
1556 ret->pushSenderState(sender_state);
1557
1558 if (isLoad)
1559 ret->allocate();
1560 else
1/*
2 * Copyright (c) 2013-2014 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 1544 unchanged lines hidden (view full) ---

1553 PacketPtr ret = new Packet(&request, command);
1554
1555 if (sender_state)
1556 ret->pushSenderState(sender_state);
1557
1558 if (isLoad)
1559 ret->allocate();
1560 else
1561 ret->dataDynamicArray(data);
1561 ret->dataDynamic(data);
1562
1563 return ret;
1564}
1565
1566void
1567LSQ::issuedMemBarrierInst(MinorDynInstPtr inst)
1568{
1569 assert(inst->isInst() && inst->staticInst->isMemBarrier());

--- 51 unchanged lines hidden ---
1562
1563 return ret;
1564}
1565
1566void
1567LSQ::issuedMemBarrierInst(MinorDynInstPtr inst)
1568{
1569 assert(inst->isInst() && inst->staticInst->isMemBarrier());

--- 51 unchanged lines hidden ---