Deleted Added
sdiff udiff text old ( 7580:6f77f379a594 ) new ( 7723:ee4ac00d0774 )
full compact
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

43#include "cpu/pc_event.hh"
44#include "enums/MemoryMode.hh"
45#include "mem/port.hh"
46#include "params/System.hh"
47#include "sim/sim_object.hh"
48
49#if FULL_SYSTEM
50#include "kern/system_events.hh"
51#include "mem/vport.hh"
52#endif
53
54class BaseCPU;
55class ThreadContext;
56class ObjectFile;
57class PhysicalMemory;
58
59#if FULL_SYSTEM
60class Platform;
61#endif
62class GDBListener;
63class BaseRemoteGDB;
64
65class System : public SimObject
66{
67 public:
68

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

103 int numRunningContexts();
104
105#if FULL_SYSTEM
106 Platform *platform;
107 uint64_t init_param;
108
109 /** Port to physical memory used for writing object files into ram at
110 * boot.*/
111 FunctionalPort functionalPort;
112 VirtualPort virtPort;
113
114 /** kernel symbol table */
115 SymbolTable *kernelSymtab;
116
117 /** Object pointer for the kernel code */
118 ObjectFile *kernel;
119
120 /** Begining of kernel code */

--- 142 unchanged lines hidden ---