cpu.hh (12127:4207df055b0d) cpu.hh (12406:86bde4a026b5)
1/*
2 * Copyright (c) 2011-2013, 2016 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

118 enum Status {
119 Running,
120 Idle,
121 Halted,
122 Blocked,
123 SwitchedOut
124 };
125
1/*
2 * Copyright (c) 2011-2013, 2016 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

118 enum Status {
119 Running,
120 Idle,
121 Halted,
122 Blocked,
123 SwitchedOut
124 };
125
126 TheISA::TLB * itb;
127 TheISA::TLB * dtb;
126 BaseTLB *itb;
127 BaseTLB *dtb;
128
129 /** Overall CPU status. */
130 Status _status;
131
132 private:
133
134 /**
135 * IcachePort class for instruction fetch.

--- 669 unchanged lines hidden ---
128
129 /** Overall CPU status. */
130 Status _status;
131
132 private:
133
134 /**
135 * IcachePort class for instruction fetch.

--- 669 unchanged lines hidden ---