├── .gitignore ├── .gitignore~ ├── README.md ├── gem5 ├── alignment.md ├── cache-terminology.md ├── drawio │ ├── Gem5_Classes.svg │ ├── Gem5_Classes.xmind │ ├── cache_prefetcher_base.xml │ ├── gem5_classes.xml │ ├── stack_dist_calc_simple.jpg │ ├── stack_dist_calc_simple.png │ ├── stack_dist_calc_simple.svg │ ├── stack_dist_calc_simple.xml │ ├── stack_dist_calc_tree_after.svg │ └── stack_dist_calc_tree_before.svg ├── index.md ├── prefetcher.md └── stack-dist-calc.md ├── res ├── AtomicSimpleCPU.jpg ├── Fetch.png ├── Gem5_initialization_call_sequence.png ├── LDSTR.png ├── O3pipeview.png ├── TimingSimpleCPU.jpg ├── gem5_videos.md ├── se.py.jpg ├── se.py.system.jpg ├── sim_running_mode.jpg └── sim_simulation_flow.jpg └── visio ├── se.py.vsd ├── se_flow.vsd └── simulation.vsd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitignore~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/.gitignore~ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/README.md -------------------------------------------------------------------------------- /gem5/alignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/gem5/alignment.md -------------------------------------------------------------------------------- /gem5/cache-terminology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/gem5/cache-terminology.md -------------------------------------------------------------------------------- /gem5/drawio/Gem5_Classes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/gem5/drawio/Gem5_Classes.svg -------------------------------------------------------------------------------- /gem5/drawio/Gem5_Classes.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/gem5/drawio/Gem5_Classes.xmind -------------------------------------------------------------------------------- /gem5/drawio/cache_prefetcher_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/gem5/drawio/cache_prefetcher_base.xml -------------------------------------------------------------------------------- /gem5/drawio/gem5_classes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/gem5/drawio/gem5_classes.xml -------------------------------------------------------------------------------- /gem5/drawio/stack_dist_calc_simple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/gem5/drawio/stack_dist_calc_simple.jpg -------------------------------------------------------------------------------- /gem5/drawio/stack_dist_calc_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/gem5/drawio/stack_dist_calc_simple.png -------------------------------------------------------------------------------- /gem5/drawio/stack_dist_calc_simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/gem5/drawio/stack_dist_calc_simple.svg -------------------------------------------------------------------------------- /gem5/drawio/stack_dist_calc_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/gem5/drawio/stack_dist_calc_simple.xml -------------------------------------------------------------------------------- /gem5/drawio/stack_dist_calc_tree_after.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/gem5/drawio/stack_dist_calc_tree_after.svg -------------------------------------------------------------------------------- /gem5/drawio/stack_dist_calc_tree_before.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/gem5/drawio/stack_dist_calc_tree_before.svg -------------------------------------------------------------------------------- /gem5/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/gem5/index.md -------------------------------------------------------------------------------- /gem5/prefetcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/gem5/prefetcher.md -------------------------------------------------------------------------------- /gem5/stack-dist-calc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/gem5/stack-dist-calc.md -------------------------------------------------------------------------------- /res/AtomicSimpleCPU.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/res/AtomicSimpleCPU.jpg -------------------------------------------------------------------------------- /res/Fetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/res/Fetch.png -------------------------------------------------------------------------------- /res/Gem5_initialization_call_sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/res/Gem5_initialization_call_sequence.png -------------------------------------------------------------------------------- /res/LDSTR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/res/LDSTR.png -------------------------------------------------------------------------------- /res/O3pipeview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/res/O3pipeview.png -------------------------------------------------------------------------------- /res/TimingSimpleCPU.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/res/TimingSimpleCPU.jpg -------------------------------------------------------------------------------- /res/gem5_videos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/res/gem5_videos.md -------------------------------------------------------------------------------- /res/se.py.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/res/se.py.jpg -------------------------------------------------------------------------------- /res/se.py.system.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/res/se.py.system.jpg -------------------------------------------------------------------------------- /res/sim_running_mode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/res/sim_running_mode.jpg -------------------------------------------------------------------------------- /res/sim_simulation_flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/res/sim_simulation_flow.jpg -------------------------------------------------------------------------------- /visio/se.py.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/visio/se.py.vsd -------------------------------------------------------------------------------- /visio/se_flow.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/visio/se_flow.vsd -------------------------------------------------------------------------------- /visio/simulation.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzyerste/gem5_doc/HEAD/visio/simulation.vsd --------------------------------------------------------------------------------