exec_context.hh (11168:f98eb2da15a4) exec_context.hh (11303:f694764d656d)
1/*
2 * Copyright (c) 2014-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

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

286 { panic("BaseSimpleCPU::getEA() not implemented\n"); }
287
288 Fault readMem(Addr addr, uint8_t *data, unsigned int size,
289 unsigned int flags) override
290 {
291 return cpu->readMem(addr, data, size, flags);
292 }
293
1/*
2 * Copyright (c) 2014-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

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

286 { panic("BaseSimpleCPU::getEA() not implemented\n"); }
287
288 Fault readMem(Addr addr, uint8_t *data, unsigned int size,
289 unsigned int flags) override
290 {
291 return cpu->readMem(addr, data, size, flags);
292 }
293
294 Fault initiateMemRead(Addr addr, unsigned int size,
295 unsigned int flags) override
296 {
297 return cpu->initiateMemRead(addr, size, flags);
298 }
299
294 Fault writeMem(uint8_t *data, unsigned int size, Addr addr,
295 unsigned int flags, uint64_t *res) override
296 {
297 return cpu->writeMem(data, size, addr, flags, res);
298 }
299
300 /**
301 * Sets the number of consecutive store conditional failures.

--- 111 unchanged lines hidden ---
300 Fault writeMem(uint8_t *data, unsigned int size, Addr addr,
301 unsigned int flags, uint64_t *res) override
302 {
303 return cpu->writeMem(data, size, addr, flags, res);
304 }
305
306 /**
307 * Sets the number of consecutive store conditional failures.

--- 111 unchanged lines hidden ---