gem5.git
13 years agoMerge.
Gabe Black [Thu, 9 Dec 2010 00:52:38 +0000 (16:52 -0800)]
Merge.

13 years agoruby: remove Ruby asserts for m5.fast
Brad Beckmann [Wed, 8 Dec 2010 19:52:02 +0000 (11:52 -0800)]
ruby: remove Ruby asserts for m5.fast

This diff is for changing the way ASSERT is handled in Ruby. m5.fast
compiles out the assert statements by using the macro NDEBUG. Ruby uses the
macro RUBY_NO_ASSERT to do so. This macro has been removed and NDEBUG has
been put in its place.

13 years agoAlpha: Take advantage of new PCState syntax.
Gabe Black [Wed, 8 Dec 2010 18:55:33 +0000 (10:55 -0800)]
Alpha: Take advantage of new PCState syntax.

13 years agoMIPS: Take advantage of new PCState syntax.
Gabe Black [Wed, 8 Dec 2010 18:45:14 +0000 (10:45 -0800)]
MIPS: Take advantage of new PCState syntax.

13 years agoPOWER: Take advantage of new PCState syntax.
Gabe Black [Wed, 8 Dec 2010 18:33:03 +0000 (10:33 -0800)]
POWER: Take advantage of new PCState syntax.

13 years agoSPARC: Take advantage of new PCState syntax.
Gabe Black [Wed, 8 Dec 2010 08:27:43 +0000 (00:27 -0800)]
SPARC: Take advantage of new PCState syntax.

13 years agoX86: Take advantage of new PCState syntax.
Gabe Black [Wed, 8 Dec 2010 08:27:23 +0000 (00:27 -0800)]
X86: Take advantage of new PCState syntax.

13 years agoISA: Get the parser to support pc state components more elegantly.
Gabe Black [Wed, 8 Dec 2010 07:08:05 +0000 (23:08 -0800)]
ISA: Get the parser to support pc state components more elegantly.

13 years agoConfigs: Automatically choose the correct hello world binary.
Ali Saidi [Wed, 8 Dec 2010 00:19:57 +0000 (16:19 -0800)]
Configs: Automatically choose the correct hello world binary.

13 years agoO3: Allow a store entry to store up to 16 bytes (instead of TheISA::IntReg).
Ali Saidi [Wed, 8 Dec 2010 00:19:57 +0000 (16:19 -0800)]
O3: Allow a store entry to store up to 16 bytes (instead of TheISA::IntReg).

The store queue doesn't need to be ISA specific and architectures can
frequently store more than an int registers worth of data. A 128 bits seems
more common, but even 256 bits may be appropriate. Pretty much anything less
than a cache line size is buildable.

13 years agoStats: Fix stats for cumulative flags change.
Ali Saidi [Wed, 8 Dec 2010 00:19:57 +0000 (16:19 -0800)]
Stats: Fix stats for cumulative flags change.

13 years agoO3: Support squashing all state after special instruction
Ali Saidi [Wed, 8 Dec 2010 00:19:57 +0000 (16:19 -0800)]
O3: Support squashing all state after special instruction

For SPARC ASIs are added to the ExtMachInst. If the ASI is changed simply
marking the instruction as Serializing isn't enough beacuse that only
stops rename. This provides a mechanism to squash all the instructions
and refetch them

13 years agoO3: Make all instructions that write a misc. register not perform the write until...
Giacomo Gabrielli [Wed, 8 Dec 2010 00:19:57 +0000 (16:19 -0800)]
O3: Make all instructions that write a misc. register not perform the write until commit.

ARM instructions updating cumulative flags (ARM FP exceptions and saturation
flags) are not serialized.

Added aliases for ARM FP exceptions and saturation flags in FPSCR.  Removed
write accesses to the FP condition codes for most ARM VFP instructions: only
VCMP and VCMPE instructions update the FP condition codes.  Removed a potential
cause of seg. faults in the O3 model for NEON memory macro-ops (ARM).

13 years agoO3: Support SWAP and predicated loads/store in ARM.
Min Kyu Jeong [Wed, 8 Dec 2010 00:19:57 +0000 (16:19 -0800)]
O3: Support SWAP and predicated loads/store in ARM.

13 years agoARM: Support switchover with hardware table walkers
Ali Saidi [Wed, 8 Dec 2010 00:19:57 +0000 (16:19 -0800)]
ARM: Support switchover with hardware table walkers

13 years agoruby: Converted old ruby debug calls to M5 debug calls
Nilay Vaish [Wed, 1 Dec 2010 19:30:04 +0000 (11:30 -0800)]
ruby: Converted old ruby debug calls to M5 debug calls

This patch developed by Nilay Vaish converts all the old GEMS-style ruby
debug calls to the appropriate M5 debug calls.

13 years agoIGbE: return 0 on an invalid descriptor size instead of -1.
Ali Saidi [Sat, 27 Nov 2010 01:47:23 +0000 (20:47 -0500)]
IGbE: return 0 on an invalid descriptor size instead of -1.

Asserts where descSize() get called with assert if we end up returning
0.

13 years agoCopyright: Add AMD copyright to the param changes I just made.
Gabe Black [Tue, 23 Nov 2010 22:08:41 +0000 (17:08 -0500)]
Copyright: Add AMD copyright to the param changes I just made.

13 years agoParams: Add parameter types for IP addresses in various forms.
Gabe Black [Tue, 23 Nov 2010 20:54:43 +0000 (15:54 -0500)]
Params: Add parameter types for IP addresses in various forms.

New parameter forms are:
IP address in the format "a.b.c.d" where a-d are from decimal 0 to 255.
IP address with netmask which is an IP followed by "/n" where n is a netmask
length in bits from decimal 0 to 32 or by "/e.f.g.h" where e-h are from
decimal 0 to 255 and which is all 1 bits followed by all 0 bits when
represented in binary. These can also be specified as an integral IP and
netmask passed in separately.
IP address with port which is an IP followed by ":p" where p is a port index
from decimal 0 to 65535. These can also be specified as an integral IP and
port value passed in separately.

13 years agoX86: Loosen an assert for x86 and connect the APIC ports when caches are used.
Gabe Black [Tue, 23 Nov 2010 11:11:50 +0000 (06:11 -0500)]
X86: Loosen an assert for x86 and connect the APIC ports when caches are used.

13 years agoX86: Obey the PCD (cache disable) bit in the page tables.
Gabe Black [Tue, 23 Nov 2010 11:10:17 +0000 (06:10 -0500)]
X86: Obey the PCD (cache disable) bit in the page tables.

13 years agoX86: Mark IO space accesses as uncachable.
Gabe Black [Mon, 22 Nov 2010 10:49:03 +0000 (05:49 -0500)]
X86: Mark IO space accesses as uncachable.

13 years agoX86: Remove reserved* from the m5 utility program for x86.
Gabe Black [Mon, 22 Nov 2010 10:47:54 +0000 (05:47 -0500)]
X86: Remove reserved* from the m5 utility program for x86.

13 years agoIDE,X86: Fix IDE controller BAR configuration for x86.
Gabe Black [Mon, 22 Nov 2010 07:33:47 +0000 (02:33 -0500)]
IDE,X86: Fix IDE controller BAR configuration for x86.

13 years agorandom: small comment about our random number generator and its origin
Nathan Binkert [Sat, 20 Nov 2010 20:12:27 +0000 (12:12 -0800)]
random: small comment about our random number generator and its origin

13 years agoSE: Fix simulating more than 4GB of RAM in SE mode
Ali Saidi [Sat, 20 Nov 2010 00:01:01 +0000 (18:01 -0600)]
SE: Fix simulating more than 4GB of RAM in SE mode

This change removes some dead code in PhysicalMemory, uses a 64 bit type
for the page pointer in System (instead of 32 bit) and cleans up some style.

13 years agoSCons: Fix compilation on OS X
Ali Saidi [Sat, 20 Nov 2010 00:00:59 +0000 (18:00 -0600)]
SCons: Fix compilation on OS X

13 years agoSCons: Support building without an ISA
Ali Saidi [Sat, 20 Nov 2010 00:00:39 +0000 (18:00 -0600)]
SCons: Support building without an ISA

13 years agoO3: Fix fp destination register flattening, and index offset adjusting.
Gabe Black [Thu, 18 Nov 2010 18:11:36 +0000 (13:11 -0500)]
O3: Fix fp destination register flattening, and index offset adjusting.

This change makes O3 flatten floating point destination registers, and also
fixes misc register flattening so that it's correctly repositioned relative to
the resized regions for integer and floating point indices.

It also fixes some overly long lines.

13 years agoConfig: Change misleading "cycle" message to say "tick".
Gabe Black [Thu, 18 Nov 2010 04:16:19 +0000 (23:16 -0500)]
Config: Change misleading "cycle" message to say "tick".

Most of the messages in the config scripts that report a time value already
print "@ tick" followed by the current tick value, but a few were printing
"@ cycle". Since this is a distinction that's frequently confusing to new
users, this changes those message to the more accurate and consistent "@ tick".

13 years agoStats: Update the O3 fetch stats for SPARC.
Gabe Black [Tue, 16 Nov 2010 03:37:15 +0000 (19:37 -0800)]
Stats: Update the O3 fetch stats for SPARC.

13 years agoO3: Make O3 support variably lengthed instructions.
Gabe Black [Tue, 16 Nov 2010 03:37:03 +0000 (19:37 -0800)]
O3: Make O3 support variably lengthed instructions.

13 years agoO3: reset architetural state by calling clear()
Ali Saidi [Mon, 15 Nov 2010 20:04:05 +0000 (14:04 -0600)]
O3: reset architetural state by calling clear()

13 years agoARM: Add comment about the organization of the IT state register
Ali Saidi [Mon, 15 Nov 2010 20:04:05 +0000 (14:04 -0600)]
ARM: Add comment about the organization of the IT state register

13 years agoRegressions: Update regressions for SIMD opclass changes
Ali Saidi [Mon, 15 Nov 2010 20:04:05 +0000 (14:04 -0600)]
Regressions: Update regressions for SIMD opclass changes

13 years agoCPU/ARM: Add SIMD op classes to CPU models and ARM ISA.
Giacomo Gabrielli [Mon, 15 Nov 2010 20:04:04 +0000 (14:04 -0600)]
CPU/ARM: Add SIMD op classes to CPU models and ARM ISA.

13 years agoARM: Compile O3 CPU by default
Ali Saidi [Mon, 15 Nov 2010 20:04:04 +0000 (14:04 -0600)]
ARM: Compile O3 CPU by default

13 years agoO3: prevent a squash when completeAcc() modifies misc reg through TC.
Min Kyu Jeong [Mon, 15 Nov 2010 20:04:04 +0000 (14:04 -0600)]
O3: prevent a squash when completeAcc() modifies misc reg through TC.

This happens on ARM instructions when they update the IT state bits.
Code and associated comment was copied from execute() and initiateAcc() methods

13 years agoARM: Return an FailUnimp instruction when an unimplemented CP15 register is accessed.
Ali Saidi [Mon, 15 Nov 2010 20:04:04 +0000 (14:04 -0600)]
ARM: Return an FailUnimp instruction when an unimplemented CP15 register is accessed.

Just panicing in readMiscReg() doesn't work because a speculative access
in the o3 model can end the simulation.

13 years agoSCons: Cleanup SCons output during compile
Ali Saidi [Mon, 15 Nov 2010 20:04:04 +0000 (14:04 -0600)]
SCons: Cleanup SCons output during compile

13 years agoARM: Update regressions for CLCD and KMI additions
Ali Saidi [Mon, 15 Nov 2010 20:04:03 +0000 (14:04 -0600)]
ARM: Update regressions for CLCD and KMI additions

13 years agoARM: Add a Keyboard Mouse Interface controller
William Wang [Mon, 15 Nov 2010 20:04:03 +0000 (14:04 -0600)]
ARM: Add a Keyboard Mouse Interface controller

13 years agoARM: Implement a CLCD Frame buffer
William Wang [Mon, 15 Nov 2010 20:04:03 +0000 (14:04 -0600)]
ARM: Implement a CLCD Frame buffer

13 years agoARM: Add support for GDB on ARM
William Wang [Mon, 15 Nov 2010 20:04:03 +0000 (14:04 -0600)]
ARM: Add support for GDB on ARM

--HG--
rename : src/arch/alpha/remote_gdb.cc => src/arch/arm/remote_gdb.cc

13 years agoARM: Make utility.hh meet style guidelines
Ali Saidi [Mon, 15 Nov 2010 20:04:03 +0000 (14:04 -0600)]
ARM: Make utility.hh meet style guidelines

13 years agoARM: Add support for a dumb IDE controller
Ali Saidi [Mon, 15 Nov 2010 20:04:03 +0000 (14:04 -0600)]
ARM: Add support for a dumb IDE controller

13 years agoARM: Cache the misc regs at the TLB to limit readMiscReg() calls.
Ali Saidi [Mon, 15 Nov 2010 20:04:03 +0000 (14:04 -0600)]
ARM: Cache the misc regs at the TLB to limit readMiscReg() calls.

13 years agoARM: Add support for switching CPUs
Ali Saidi [Mon, 15 Nov 2010 20:04:03 +0000 (14:04 -0600)]
ARM: Add support for switching CPUs

13 years agoARM: Use the correct delete operator for RFE
Ali Saidi [Mon, 15 Nov 2010 20:04:03 +0000 (14:04 -0600)]
ARM: Use the correct delete operator for RFE

13 years agoARM: Fix SRS instruction to micro-code memory operation and register update.
Ali Saidi [Mon, 15 Nov 2010 20:04:03 +0000 (14:04 -0600)]
ARM: Fix SRS instruction to micro-code memory operation and register update.

Previously the SRS instruction attempted to writeback in initiateAcc() which
worked until a recent change, but was incorrect.

13 years agoCPU: Fix bug when a split transaction is issued to a faster cache
Ali Saidi [Mon, 15 Nov 2010 20:04:03 +0000 (14:04 -0600)]
CPU: Fix bug when a split transaction is issued to a faster cache

In the case of a split transaction and a cache that is faster than a CPU we
could get two responses before next_tick expires. Add an event that is
scheduled in this case and return false rather than asserting.

13 years agoARM: Do something predictable for an UNPREDICTABLE branch.
Ali Saidi [Mon, 15 Nov 2010 20:04:03 +0000 (14:04 -0600)]
ARM: Do something predictable for an UNPREDICTABLE branch.

13 years agoParams: Fix an off by one error and a misleading comment.
Gabe Black [Thu, 11 Nov 2010 19:58:09 +0000 (11:58 -0800)]
Params: Fix an off by one error and a misleading comment.

13 years agoSimObject: Add a comment near clear_child that it's unlikely to be called.
Gabe Black [Thu, 11 Nov 2010 19:41:13 +0000 (11:41 -0800)]
SimObject: Add a comment near clear_child that it's unlikely to be called.

13 years agoSPARC: Clean up some historical style issues.
Gabe Black [Thu, 11 Nov 2010 10:03:58 +0000 (02:03 -0800)]
SPARC: Clean up some historical style issues.

13 years agoUpdate EIO regressions for last set of patches
Ali Saidi [Wed, 10 Nov 2010 06:48:03 +0000 (00:48 -0600)]
Update EIO regressions for last set of patches

13 years agoscons: Work around for old versions of scons mistaking strings for sequences.
Gabe Black [Tue, 9 Nov 2010 19:03:40 +0000 (11:03 -0800)]
scons: Work around for old versions of scons mistaking strings for sequences.

13 years agoSimObject: Use "self" when calling the clear_child method.
Gabe Black [Tue, 9 Nov 2010 18:45:02 +0000 (10:45 -0800)]
SimObject: Use "self" when calling the clear_child method.

13 years agoX86: Fix X86_FS compilation.
Gabe Black [Mon, 8 Nov 2010 20:43:38 +0000 (12:43 -0800)]
X86: Fix X86_FS compilation.

13 years agoARM: Update SE stats for TLB stats additions
Ali Saidi [Mon, 8 Nov 2010 19:59:35 +0000 (13:59 -0600)]
ARM: Update SE stats for TLB stats additions

13 years agoARM: Add full-system regressions
Ali Saidi [Mon, 8 Nov 2010 19:58:25 +0000 (13:58 -0600)]
ARM: Add full-system regressions

13 years agoARM: Add some TLB statistics for ARM
Ali Saidi [Mon, 8 Nov 2010 19:58:25 +0000 (13:58 -0600)]
ARM: Add some TLB statistics for ARM

13 years agoARM: Add checkpointing support
Ali Saidi [Mon, 8 Nov 2010 19:58:25 +0000 (13:58 -0600)]
ARM: Add checkpointing support

13 years agoARM: Add support for M5 ops in the ARM ISA
Ali Saidi [Mon, 8 Nov 2010 19:58:24 +0000 (13:58 -0600)]
ARM: Add support for M5 ops in the ARM ISA

13 years agoARM: Keep the warnings to a minimum.
Ali Saidi [Mon, 8 Nov 2010 19:58:24 +0000 (13:58 -0600)]
ARM: Keep the warnings to a minimum.

These warnings still need to be addresses, but pages of them is
counterproductive.

13 years agoMem: Finish half-baked support for mmaping file in physmem.
Ali Saidi [Mon, 8 Nov 2010 19:58:24 +0000 (13:58 -0600)]
Mem: Finish half-baked support for mmaping file in physmem.

Physmem has a parameter to be able to mem map a file, however
it isn't actually used. This changeset utilizes the parameter
so a file can be mmapped.

13 years agoBus: Have the I/O devices that return address ranges print them out.
Ali Saidi [Mon, 8 Nov 2010 19:58:24 +0000 (13:58 -0600)]
Bus: Have the I/O devices that return address ranges print them out.

This way we actually get device names associated with the devices.

13 years agoARM: Don't return the result of a table walk the same cycle it's completed.
Ali Saidi [Mon, 8 Nov 2010 19:58:24 +0000 (13:58 -0600)]
ARM: Don't return the result of a table walk the same cycle it's completed.

The L1 cache may have been accessed to provide this data, which confuses
it, if it ends up being accesses twice in one cycle. Instead wait 1 tick
which will force the timing simple CPU to forward to its next clock cycle
when the translation completes.

Also prevent multiple outstanding table walks from occuring at once.

13 years agoscons: add a parameter to configure SCons' build cache
Ali Saidi [Mon, 8 Nov 2010 19:58:24 +0000 (13:58 -0600)]
scons: add a parameter to configure SCons' build cache

13 years agoARM/Alpha/Cpu: Stats change for prefetchs to be more like normal loads.
Ali Saidi [Mon, 8 Nov 2010 19:58:24 +0000 (13:58 -0600)]
ARM/Alpha/Cpu: Stats change for prefetchs to be more like normal loads.

13 years agoARM/Alpha/Cpu: Change prefetchs to be more like normal loads.
Ali Saidi [Mon, 8 Nov 2010 19:58:22 +0000 (13:58 -0600)]
ARM/Alpha/Cpu: Change prefetchs to be more like normal loads.

This change modifies the way prefetches work. They are now like normal loads
that don't writeback a register. Previously prefetches were supposed to call
prefetch() on the exection context, so they executed with execute() methods
instead of initiateAcc() completeAcc(). The prefetch() methods for all the CPUs
are blank, meaning that they get executed, but don't actually do anything.

On Alpha dead cache copy code was removed and prefetches are now normal ops.
They count as executed operations, but still don't do anything and IsMemRef is
not longer set on them.

On ARM IsDataPrefetch or IsInstructionPreftech is now set on all prefetch
instructions. The timing simple CPU doesn't try to do anything special for
prefetches now and they execute with the normal memory code path.

13 years agoARM: Make all ARM uops delayed commit.
Ali Saidi [Mon, 8 Nov 2010 19:58:22 +0000 (13:58 -0600)]
ARM: Make all ARM uops delayed commit.

13 years agosim: Use forward declarations for ports.
Ali Saidi [Mon, 8 Nov 2010 19:58:22 +0000 (13:58 -0600)]
sim: Use forward declarations for ports.

Virtual ports need TLB data which means anything touching a file in the arch
directory rebuilds any file that includes system.hh which in everything.

13 years agoscons: Replace the build_dir parameter to SConscript with variant_dir.
Gabe Black [Sun, 7 Nov 2010 00:48:58 +0000 (17:48 -0700)]
scons: Replace the build_dir parameter to SConscript with variant_dir.

The build_dir parameter name has been deprecated and replaced with
variant_dir. This change switches us over to avoid warning spew in newer
versions of scons.

13 years agoRef output: Update refs for PCState change.
Gabe Black [Sun, 31 Oct 2010 07:07:48 +0000 (00:07 -0700)]
Ref output: Update refs for PCState change.

13 years agoISA,CPU,etc: Create an ISA defined PC type that abstracts out ISA behaviors.
Gabe Black [Sun, 31 Oct 2010 07:07:20 +0000 (00:07 -0700)]
ISA,CPU,etc: Create an ISA defined PC type that abstracts out ISA behaviors.

This change is a low level and pervasive reorganization of how PCs are managed
in M5. Back when Alpha was the only ISA, there were only 2 PCs to worry about,
the PC and the NPC, and the lsb of the PC signaled whether or not you were in
PAL mode. As other ISAs were added, we had to add an NNPC, micro PC and next
micropc, x86 and ARM introduced variable length instruction sets, and ARM
started to keep track of mode bits in the PC. Each CPU model handled PCs in
its own custom way that needed to be updated individually to handle the new
dimensions of variability, or, in the case of ARMs mode-bit-in-the-pc hack,
the complexity could be hidden in the ISA at the ISA implementation's expense.
Areas like the branch predictor hadn't been updated to handle branch delay
slots or micropcs, and it turns out that had introduced a significant (10s of
percent) performance bug in SPARC and to a lesser extend MIPS. Rather than
perpetuate the problem by reworking O3 again to handle the PC features needed
by x86, this change was introduced to rework PC handling in a more modular,
transparent, and hopefully efficient way.

PC type:

Rather than having the superset of all possible elements of PC state declared
in each of the CPU models, each ISA defines its own PCState type which has
exactly the elements it needs. A cross product of canned PCState classes are
defined in the new "generic" ISA directory for ISAs with/without delay slots
and microcode. These are either typedef-ed or subclassed by each ISA. To read
or write this structure through a *Context, you use the new pcState() accessor
which reads or writes depending on whether it has an argument. If you just
want the address of the current or next instruction or the current micro PC,
you can get those through read-only accessors on either the PCState type or
the *Contexts. These are instAddr(), nextInstAddr(), and microPC(). Note the
move away from readPC. That name is ambiguous since it's not clear whether or
not it should be the actual address to fetch from, or if it should have extra
bits in it like the PAL mode bit. Each class is free to define its own
functions to get at whatever values it needs however it needs to to be used in
ISA specific code. Eventually Alpha's PAL mode bit could be moved out of the
PC and into a separate field like ARM.

These types can be reset to a particular pc (where npc = pc +
sizeof(MachInst), nnpc = npc + sizeof(MachInst), upc = 0, nupc = 1 as
appropriate), printed, serialized, and compared. There is a branching()
function which encapsulates code in the CPU models that checked if an
instruction branched or not. Exactly what that means in the context of branch
delay slots which can skip an instruction when not taken is ambiguous, and
ideally this function and its uses can be eliminated. PCStates also generally
know how to advance themselves in various ways depending on if they point at
an instruction, a microop, or the last microop of a macroop. More on that
later.

Ideally, accessing all the PCs at once when setting them will improve
performance of M5 even though more data needs to be moved around. This is
because often all the PCs need to be manipulated together, and by getting them
all at once you avoid multiple function calls. Also, the PCs of a particular
thread will have spatial locality in the cache. Previously they were grouped
by element in arrays which spread out accesses.

Advancing the PC:

The PCs were previously managed entirely by the CPU which had to know about PC
semantics, try to figure out which dimension to increment the PC in, what to
set NPC/NNPC, etc. These decisions are best left to the ISA in conjunction
with the PC type itself. Because most of the information about how to
increment the PC (mainly what type of instruction it refers to) is contained
in the instruction object, a new advancePC virtual function was added to the
StaticInst class. Subclasses provide an implementation that moves around the
right element of the PC with a minimal amount of decision making. In ISAs like
Alpha, the instructions always simply assign NPC to PC without having to worry
about micropcs, nnpcs, etc. The added cost of a virtual function call should
be outweighed by not having to figure out as much about what to do with the
PCs and mucking around with the extra elements.

One drawback of making the StaticInsts advance the PC is that you have to
actually have one to advance the PC. This would, superficially, seem to
require decoding an instruction before fetch could advance. This is, as far as
I can tell, realistic. fetch would advance through memory addresses, not PCs,
perhaps predicting new memory addresses using existing ones. More
sophisticated decisions about control flow would be made later on, after the
instruction was decoded, and handed back to fetch. If branching needs to
happen, some amount of decoding needs to happen to see that it's a branch,
what the target is, etc. This could get a little more complicated if that gets
done by the predecoder, but I'm choosing to ignore that for now.

Variable length instructions:

To handle variable length instructions in x86 and ARM, the predecoder now
takes in the current PC by reference to the getExtMachInst function. It can
modify the PC however it needs to (by setting NPC to be the PC + instruction
length, for instance). This could be improved since the CPU doesn't know if
the PC was modified and always has to write it back.

ISA parser:

To support the new API, all PC related operand types were removed from the
parser and replaced with a PCState type. There are two warts on this
implementation. First, as with all the other operand types, the PCState still
has to have a valid operand type even though it doesn't use it. Second, using
syntax like PCS.npc(target) doesn't work for two reasons, this looks like the
syntax for operand type overriding, and the parser can't figure out if you're
reading or writing. Instructions that use the PCS operand (which I've
consistently called it) need to first read it into a local variable,
manipulate it, and then write it back out.

Return address stack:

The return address stack needed a little extra help because, in the presence
of branch delay slots, it has to merge together elements of the return PC and
the call PC. To handle that, a buildRetPC utility function was added. There
are basically only two versions in all the ISAs, but it didn't seem short
enough to put into the generic ISA directory. Also, the branch predictor code
in O3 and InOrder were adjusted so that they always store the PC of the actual
call instruction in the RAS, not the next PC. If the call instruction is a
microop, the next PC refers to the next microop in the same macroop which is
probably not desirable. The buildRetPC function advances the PC intelligently
to the next macroop (in an ISA specific way) so that that case works.

Change in stats:

There were no change in stats except in MIPS and SPARC in the O3 model. MIPS
runs in about 9% fewer ticks. SPARC runs with 30%-50% fewer ticks, which could
likely be improved further by setting call/return instruction flags and taking
advantage of the RAS.

TODO:

Add != operators to the PCState classes, defined trivially to be !(a==b).
Smooth out places where PCs are split apart, passed around, and put back
together later. I think this might happen in SPARC's fault code. Add ISA
specific constructors that allow setting PC elements without calling a bunch
of accessors. Try to eliminate the need for the branching() function. Factor
out Alpha's PAL mode pc bit into a separate flag field, and eliminate places
where it's blindly masked out or tested in the PC.

13 years agoX86: Fault on divide by zero instead of panicing.
Gabe Black [Fri, 29 Oct 2010 09:20:47 +0000 (02:20 -0700)]
X86: Fault on divide by zero instead of panicing.

13 years agoX86: Make syscalls also serialize after.
Gabe Black [Fri, 29 Oct 2010 09:20:46 +0000 (02:20 -0700)]
X86: Make syscalls also serialize after.

13 years agoO3: Get rid of a bunch of commented out lines.
Gabe Black [Sun, 24 Oct 2010 07:43:32 +0000 (00:43 -0700)]
O3: Get rid of a bunch of commented out lines.

13 years agoConfigs: Stop setting the "mem" parameter in splash2 config files.
Gabe Black [Sat, 23 Oct 2010 03:59:22 +0000 (20:59 -0700)]
Configs: Stop setting the "mem" parameter in splash2 config files.

This parameter is no longer used, and trying to set it like these scripts were
gives a simobject two parents and causes the simulation to die.

13 years agoX86: Make nop a regular, non-microcoded instruction.
Gabe Black [Fri, 22 Oct 2010 07:24:15 +0000 (00:24 -0700)]
X86: Make nop a regular, non-microcoded instruction.

Code in the CPUs that need a nop to carry a fault can't easily deal with a
microcoded nop. This instruction format provides for one that isn't.

--HG--
rename : src/arch/x86/isa/formats/syscall.isa => src/arch/x86/isa/formats/nop.isa

13 years agoX86: Implement genMachineCheckFault.
Gabe Black [Fri, 22 Oct 2010 07:24:08 +0000 (00:24 -0700)]
X86: Implement genMachineCheckFault.

Even though this shouldn't ever be used, it might get called speculatively and
shouldn't panic.

13 years agoX86: Make syscall instructions non-speculative in SE.
Gabe Black [Fri, 22 Oct 2010 07:23:50 +0000 (00:23 -0700)]
X86: Make syscall instructions non-speculative in SE.

13 years agoISA: Simplify various implementations of completeAcc.
Gabe Black [Fri, 22 Oct 2010 07:23:19 +0000 (00:23 -0700)]
ISA: Simplify various implementations of completeAcc.

13 years agoARM: Don't pretend to writeback registers in initiateAcc.
Gabe Black [Fri, 22 Oct 2010 07:22:59 +0000 (00:22 -0700)]
ARM: Don't pretend to writeback registers in initiateAcc.

13 years agocache: minor SC assertion fix
Steve Reinhardt [Mon, 18 Oct 2010 20:05:15 +0000 (13:05 -0700)]
cache: minor SC assertion fix

Thanks to Joe Gross for finding/testing this.

13 years agoMIPS: Get rid of the backdoor device copy/pasted from and only used in Alpha.
Gabe Black [Mon, 18 Oct 2010 06:15:53 +0000 (23:15 -0700)]
MIPS: Get rid of the backdoor device copy/pasted from and only used in Alpha.

13 years agoMem: Reclaim some request flags used by MIPS for alignment checking.
Gabe Black [Sat, 16 Oct 2010 07:00:54 +0000 (00:00 -0700)]
Mem: Reclaim some request flags used by MIPS for alignment checking.

These flags were being used to identify what alignment a request needed, but
the same information is available using the request size. This change also
eliminates the isMisaligned function. If more complicated alignment checks are
needed, they can be signaled using the ASI_BITS space in the flags vector like
is currently done with ARM.

13 years agoGetArgument: Rework getArgument so that X86_FS compiles again.
Gabe Black [Sat, 16 Oct 2010 06:57:06 +0000 (23:57 -0700)]
GetArgument: Rework getArgument so that X86_FS compiles again.

When no size is specified for an argument, push the decision about what size
to use into the ISA by passing a size of -1.

13 years agoSPARC: Get rid of the copy/pasted StackTrace stolen from Alpha.
Gabe Black [Thu, 14 Oct 2010 21:02:23 +0000 (14:02 -0700)]
SPARC: Get rid of the copy/pasted StackTrace stolen from Alpha.

13 years agoMem: Change the CLREX flag to CLEAR_LL.
Gabe Black [Wed, 13 Oct 2010 08:57:31 +0000 (01:57 -0700)]
Mem: Change the CLREX flag to CLEAR_LL.

CLREX is the name of an ARM instruction, not a name for this generic flag.

13 years agoX86: Detect attempts to load a 32 bit kernel and panic.
Gabe Black [Mon, 11 Oct 2010 03:39:26 +0000 (20:39 -0700)]
X86: Detect attempts to load a 32 bit kernel and panic.

13 years agoSPARC: Make SPARC's ISA's clear function initialize everything it should.
Gabe Black [Mon, 11 Oct 2010 03:38:05 +0000 (20:38 -0700)]
SPARC: Make SPARC's ISA's clear function initialize everything it should.

Also make it not set some pointers to NULL potentially introducing a memory
leak. That should be done in the constructor.

13 years agoAlpha: Force all the IPRs to an initial, determinstic value when cleared.
Gabe Black [Mon, 11 Oct 2010 03:37:50 +0000 (20:37 -0700)]
Alpha: Force all the IPRs to an initial, determinstic value when cleared.

13 years agoAlpha: Initialize the data TLB mode IPR.
Gabe Black [Mon, 11 Oct 2010 03:37:39 +0000 (20:37 -0700)]
Alpha: Initialize the data TLB mode IPR.

13 years agoUART: Make the 8250's MCR return a deterministic value.
Gabe Black [Sat, 9 Oct 2010 19:41:31 +0000 (12:41 -0700)]
UART: Make the 8250's MCR return a deterministic value.

This change makes the 8250 device return the value it has for the MCR when
read instead of leaving the packet data unmodified/uninitialized. The value
the UART has for the MCR may not be right, but that's a seperate issue that
apparently hasn't caused any problems to date.

13 years agoAlpha: Fix Alpha NumMiscArchRegs constant.
Gabe Black [Mon, 4 Oct 2010 18:58:06 +0000 (11:58 -0700)]
Alpha: Fix Alpha NumMiscArchRegs constant.

Also add asserts in O3's Scoreboard class to catch bad indexes.

13 years agoPower: Fix compile error from previous push.
Ali Saidi [Fri, 1 Oct 2010 22:57:56 +0000 (17:57 -0500)]
Power: Fix compile error from previous push.

13 years agoARM: Make the TLB a little bit faster by moving most recently used items to front...
Ali Saidi [Fri, 1 Oct 2010 21:04:04 +0000 (16:04 -0500)]
ARM: Make the TLB a little bit faster by moving most recently used items to front of list

13 years agoARM: Add a fake flash controller so that unmodified linux can boot
Ali Saidi [Fri, 1 Oct 2010 21:04:02 +0000 (16:04 -0500)]
ARM: Add a fake flash controller so that unmodified linux can boot

With this change an unmodified Linux kernel can boot in M5.