gem5.git
13 years agoX86: Build O3 by default in SE.
Gabe Black [Thu, 3 Feb 2011 02:17:16 +0000 (18:17 -0800)]
X86: Build O3 by default in SE.

13 years agoTime: Add serialization functions to the Time class.
Gabe Black [Thu, 3 Feb 2011 02:05:03 +0000 (18:05 -0800)]
Time: Add serialization functions to the Time class.

13 years agoX86: Change how the default disk image gets set up.
Gabe Black [Thu, 3 Feb 2011 02:03:58 +0000 (18:03 -0800)]
X86: Change how the default disk image gets set up.

The disk image to use was always being forced to a particular value. This
change changes what disk image is selected as the default based on the
architecture being built. In the future, a more sophisticated system might be
used that selected a path based on certain rules instead of relying on one off
file names.

13 years agoX86: Add L1 caches for the TLB walkers.
Gabe Black [Wed, 2 Feb 2011 02:28:41 +0000 (18:28 -0800)]
X86: Add L1 caches for the TLB walkers.

Small L1 caches are connected to the TLB walkers when caches are used. This
allows them to participate in the coherence protocol properly.

13 years agoFault: Move the definition of NoFault from faults.hh to fault.hh.
Gabe Black [Mon, 31 Jan 2011 21:13:00 +0000 (13:13 -0800)]
Fault: Move the definition of NoFault from faults.hh to fault.hh.

Moving the definition of NoFault into fault.hh doesn't bring any new
dependencies with it, and allows some files to include just fault.hh which has
less baggage. NoFault will still be available to everything that includes
faults.hh because it includes fault.hh.

13 years agorefcnt: Change things around so that we handle constness correctly.
Nathan Binkert [Sun, 23 Jan 2011 05:48:06 +0000 (21:48 -0800)]
refcnt: Change things around so that we handle constness correctly.
To use a non const pointer:
typedef RefCountingPtr<Foo> FooPtr;

To use a const pointer:
typedef RefCountingPtr<const Foo> ConstFooPtr;

13 years agoSConstruct: Fix the librt check in SConstruct.
Gabe Black [Sat, 22 Jan 2011 01:51:22 +0000 (17:51 -0800)]
SConstruct: Fix the librt check in SConstruct.

13 years agocheckpointing: fix bug from curTick accessor conversion.
Steve Reinhardt [Fri, 21 Jan 2011 06:13:33 +0000 (22:13 -0800)]
checkpointing: fix bug from curTick accessor conversion.

Regex replacement of curTick with curTick() accidentally
changed checkpoint key string for serialization but not
for unserialization.

13 years agoTimeSync: Use the new setTick and getTick functions.
Gabe Black [Thu, 20 Jan 2011 00:22:23 +0000 (16:22 -0800)]
TimeSync: Use the new setTick and getTick functions.

13 years agoTime: Add setTick and getTick functions to the Time class.
Gabe Black [Thu, 20 Jan 2011 00:22:15 +0000 (16:22 -0800)]
Time: Add setTick and getTick functions to the Time class.

13 years agoTime: Add a mechanism to prevent M5 from running faster than real time.
Gabe Black [Wed, 19 Jan 2011 19:48:00 +0000 (11:48 -0800)]
Time: Add a mechanism to prevent M5 from running faster than real time.

M5 skips over any simulated time where it doesn't have any work to do. When
the simulation is active, the time skipped is short and the work done at any
point in time is relatively substantial. If the time between events is long
and/or the work to do at each event is small, it's possible for simulated time
to pass faster than real time. When running a benchmark that can be good
because it means the simulation will finish sooner in real time. When
interacting with the real world through, for instance, a serial terminal or
bridge to a real network, this can be a problem. Human or network response time
could be greatly exagerated from the perspective of the simulation and make
simulated events happen "too soon" from an external perspective.

This change adds the capability to force the simulation to run no faster than
real time. It does so by scheduling a periodic event that checks to see if
its simulated period is shorter than its real period. If it is, it stalls the
simulation until they're equal. This is called time syncing.

A future change could add pseudo instructions which turn time syncing on and
off from within the simulation. That would allow time syncing to be used for
the interactive parts of a session but then turned off when running a
benchmark using the m5 utility program inside a script. Time syncing would
probably not happen anyway while running a benchmark because there would be
plenty of work for M5 to do, but the event overhead could be avoided.

13 years agoARM/O3: Add regressions for ARM w/ O3 CPU.
Ali Saidi [Tue, 18 Jan 2011 22:30:06 +0000 (16:30 -0600)]
ARM/O3: Add regressions for ARM w/ O3 CPU.

13 years agoStats: Update stats for previous set of patches.
Ali Saidi [Tue, 18 Jan 2011 22:30:06 +0000 (16:30 -0600)]
Stats: Update stats for previous set of patches.

13 years agoO3: Fix itstate prediction and recovery.
Matt Horsnell [Tue, 18 Jan 2011 22:30:05 +0000 (16:30 -0600)]
O3: Fix itstate prediction and recovery.

Any change of control flow now resets the itstate to 0 mask and 0 condition,
except where the control flow alteration write into the cpsr register. These
case, for example return from an iterrupt, require the predecoder to recover
the itstate.

As there is a window of opportunity between the return from an interrupt
changing the control flow at the head of the pipe and the commit of the update
to the CPSR, the predecoder needs to be able to grab the ITstate early. This
is now handled by setting the forcedItState inside a PCstate for the control
flow altering instruction.

That instruction will have the correct mask/cond, but will not have a valid
itstate until advancePC is called (note this happens to advance the execution).
When the new PCstate is copy constructed it gets the itstate cond/mask, and
upon advancing the PC the itstate becomes valid.

Subsequent advancing invalidates the state and zeroes the cond/mask. This is
handled in isolation for the ARM ISA and should have no impact on other ISAs.

Refer arch/arm/types.hh and arch/arm/predecoder.cc for the details.

13 years agoO3: Fix some variable length instruction issues with the O3 CPU and ARM ISA.
Matt Horsnell [Tue, 18 Jan 2011 22:30:05 +0000 (16:30 -0600)]
O3: Fix some variable length instruction issues with the O3 CPU and ARM ISA.

13 years agoO3: Don't test misprediction on load instructions until executed.
Matt Horsnell [Tue, 18 Jan 2011 22:30:05 +0000 (16:30 -0600)]
O3: Don't test misprediction on load instructions until executed.

13 years agoO3: Keep around the last committed instruction and use for squashing.
Ali Saidi [Tue, 18 Jan 2011 22:30:05 +0000 (16:30 -0600)]
O3: Keep around the last committed instruction and use for squashing.

Without this change 0 is always used for the youngest sequence number if
a squash occured and the ROB was empty (E.g. an instruction is marked
serializeAfter or a fetch stall prevents other instructions from issuing).
Using 0 there is a race to rename where an instruction that committed the
same cycle as the squashing instruction can have it's renamed state undone
by the squash using sequence number 0.

13 years agoO3: Don't try to scoreboard misc registers.
Ali Saidi [Tue, 18 Jan 2011 22:30:05 +0000 (16:30 -0600)]
O3: Don't try to scoreboard misc registers.

I'm not positive this is the correct fix, but it's working right now.
Either we need to do something like this, prevent the misc reg from being renamed at all,
or there something else going on. We need to find the root cause as to why
this is only a problem sometimes.

13 years agoARM: The ARM decoder should not panic when decoding undefined holes is arch.
Matt Horsnell [Tue, 18 Jan 2011 22:30:05 +0000 (16:30 -0600)]
ARM: The ARM decoder should not panic when decoding undefined holes is arch.

This can abort simulations when the fetch unit runs ahead and speculatively
decodes instructions that are off the execution path.

13 years agoO3: Fix corner cases where multiple squashes/fetch redirects overwrite timebuf.
Matt Horsnell [Tue, 18 Jan 2011 22:30:05 +0000 (16:30 -0600)]
O3: Fix corner cases where multiple squashes/fetch redirects overwrite timebuf.

13 years agoO3: Fix mispredicts from non control instructions.
Matt Horsnell [Tue, 18 Jan 2011 22:30:05 +0000 (16:30 -0600)]
O3: Fix mispredicts from non control instructions.
The squash inside the fetch unit should not attempt to remove them from the
branch predictor as non-control instructions are not pushed into the predictor.

13 years agoO3: Fixes the way prefetches are handled inside the iew unit.
Matt Horsnell [Tue, 18 Jan 2011 22:30:02 +0000 (16:30 -0600)]
O3: Fixes the way prefetches are handled inside the iew unit.

This patch prevents the prefetch being added to the instCommit queue twice.

13 years agoO3: Support timing translations for O3 CPU fetch.
Ali Saidi [Tue, 18 Jan 2011 22:30:02 +0000 (16:30 -0600)]
O3: Support timing translations for O3 CPU fetch.

13 years agoARM: Add support for moving predicated false dest operands from sources.
Ali Saidi [Tue, 18 Jan 2011 22:30:02 +0000 (16:30 -0600)]
ARM: Add support for moving predicated false dest operands from sources.

13 years agoO3: Fixes fetch deadlock when the interrupt clears before CPU handles it.
Min Kyu Jeong [Tue, 18 Jan 2011 22:30:01 +0000 (16:30 -0600)]
O3: Fixes fetch deadlock when the interrupt clears before CPU handles it.

When this condition occurs the cpu should restart the fetch stage to fetch from
the original execution path. Fault handling in the commit stage is cleaned up a
little bit so the control flow is simplier. Finally, if an instruction is being
used to carry a fault it isn't executed, so the fault propagates appropriately.

13 years agoARM: Use an actual NOP instead of a instruction that happens to do nothing
Ali Saidi [Tue, 18 Jan 2011 22:30:01 +0000 (16:30 -0600)]
ARM: Use an actual NOP instead of a instruction that happens to do nothing

13 years agoARM: fix mismatched new/delete.
Ali Saidi [Tue, 18 Jan 2011 22:30:01 +0000 (16:30 -0600)]
ARM: fix mismatched new/delete.

13 years agomkblankimage: bash != sh on many systems and this script needs bash
Ali Saidi [Tue, 18 Jan 2011 22:30:00 +0000 (16:30 -0600)]
mkblankimage: bash != sh on many systems and this script needs bash

13 years agoARM: Add code for a simple bootloader for MP boot.
Ali Saidi [Tue, 18 Jan 2011 22:29:59 +0000 (16:29 -0600)]
ARM: Add code for a simple bootloader for MP boot.

13 years agoUnit tests: Convert the refcnttest unit test to use the new EXPECT macros.
Gabe Black [Tue, 18 Jan 2011 09:27:04 +0000 (01:27 -0800)]
Unit tests: Convert the refcnttest unit test to use the new EXPECT macros.

13 years agoUnit tests: Define a header file for common unit testing functions/macros.
Gabe Black [Tue, 18 Jan 2011 09:26:55 +0000 (01:26 -0800)]
Unit tests: Define a header file for common unit testing functions/macros.

13 years agotime: improve time datastructure
Nathan Binkert [Sat, 15 Jan 2011 15:48:25 +0000 (07:48 -0800)]
time: improve time datastructure

Use posix clock functions (and librt) if it is available.
Inline a bunch of functions and implement more operators.
* * *
time: more cleanup

13 years agoChange interface between coherence protocols and CacheMemory
Nilay Vaish [Tue, 18 Jan 2011 00:46:16 +0000 (18:46 -0600)]
Change interface between coherence protocols and CacheMemory
The purpose of this patch is to change the way CacheMemory interfaces with
coherence protocols. Currently, whenever a cache controller (defined in the
protocol under consideration) needs to carry out any operation on a cache
block, it looks up the tag hash map and figures out whether or not the block
exists in the cache. In case it does exist, the operation is carried out
(which requires another lookup). As observed through profiling of different
protocols, multiple such lookups take place for a given cache block. It was
noted that the tag lookup takes anything from 10% to 20% of the simulation
time. In order to reduce this time, this patch is being posted.

I have to acknowledge that the many of the thoughts that went in to this
patch belong to Brad.

Changes to CacheMemory, TBETable and AbstractCacheEntry classes:
1. The lookup function belonging to CacheMemory class now returns a pointer
to a cache block entry, instead of a reference. The pointer is NULL in case
the block being looked up is not present in the cache. Similar change has
been carried out in the lookup function of the TBETable class.
2. Function for setting and getting access permission of a cache block have
been moved from CacheMemory class to AbstractCacheEntry class.
3. The allocate function in CacheMemory class now returns pointer to the
allocated cache entry.

Changes to SLICC:
1. Each action now has implicit variables - cache_entry and tbe. cache_entry,
if != NULL, must point to the cache entry for the address on which the action
is being carried out. Similarly, tbe should also point to the transaction
buffer entry of the address on which the action is being carried out.
2. If a cache entry or a transaction buffer entry is passed on as an
argument to a function, it is presumed that a pointer is being passed on.
3. The cache entry and the tbe pointers received __implicitly__ by the
actions, are passed __explicitly__ to the trigger function.
4. While performing an action, set/unset_cache_entry, set/unset_tbe are to
be used for setting / unsetting cache entry and tbe pointers respectively.
5. is_valid() and is_invalid() has been made available for testing whether
a given pointer 'is not NULL' and 'is NULL' respectively.
6. Local variables are now available, but they are assumed to be pointers
always.
7. It is now possible for an object of the derieved class to make calls to
a function defined in the interface.
8. An OOD token has been introduced in SLICC. It is same as the NULL token
used in C/C++. If you are wondering, OOD stands for Out Of Domain.
9. static_cast can now taken an optional parameter that asks for casting the
given variable to a pointer of the given type.
10. Functions can be annotated with 'return_by_pointer=yes' to return a
pointer.
11. StateMachine has two new variables, EntryType and TBEType. EntryType is
set to the type which inherits from 'AbstractCacheEntry'. There can only be
one such type in the machine. TBEType is set to the type for which 'TBE' is
used as the name.

All the protocols have been modified to conform with the new interface.

13 years agoSPARC: Update stats for the call r15 as source change.
Gabe Black [Sat, 15 Jan 2011 23:30:34 +0000 (15:30 -0800)]
SPARC: Update stats for the call r15 as source change.

13 years agoSPARC: Adjust the "call" instruction so R15 doesn't get marked as a source.
Gabe Black [Sat, 15 Jan 2011 23:30:17 +0000 (15:30 -0800)]
SPARC: Adjust the "call" instruction so R15 doesn't get marked as a source.

13 years agoRegression Tests: Update the output for MESI_CMP_directory
Nilay Vaish [Fri, 14 Jan 2011 04:48:03 +0000 (22:48 -0600)]
Regression Tests: Update the output for MESI_CMP_directory
This patch updates the output for regression tests that are carried out on
MESI_CMP_directory protocol. The changes made to the protocol in order to
remove the bugs present result in regression failure for the 60.rubytest.
Since the earlier protocol was incorrect, so we certainly cannot relay on the
earlier reference output. Hence, the update.

13 years agoRuby: Fixes MESI CMP directory protocol
Nilay Vaish [Fri, 14 Jan 2011 04:17:11 +0000 (22:17 -0600)]
Ruby: Fixes MESI CMP directory protocol
The current implementation of MESI CMP directory protocol is broken.
This patch, from Arkaprava Basu, fixes the protocol.

13 years agoStyle checker: Fix a couple bugs in style.py.
Gabe Black [Thu, 13 Jan 2011 20:30:18 +0000 (12:30 -0800)]
Style checker: Fix a couple bugs in style.py.

13 years agoinorder: fix RUBY_FS build
Korey Sewell [Wed, 12 Jan 2011 16:52:29 +0000 (11:52 -0500)]
inorder: fix RUBY_FS build
the current code was using incorrect dummy instruction in interrupts function

13 years agoruby: get rid of ruby's Debug.hh
Nathan Binkert [Mon, 10 Jan 2011 19:11:20 +0000 (11:11 -0800)]
ruby: get rid of ruby's Debug.hh

Get rid of the Debug class
Get rid of ASSERT and use assert
Use DPRINTFR for ProtocolTrace

13 years agostats: Add a histogram statistic type
Nathan Binkert [Mon, 10 Jan 2011 19:11:17 +0000 (11:11 -0800)]
stats: Add a histogram statistic type

13 years agostats: fix stat test from curTick change
Nathan Binkert [Mon, 10 Jan 2011 19:11:17 +0000 (11:11 -0800)]
stats: fix stat test from curTick change

13 years agostats: fix the distribution stat
Nathan Binkert [Mon, 10 Jan 2011 19:11:16 +0000 (11:11 -0800)]
stats: fix the distribution stat

13 years agostyle: prevent the style hook from aborting uncleanly because of an exception
Nathan Binkert [Mon, 10 Jan 2011 19:11:16 +0000 (11:11 -0800)]
style: prevent the style hook from aborting uncleanly because of an exception

13 years agostyle: clean up style hook code a bit
Nathan Binkert [Mon, 10 Jan 2011 19:11:15 +0000 (11:11 -0800)]
style: clean up style hook code a bit

I've renamed the check_whitespace operation to check_style.  You're going to
need to change your .hg/hgrc file.  While you're at it, add a pre-qrefresh
hook please.

13 years agoRoot: Get rid of unnecessary includes in root.cc.
Gabe Black [Mon, 10 Jan 2011 12:53:34 +0000 (04:53 -0800)]
Root: Get rid of unnecessary includes in root.cc.

13 years agoCurtick: Fix mysql.cc build needing curTick.
Gabe Black [Mon, 10 Jan 2011 12:53:20 +0000 (04:53 -0800)]
Curtick: Fix mysql.cc build needing curTick.

13 years agoRefCount: Add a unit test for reference counting pointers.
Gabe Black [Mon, 10 Jan 2011 11:56:42 +0000 (03:56 -0800)]
RefCount: Add a unit test for reference counting pointers.

This test exercises each of the functions in the reference counting pointer
implementation individually (except get()) and verifies they have some
minimially expected behavior. It also checks that reference counted objects
are freed when their usage count goes to 0 in some basic situations,
specifically a pointer being set to NULL and a pointer being deleted.

13 years agoReplace curTick global variable with accessor functions.
Steve Reinhardt [Sat, 8 Jan 2011 05:50:29 +0000 (21:50 -0800)]
Replace curTick global variable with accessor functions.
This step makes it easy to replace the accessor functions
(which still access a global variable) with ones that access
per-thread curTick values.

13 years agostats: rename StatEvent() function to schedStatEvent().
Steve Reinhardt [Sat, 8 Jan 2011 05:50:29 +0000 (21:50 -0800)]
stats: rename StatEvent() function to schedStatEvent().
This follows the style rules and is more descriptive.

13 years agosim: clean up CountedDrainEvent slightly.
Steve Reinhardt [Sat, 8 Jan 2011 05:50:29 +0000 (21:50 -0800)]
sim: clean up CountedDrainEvent slightly.
There's no reason for it to derive from SimLoopExitEvent.
This whole drain thing needs to be redone eventually,
but this is a stopgap to make later changes to
SimLoopExitEvent feasible.

13 years agosim: delete unused CheckSwapEvent code.
Steve Reinhardt [Sat, 8 Jan 2011 05:50:29 +0000 (21:50 -0800)]
sim: delete unused CheckSwapEvent code.
There's no way to even create one of these anymore.

13 years agopseudoinst: get rid of mainEventQueue references.
Steve Reinhardt [Sat, 8 Jan 2011 05:50:29 +0000 (21:50 -0800)]
pseudoinst: get rid of mainEventQueue references.
Avoid direct references to mainEventQueue in pseudo-insts
by indirecting through associated CPU object.
Made exitSimLoop() more flexible to enable some of these.

13 years agoinorder: replace schedEvent() code with reschedule().
Steve Reinhardt [Sat, 8 Jan 2011 05:50:29 +0000 (21:50 -0800)]
inorder: replace schedEvent() code with reschedule().
There were several copies of similar functions that looked
like they all replicated reschedule(), so I replaced them
with direct calls.  Keeping this separate from the previous
cset since there may be some subtle functional differences
if the code ever reschedules an event that is scheduled but
not squashed (though none were detected in the regressions).

13 years agoinorder: get rid of references to mainEventQueue.
Steve Reinhardt [Sat, 8 Jan 2011 05:50:29 +0000 (21:50 -0800)]
inorder: get rid of references to mainEventQueue.
Events need to be scheduled on the queue assigned
to the SimObject, not on the global queue (which
should be going away).
Also cleaned up a number of redundant expressions
that made the code unnecessarily verbose.

13 years agoscons: show sources and targets when building, and colorize output.
Steve Reinhardt [Sat, 8 Jan 2011 05:50:13 +0000 (21:50 -0800)]
scons: show sources and targets when building, and colorize output.

I like the brevity of Ali's recent change, but the ambiguity of
sometimes showing the source and sometimes the target is a little
confusing.  This patch makes scons typically list all sources and
all targets for each action, with the common path prefix factored
out for brevity.  It's a little more verbose now but also more
informative.

Somehow Ali talked me into adding colors too, which is a whole
'nother story.

13 years agoRuby: Updates MOESI Hammer protocol
Nilay Vaish [Wed, 5 Jan 2011 03:40:49 +0000 (21:40 -0600)]
Ruby: Updates MOESI Hammer protocol
This patch changes the manner in which data is copied from L1 to L2 cache in
the implementation of the Hammer's cache coherence protocol. Earlier, data was
copied directly from one cache entry to another. This has been broken in to
two parts. First, the data is copied from the source cache entry to a
transaction buffer entry. Then, data is copied from the transaction buffer
entry to the destination cache entry.

This has been done to maintain the invariant - at any given instant, multiple
caches under a controller are exclusive with respect to each other.

13 years agoParams: Print the IP components in the right order.
Gabe Black [Tue, 4 Jan 2011 22:11:49 +0000 (17:11 -0500)]
Params: Print the IP components in the right order.

13 years agoMove sched_list.hh and timebuf.hh from src/base to src/cpu.
Steve Reinhardt [Mon, 3 Jan 2011 22:35:47 +0000 (14:35 -0800)]
Move sched_list.hh and timebuf.hh from src/base to src/cpu.
These files really aren't general enough to belong in src/base.
This patch doesn't reorder include lines, leaving them unsorted
in many cases, but Nate's magic script will fix that up shortly.

--HG--
rename : src/base/sched_list.hh => src/cpu/sched_list.hh
rename : src/base/timebuf.hh => src/cpu/timebuf.hh

13 years agoDelete unused files from src/base directory.
Steve Reinhardt [Mon, 3 Jan 2011 22:35:45 +0000 (14:35 -0800)]
Delete unused files from src/base directory.

13 years agoMake commenting on close namespace brackets consistent.
Steve Reinhardt [Mon, 3 Jan 2011 22:35:43 +0000 (14:35 -0800)]
Make commenting on close namespace brackets consistent.

Ran all the source files through 'perl -pi' with this script:

s|\s*(};?\s*)?/\*\s*(end\s*)?namespace\s*(\S+)\s*\*/(\s*})?|} // namespace $3|;
s|\s*};?\s*//\s*(end\s*)?namespace\s*(\S+)\s*|} // namespace $2\n|;
s|\s*};?\s*//\s*(\S+)\s*namespace\s*|} // namespace $1\n|;

Also did a little manual editing on some of the arch/*/isa_traits.hh files
and src/SConscript.

13 years agoRefCount: Fix reference counting pointer == and != with a T* on the left.
Gabe Black [Mon, 3 Jan 2011 20:31:20 +0000 (15:31 -0500)]
RefCount: Fix reference counting pointer == and != with a T* on the left.

These operators were expecting a const T& instead of a const T*, and were not
being picked up and used by gcc in the right places as a result. Apparently no
one used these operators before. A unit test which exposed these problems,
verified the solution, and checks other basic functionality is on the way.

13 years agoRuby: Add option for random seed to Ruby.py
Nilay Vaish [Mon, 3 Jan 2011 18:40:31 +0000 (12:40 -0600)]
Ruby: Add option for random seed to Ruby.py
This patch adds an option to the script Ruby.py for setting the parameter
m_random_seed used for randomizing delays in the memory system. The option
can be specified as "--random_seed <seed value>".

13 years agoswig: use <> for system %includes instead of ""
Nathan Binkert [Thu, 30 Dec 2010 17:51:04 +0000 (12:51 -0500)]
swig: use <> for system %includes instead of ""

13 years agostyle: make style hook work with pre-qrefresh and update to use new code
Nathan Binkert [Thu, 30 Dec 2010 17:53:56 +0000 (12:53 -0500)]
style: make style hook work with pre-qrefresh and update to use new code
clean up the code a little bit while we're at it.

I recommend that everyone adds the pre-qrefresh hook below since it
will make qref run the style hook and not just commit/qpush

[extensions]
style = <m5 path>/util/style.py

[hooks]
pretxncommit.style = python:style.check_whitespace
pre-qrefresh.style = python:style.check_whitespace

13 years agoPerfectCacheMemory: Add return statements to two functions.
Nilay Vaish [Thu, 23 Dec 2010 19:36:18 +0000 (13:36 -0600)]
PerfectCacheMemory: Add return statements to two functions.
Two functions in src/mem/ruby/system/PerfectCacheMemory.hh, tryCacheAccess()
and cacheProbe(), end with calls to panic(). Both of these functions have
return type other than void. Any file that includes this header file fails
to compile because of the missing return statement. This patch adds dummy
values so as to avoid the compiler warnings.

13 years agoThis patch removes the WARN_* and ERROR_* from src/mem/ruby/common/Debug.hh file...
Nilay Vaish [Thu, 23 Dec 2010 05:15:24 +0000 (23:15 -0600)]
This patch removes the WARN_* and ERROR_* from src/mem/ruby/common/Debug.hh file. These statements have been replaced with warn(), panic() and fatal() defined in src/base/misc.hh

13 years agomemtest: delete some crufty dead code
Steve Reinhardt [Wed, 22 Dec 2010 06:57:29 +0000 (22:57 -0800)]
memtest: delete some crufty dead code

13 years agoGet rid of unused file src/base/dbl_list.hh
Steve Reinhardt [Wed, 22 Dec 2010 06:39:26 +0000 (22:39 -0800)]
Get rid of unused file src/base/dbl_list.hh

13 years agostats: allow stats to be reset even if no objects have been instantiated
Nathan Binkert [Tue, 21 Dec 2010 16:02:41 +0000 (08:02 -0800)]
stats: allow stats to be reset even if no objects have been instantiated

13 years agoimporter: fix error message
Nathan Binkert [Tue, 21 Dec 2010 16:02:40 +0000 (08:02 -0800)]
importer: fix error message

13 years agoscons: remove extra dependencies
Nathan Binkert [Tue, 21 Dec 2010 16:02:39 +0000 (08:02 -0800)]
scons: remove extra dependencies

13 years agoStyle: Replace some tabs with spaces.
Gabe Black [Mon, 20 Dec 2010 21:24:40 +0000 (16:24 -0500)]
Style: Replace some tabs with spaces.

13 years agoParams: Fix a broken error message in verifyIp.
Gabe Black [Mon, 20 Dec 2010 09:20:58 +0000 (04:20 -0500)]
Params: Fix a broken error message in verifyIp.

13 years agoARM: Take advantage of new PCState syntax.
Gabe Black [Thu, 9 Dec 2010 22:45:17 +0000 (14:45 -0800)]
ARM: Take advantage of new PCState syntax.

13 years agoARM: Get rid of some unused FP operands.
Gabe Black [Thu, 9 Dec 2010 22:45:04 +0000 (14:45 -0800)]
ARM: Get rid of some unused FP operands.

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.