base_cpu.hh (10860:cba0f26038b4) base_cpu.hh (11168:f98eb2da15a4)
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

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

47struct BaseArmKvmCPUParams;
48
49class BaseArmKvmCPU : public BaseKvmCPU
50{
51 public:
52 BaseArmKvmCPU(BaseArmKvmCPUParams *params);
53 virtual ~BaseArmKvmCPU();
54
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

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

47struct BaseArmKvmCPUParams;
48
49class BaseArmKvmCPU : public BaseKvmCPU
50{
51 public:
52 BaseArmKvmCPU(BaseArmKvmCPUParams *params);
53 virtual ~BaseArmKvmCPU();
54
55 void startup() M5_ATTR_OVERRIDE;
55 void startup() override;
56
57 protected:
56
57 protected:
58 Tick kvmRun(Tick ticks) M5_ATTR_OVERRIDE;
58 Tick kvmRun(Tick ticks) override;
59
60
61 /** Cached state of the IRQ line */
62 bool irqAsserted;
63 /** Cached state of the FIQ line */
64 bool fiqAsserted;
65
66 protected:

--- 45 unchanged lines hidden ---
59
60
61 /** Cached state of the IRQ line */
62 bool irqAsserted;
63 /** Cached state of the FIQ line */
64 bool fiqAsserted;
65
66 protected:

--- 45 unchanged lines hidden ---