system.cc (11793:ef606668d247) system.cc (11800:54436a1784dc)
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
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

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

34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 * Authors: Gabe Black
38 */
39
40#include "arch/x86/system.hh"
41
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
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

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

34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 * Authors: Gabe Black
38 */
39
40#include "arch/x86/system.hh"
41
42#include "arch/vtophys.hh"
43#include "arch/x86/bios/intelmp.hh"
44#include "arch/x86/bios/smbios.hh"
45#include "arch/x86/isa_traits.hh"
42#include "arch/x86/bios/intelmp.hh"
43#include "arch/x86/bios/smbios.hh"
44#include "arch/x86/isa_traits.hh"
46#include "arch/x86/regs/misc.hh"
47#include "base/intmath.hh"
48#include "base/loader/object_file.hh"
45#include "base/loader/object_file.hh"
49#include "base/loader/symtab.hh"
50#include "base/trace.hh"
51#include "cpu/thread_context.hh"
46#include "cpu/thread_context.hh"
52#include "mem/port_proxy.hh"
53#include "params/X86System.hh"
47#include "params/X86System.hh"
54#include "sim/byteswap.hh"
55
56using namespace LittleEndianGuest;
57using namespace X86ISA;
58
59X86System::X86System(Params *p) :
60 System(p), smbiosTable(p->smbios_table),
61 mpFloatingPointer(p->intel_mp_pointer),
62 mpConfigTable(p->intel_mp_table),

--- 322 unchanged lines hidden ---
48
49using namespace LittleEndianGuest;
50using namespace X86ISA;
51
52X86System::X86System(Params *p) :
53 System(p), smbiosTable(p->smbios_table),
54 mpFloatingPointer(p->intel_mp_pointer),
55 mpConfigTable(p->intel_mp_table),

--- 322 unchanged lines hidden ---