Deleted Added
sdiff udiff text old ( 11294:a368064a2ab5 ) new ( 11306:a5340a2a24f9 )
full compact
1/*
2 * Copyright (c) 2012-2015 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

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

656
657 bool isSecure() const
658 {
659 assert(flags.isSet(VALID_ADDR));
660 return _isSecure;
661 }
662
663 /**
664 * It has been determined that the SC packet should successfully update
665 * memory. Therefore, convert this SC packet to a normal write.
666 */
667 void
668 convertScToWrite()
669 {
670 assert(isLLSC());
671 assert(isWrite());

--- 507 unchanged lines hidden ---