Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-10-09 | eventq: Don't use inline friend function when a static function will do. | Nathan Binkert | |
Another good reason to avoid this is that swig will try to wrap the friend, but it won't try to wrap a private static function. | |||
2008-10-09 | SCons: add code to provide a libm5 shared library. | Nathan Binkert | |
Targets look like libm5_debug.so. This target can be dynamically linked into another C++ program and provide just about all of the M5 features. Additionally, this library is a standalone module that can be imported into python with an "import libm5_debug" type command line. | |||
2008-10-09 | eventq: I'm sick of the warning about MaxTick being unused. | Nathan Binkert | |
2008-10-09 | stats: use properly signed types for looping and comparison | Nathan Binkert | |
2008-10-09 | style: Bring statistics code in line with the proper style. | Nathan Binkert | |
2008-10-09 | O3: Generaize the O3 IMPL class so it isn't split out by ISA. | Gabe Black | |
--HG-- rename : src/cpu/o3/sparc/cpu_builder.cc => src/cpu/o3/cpu_builder.cc rename : src/cpu/o3/sparc/dyn_inst.cc => src/cpu/o3/dyn_inst.cc rename : src/cpu/o3/sparc/impl.hh => src/cpu/o3/impl.hh rename : src/cpu/o3/sparc/thread_context.cc => src/cpu/o3/thread_context.cc | |||
2008-10-09 | O3: Generaize the O3 dynamic instruction class so it isn't split out by ISA. | Gabe Black | |
--HG-- rename : src/cpu/o3/dyn_inst.hh => src/cpu/o3/dyn_inst_decl.hh rename : src/cpu/o3/alpha/dyn_inst_impl.hh => src/cpu/o3/dyn_inst_impl.hh | |||
2008-10-09 | O3: Generalize the O3 CPU object so it isn't split out by ISA. | Gabe Black | |
2008-10-09 | Microcode: Fix a silent typo error in the microcode assembler. | Gabe Black | |
2008-10-09 | Microcode: Fix a very old bug with parsing external labels in microcode. | Gabe Black | |
2008-10-09 | CPU: Fix where setMicroPC was being called instead of setNextMicroPC. | Gabe Black | |
2008-10-09 | X86: Fix the debugging microops. The debug functions can't handle a string ↵ | Gabe Black | |
object format. | |||
2008-10-09 | X86: Make far ret modify CS instead of some random selector. | Gabe Black | |
2008-10-06 | python: cleanup options parsing stuff so that it properly deals with defaults. | Nathan Binkert | |
While we're at it, make it possible to run main.py in a somewhat standalone mode again so that we can test things without compiling. | |||
2008-10-06 | fix shadow set bugs in MIPS code that caused out of bounds access... | Korey Sewell | |
panic rdpgpr/wrpgpr instructions until a better impl. of MIPS shadow sets is available. | |||
2008-10-02 | unittest: Add unit tests to the scons framework. | Nathan Binkert | |
Also fix the unit tests so they actually compile correctly. | |||
2008-10-02 | unittest: Cleanup unit tests. Follow style. Garbage Collect. | Nathan Binkert | |
--HG-- rename : src/unittest/rangemaptest2.cc => src/unittest/rangemultimaptest.cc | |||
2008-10-02 | stats: Fix small bug pointed out by unit testing. | Nathan Binkert | |
2008-10-02 | Output: Verify output files are open after opening them. | Ali Saidi | |
2008-09-29 | Make overriding port assignments in Python work, | Steve Reinhardt | |
and print better error messages when it doesn't. | |||
2008-09-29 | Fix EVENTQ_DEBUG vs DEBUG_EVENTQ #define inconsistency. | Steve Reinhardt | |
2008-09-29 | alpha: Need to include cstring so that g++ 4.3 works. | Nathan Binkert | |
2008-09-27 | gcc: Add extra parens to quell warnings. | Nathan Binkert | |
Even though we're not incorrect about operator precedence, let's add some parens in some particularly confusing places to placate GCC 4.3 so that we don't have to turn the warning off. Agreed that this is a bit of a pain for those users who get the order of operations correct, but it is likely to prevent bugs in certain cases. | |||
2008-09-27 | style: Make a style pass over the whole arch/alpha directory. | Nathan Binkert | |
2008-09-27 | alpha: Clean up namespace usage. | Nathan Binkert | |
2008-09-27 | arch: TheISA shouldn't really ever be used in the arch directory. | Nathan Binkert | |
We should always refer to the specific ISA in that arch directory. This is especially necessary if we're ever going to make it to the point where we actually have heterogeneous systems. | |||
2008-09-27 | alpha: Get rid fo the namespace called EV5. | Nathan Binkert | |
We're never going to do an alpha platform other than the one we've got. | |||
2008-09-27 | style | Nathan Binkert | |
2008-09-27 | add a bit of style | Nathan Binkert | |
2008-09-26 | style: missed space after switch | Nathan Binkert | |
2008-09-26 | When nesting if statements, use braces to avoid ambiguous else clauses. | Nathan Binkert | |
2008-09-26 | Use logical operator instead of bitwise operator for correctness. | Nathan Binkert | |
2008-09-26 | style: bring this file into M5 style, use the new pte translate function. | Nathan Binkert | |
2008-09-26 | scons: disable several gcc warnings for swig autogenerated wrapper code. | Nathan Binkert | |
2008-09-26 | style: These files didn't even come close to following the M5 style guide. | Nathan Binkert | |
2008-09-26 | O3CPU: Fix thread writeback logic. | Kevin Lim | |
Fix the logic in the LSQ that determines if there are any stores to write back. In the commit stage, check for thread specific writebacks instead of just any writeback. | |||
2008-09-26 | O3CPU: Add a hack to ensure that nextPC is set correctly after syscalls. | Kevin Lim | |
Just check CPU's nextPC before and after syscall and if it changes, update this instruction's nextPC because the syscall must have changed the nextPC. | |||
2008-09-23 | sparc: Fix style, create a helper function for translation. | Nathan Binkert | |
The translate function simplifies code and removes some compiler warnings in gcc 3.4 | |||
2008-09-22 | scons: Separate swig environment so we can have different flags. | Nathan Binkert | |
Swig code isn't quite perfect, so let's not turn on all of the warnings. | |||
2008-09-22 | gcc: Version 4.3 is pretty anal about shadowing types, placate it. | Nathan Binkert | |
In the future, it would be nice to put the O3CPU into its own namespace so that we don't end up hardcoding pointers to the global namespace. | |||
2008-09-22 | style | Nathan Binkert | |
2008-09-19 | We're using the static keyword improperly in some cases. | Nathan Binkert | |
2008-09-19 | atomicio: provide atomic read and write functions. | Nathan Binkert | |
These functions keep trying to read and write until all data has been transferred, or an error occurrs. In the case where an end of file hasn't been reached, but all of the bytes have not been read/written, try again. On EINTR, try again. | |||
2008-09-19 | Use C++ limits where applicable for portability | Nathan Binkert | |
2008-09-19 | Use the proper version of C++ headers | Nathan Binkert | |
2008-09-19 | Check the return value of I/O operations for failure | Nathan Binkert | |
2008-09-19 | inifile: Whack preprocessor access. | Nathan Binkert | |
We haven't used the preprocessor feature of the inifile stuff in a very long time, so let's get rid of it since it would otherwise take effort to maintain. | |||
2008-09-10 | style: Remove non-leading tabs everywhere they shouldn't be. Developers ↵ | Ali Saidi | |
should configure their editors to not insert tabs | |||
2008-09-09 | style: this file did not conform to style | Nathan Binkert | |
2008-09-08 | style: This file hugely violated the M5 style. | Nathan Binkert | |
Remove a bunch of unused cruft from the interface while we're at it |