Difference between revisions of "Documentation"
From gem5
Nilayvaish (talk | contribs) m (Reverted edits by Ipodsoft (talk) to last revision by Nilayvaish) |
|||
Line 2: | Line 2: | ||
'''Old Documentation:''' We have some old documentation and have been trying to move everything to the new format, but we haven't quite succeeded yet. If you don't find the answer you're looking for here, you might want to check [[OldDocumentation | the old documentation]]. | '''Old Documentation:''' We have some old documentation and have been trying to move everything to the new format, but we haven't quite succeeded yet. If you don't find the answer you're looking for here, you might want to check [[OldDocumentation | the old documentation]]. | ||
− | |||
− | |||
− | |||
− | |||
== Getting Started == | == Getting Started == | ||
Line 13: | Line 9: | ||
# [[Build System]] - How to run or modify gem5's build system. | # [[Build System]] - How to run or modify gem5's build system. | ||
# [[Download | Full System and Benchmark Files]] - Disk images for operating system and benchmark applications, and how to install them. | # [[Download | Full System and Benchmark Files]] - Disk images for operating system and benchmark applications, and how to install them. | ||
− | |||
− | |||
− | |||
− | |||
== Running gem5 == | == Running gem5 == | ||
Line 27: | Line 19: | ||
# [[Architecture Support]] -- What architectures are supported by gem5 and what features of them are implemented | # [[Architecture Support]] -- What architectures are supported by gem5 and what features of them are implemented | ||
# [[Visualization]] -- Tools to help visualize what is going on in a system | # [[Visualization]] -- Tools to help visualize what is going on in a system | ||
− | |||
− | |||
− | |||
− | |||
== Workloads == | == Workloads == | ||
Line 43: | Line 31: | ||
# [[Linux kernel]] - Preparing a Linux kernel for use in gem5. | # [[Linux kernel]] - Preparing a Linux kernel for use in gem5. | ||
# [[m5ops]] - How to talk to the simulator from within a simulated workload. | # [[m5ops]] - How to talk to the simulator from within a simulated workload. | ||
− | |||
− | |||
− | |||
− | |||
== Development == | == Development == | ||
Line 62: | Line 46: | ||
# [[Commit Access]] | # [[Commit Access]] | ||
# [[Managing Change in Your Local Repository]] | # [[Managing Change in Your Local Repository]] | ||
− | |||
− | |||
− | |||
− | |||
== Infrastructure == | == Infrastructure == | ||
Line 72: | Line 52: | ||
# [[Utility Code]] | # [[Utility Code]] | ||
# [[Serialization]] | # [[Serialization]] | ||
− | |||
− | |||
− | |||
− | |||
== Memory System == | == Memory System == | ||
Line 83: | Line 59: | ||
## [[SLICC|SLICC Overview]] | ## [[SLICC|SLICC Overview]] | ||
## [[GEMS-gem5_SLICC_Transition_Guide|SLICC Transistion Guide]] | ## [[GEMS-gem5_SLICC_Transition_Guide|SLICC Transistion Guide]] | ||
− | |||
− | |||
− | |||
− | |||
== Full System == | == Full System == | ||
Line 96: | Line 68: | ||
# [[Disks and Disk Images]] | # [[Disks and Disk Images]] | ||
# [[Interrupts]] | # [[Interrupts]] | ||
− | |||
− | |||
− | |||
− | |||
== Syscall Emulation == | == Syscall Emulation == | ||
# [[SE Mode]] | # [[SE Mode]] | ||
− | |||
− | |||
− | |||
− | |||
== Instruction Execution == | == Instruction Execution == | ||
Line 112: | Line 76: | ||
# [[Architectural State]] | # [[Architectural State]] | ||
# [[Address Translation]] | # [[Address Translation]] | ||
− | |||
− | |||
− | |||
− | |||
− | |||
== CPU Models == | == CPU Models == | ||
# [[SimpleCPU | Simple CPU Model]] | # [[SimpleCPU | Simple CPU Model]] | ||
Line 122: | Line 81: | ||
# [[InOrder | In Order CPU Model]] | # [[InOrder | In Order CPU Model]] | ||
# [[Adding a New CPU Model]] | # [[Adding a New CPU Model]] | ||
− | |||
− | |||
− | |||
− | |||
== ISA Implementations == | == ISA Implementations == | ||
Line 137: | Line 92: | ||
# [[X86 Implementation]] | # [[X86 Implementation]] | ||
# [[Defining ISAs]] | # [[Defining ISAs]] | ||
− | |||
− | |||
− |
Revision as of 23:01, 29 August 2013
Welcome to the gem5 documentation. We've worked hard to add and organize everything in a more reasonable format, however we still haven't got to everything. All the documentation is a wiki, so we encourage you to add and edit sections as you find omissions and bugs.
Old Documentation: We have some old documentation and have been trying to move everything to the new format, but we haven't quite succeeded yet. If you don't find the answer you're looking for here, you might want to check the old documentation.
Contents
Getting Started
- Introduction - A quick introduction to gem5.
- Source Code - Information about the source code itself.
- Dependencies - Things you'll need that aren't part of gem5 itself.
- Build System - How to run or modify gem5's build system.
- Full System and Benchmark Files - Disk images for operating system and benchmark applications, and how to install them.
Running gem5
- Running gem5 - Starting a simulation from the command line.
- Checkpoints, Fast Forwarding - How to create Checkpoints, restore the checkpointed state, fast forward simulation.
- Regression Tests - Running the regression tests.
- SimObjects - What SimObjects are and how they work.
- Configuration Scripts - This and the next section need to be merged.
- Simulation Scripts Explained
- Architecture Support -- What architectures are supported by gem5 and what features of them are implemented
- Visualization -- Tools to help visualize what is going on in a system
Workloads
- Compiling - How to compile workloads to run within gem5.
- Multi-programmed - Multiprogrammed workloads in SE mode.
- Multi-threaded - Multithreaded workloads in SE mode.
- Benchmark suites
- Disk images - Setting up a disk image.
- Linux kernel - Preparing a Linux kernel for use in gem5.
- m5ops - How to talk to the simulator from within a simulated workload.
Development
- Functional Testers
- Debugging - features designed specifically to help you figure out what's going on.
- Coding Style
- Tools and Contributing
- Source Code Documentation
- Commit Access
- Managing Change in Your Local Repository
Infrastructure
Memory System
- General Memory System - Shared infrastructure between the Classic and Ruby models
- Classic Memory System - Description of our easily configurable, bus-based memory system
- Ruby - Description of our detailed and flexible memory system. Lots of information here.