From 2471c214bf85b1c0342f222a1a85ace110d76d16 Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Mon, 13 Oct 2003 16:14:28 -0400 Subject: cleanup arch/alpha/arguments.hh: arch/alpha/arguments.cc: sort #includes --HG-- extra : convert_revision : f152f2fa1479649e7376e2a24107da642c7da5aa --- arch/alpha/arguments.cc | 2 +- arch/alpha/arguments.hh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'arch/alpha') diff --git a/arch/alpha/arguments.cc b/arch/alpha/arguments.cc index 38f7a400c..2dca3f51e 100644 --- a/arch/alpha/arguments.cc +++ b/arch/alpha/arguments.cc @@ -26,9 +26,9 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include "targetarch/arguments.hh" #include "cpu/exec_context.hh" #include "mem/functional_mem/physical_memory.hh" +#include "targetarch/arguments.hh" #include "targetarch/vtophys.hh" AlphaArguments::Data::~Data() diff --git a/arch/alpha/arguments.hh b/arch/alpha/arguments.hh index 9ac744e17..18569c688 100644 --- a/arch/alpha/arguments.hh +++ b/arch/alpha/arguments.hh @@ -31,9 +31,9 @@ #include -#include "sim/host.hh" -#include "kern/tru64/kernel.hh" #include "base/refcnt.hh" +#include "kern/tru64/kernel.hh" +#include "sim/host.hh" #include "targetarch/vtophys.hh" class ExecContext; -- cgit v1.2.3 From f94ff9ace556d9aa1ac9d00b8b1dbc73e161d213 Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Mon, 13 Oct 2003 17:24:27 -0400 Subject: Split up kernel.cc into separate files for dump_mbuf and printf cpu/exec_context.hh: dev/alpha_console.cc: sim/system.cc: sim/system.hh: Convert from fixed array to a vector arch/alpha/arguments.hh: now that CopyData and CopyString are in vtophys.hh, this include is not necessary arch/alpha/vtophys.hh: Include isa_traits.hh for Addr cpu/pc_event.cc: Temporarily get this working while we're changing things --HG-- extra : convert_revision : 9a7597b7bd5d050819766f8edf7a02f28447b9ca --- arch/alpha/arguments.hh | 1 - arch/alpha/vtophys.hh | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) (limited to 'arch/alpha') diff --git a/arch/alpha/arguments.hh b/arch/alpha/arguments.hh index 18569c688..78e66b3fd 100644 --- a/arch/alpha/arguments.hh +++ b/arch/alpha/arguments.hh @@ -32,7 +32,6 @@ #include #include "base/refcnt.hh" -#include "kern/tru64/kernel.hh" #include "sim/host.hh" #include "targetarch/vtophys.hh" diff --git a/arch/alpha/vtophys.hh b/arch/alpha/vtophys.hh index 75a589259..47ee538a6 100644 --- a/arch/alpha/vtophys.hh +++ b/arch/alpha/vtophys.hh @@ -29,6 +29,7 @@ #ifndef __VTOPHYS_H__ #define __VTOPHYS_H__ +#include "targetarch/isa_traits.hh" #include "targetarch/pmap.h" inline bool entry_valid(uint64_t entry) -- cgit v1.2.3 From 4759c203c774ef42a2a35832e220a95cffb5fa7b Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Tue, 14 Oct 2003 12:19:59 -0400 Subject: Remove all of the Tru64 specific stuff from the base System object into its own Tru64System object. Also remove the System builder stuff and create a Tru64System builder. This makes it much simpler to support more operating systems. arch/alpha/ev5.cc: Each system provides its own mechanism for doing a breakpoint. base/remote_gdb.hh: #include cpu/pc_event.cc: cpu/pc_event.hh: Separate out System specific PCEvents cpu/simple_cpu/simple_cpu.cc: each system provides its own init script kern/tru64/dump_mbuf.cc: kern/tru64/printf.cc: Stick this in a namespace --HG-- extra : convert_revision : 9f74527ed2ff8010431d9aff34357aaecc1fb3f6 --- arch/alpha/ev5.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arch/alpha') diff --git a/arch/alpha/ev5.cc b/arch/alpha/ev5.cc index 476a84d26..e4a9a09e3 100644 --- a/arch/alpha/ev5.cc +++ b/arch/alpha/ev5.cc @@ -560,7 +560,7 @@ ExecContext::simPalCheck(int palFunc) case PAL::bpt: case PAL::bugchk: - if (system->remoteGDB->trap(ALPHA_KENTRY_IF)) + if (system->breakpoint()) return false; break; } -- cgit v1.2.3