lsq.hh (14105:969b4e972b07) lsq.hh (14297:b4519e586f5e)
1/*
2 * Copyright (c) 2013-2014, 2018 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

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

703 * BarrierDataRequest and pushed it into the store buffer */
704 void completeMemBarrierInst(MinorDynInstPtr inst,
705 bool committed);
706
707 /** Single interface for readMem/writeMem/amoMem to issue requests into
708 * the LSQ */
709 Fault pushRequest(MinorDynInstPtr inst, bool isLoad, uint8_t *data,
710 unsigned int size, Addr addr, Request::Flags flags,
1/*
2 * Copyright (c) 2013-2014, 2018 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

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

703 * BarrierDataRequest and pushed it into the store buffer */
704 void completeMemBarrierInst(MinorDynInstPtr inst,
705 bool committed);
706
707 /** Single interface for readMem/writeMem/amoMem to issue requests into
708 * the LSQ */
709 Fault pushRequest(MinorDynInstPtr inst, bool isLoad, uint8_t *data,
710 unsigned int size, Addr addr, Request::Flags flags,
711 uint64_t *res, AtomicOpFunctor *amo_op,
711 uint64_t *res, AtomicOpFunctorPtr amo_op,
712 const std::vector<bool>& byteEnable =
713 std::vector<bool>());
714
715 /** Push a predicate failed-representing request into the queues just
716 * to maintain commit order */
717 void pushFailedRequest(MinorDynInstPtr inst);
718
719 /** Memory interface */

--- 18 unchanged lines hidden ---
712 const std::vector<bool>& byteEnable =
713 std::vector<bool>());
714
715 /** Push a predicate failed-representing request into the queues just
716 * to maintain commit order */
717 void pushFailedRequest(MinorDynInstPtr inst);
718
719 /** Memory interface */

--- 18 unchanged lines hidden ---