Deleted Added
sdiff udiff text old ( 12109:f29e9c5418aa ) new ( 12420:f5c80f4ed41f )
full compact
1/*
2 * Copyright (c) 2014, 2016 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

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

218 virtual void pcState(const PCState &val) = 0;
219 /** @} */
220
221 /**
222 * @{
223 * @name Memory Interface
224 */
225 /**
226 * Perform an atomic memory read operation. Must be overridden
227 * for exec contexts that support atomic memory mode. Not pure
228 * virtual since exec contexts that only support timing memory
229 * mode need not override (though in that case this function
230 * should never be called).
231 */
232 virtual Fault readMem(Addr addr, uint8_t *data, unsigned int size,
233 Request::Flags flags)

--- 112 unchanged lines hidden ---