Deleted Added
sdiff udiff text old ( 11567:560d7fbbddd1 ) new ( 11608:6319a1125f1c )
full compact
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

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

1466 if (ret)
1467 DPRINTF(Activity, "Need to tick\n");
1468
1469 return ret;
1470}
1471
1472void
1473LSQ::pushRequest(MinorDynInstPtr inst, bool isLoad, uint8_t *data,
1474 unsigned int size, Addr addr, Request::Flags flags,
1475 uint64_t *res)
1476{
1477 bool needs_burst = transferNeedsBurst(addr, size, lineWidth);
1478 LSQRequestPtr request;
1479
1480 /* Copy given data into the request. The request will pass this to the
1481 * packet and then it will own the data */
1482 uint8_t *request_data = NULL;
1483

--- 180 unchanged lines hidden ---