Deleted Added
sdiff udiff text old ( 13954:2f400a5f2627 ) new ( 14080:4472576445e7 )
full compact
1/*
2 * Copyright (c) 2011-2012, 2014, 2017-2018 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

719 }
720 assert(req);
721 if (!byteEnable.empty()) {
722 req->_byteEnable = byteEnable;
723 }
724 inst->setRequest();
725 req->taskId(cpu->taskId());
726
727 req->initiateTranslation();
728 }
729
730 /* This is the place were instructions get the effAddr. */
731 if (req->isTranslationComplete()) {
732 if (inst->getFault() == NoFault) {
733 inst->effAddr = req->getVaddr();
734 inst->effSize = size;

--- 418 unchanged lines hidden ---