execute.cc (10527:d0c2ba70dc12) execute.cc (10563:755b18321206)
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

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

350 } else if (is_store || is_load || is_prefetch) {
351 assert(packet);
352
353 DPRINTF(MinorMem, "Memory response inst: %s addr: 0x%x size: %d\n",
354 *inst, packet->getAddr(), packet->getSize());
355
356 if (is_load && packet->getSize() > 0) {
357 DPRINTF(MinorMem, "Memory data[0]: 0x%x\n",
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

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

350 } else if (is_store || is_load || is_prefetch) {
351 assert(packet);
352
353 DPRINTF(MinorMem, "Memory response inst: %s addr: 0x%x size: %d\n",
354 *inst, packet->getAddr(), packet->getSize());
355
356 if (is_load && packet->getSize() > 0) {
357 DPRINTF(MinorMem, "Memory data[0]: 0x%x\n",
358 static_cast(packet->getPtr()[0]));
358 static_cast<unsigned int>(packet->getConstPtr<uint8_t>()[0]));
359 }
360
361 /* Complete the memory access instruction */
362 fault = inst->staticInst->completeAcc(packet, &context,
363 inst->traceData);
364
365 if (fault != NoFault) {
366 /* Invoke fault created by instruction completion */

--- 1373 unchanged lines hidden ---
359 }
360
361 /* Complete the memory access instruction */
362 fault = inst->staticInst->completeAcc(packet, &context,
363 inst->traceData);
364
365 if (fault != NoFault) {
366 /* Invoke fault created by instruction completion */

--- 1373 unchanged lines hidden ---