1/*
2 * Copyright (c) 2012 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

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

569 };
570
571 /** Port for data requests */
572 KVMCpuPort dataPort;
573
574 /** Unused dummy port for the instruction interface */
575 KVMCpuPort instPort;
576
577 /** Pre-allocated MMIO memory request */
578 Request mmio_req;
579
577 /**
578 * Is the gem5 context dirty? Set to true to force an update of
579 * the KVM vCPU state upon the next call to kvmRun().
580 */
581 bool threadContextDirty;
582
583 /**
584 * Is the KVM state dirty? Set to true to force an update of

--- 192 unchanged lines hidden ---