Skip to content

HackLinux/riscv-pythia

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Christopher Celio 2014 Sep 1

This is a trace-based simulator designed to explore branch prediction strategies.

In particular, BTB, BHT, and RAS interations with superscalar fetch units.

Getting Started

replay mode

./pythia -t vvadd

live mode

./pythia -s ../riscv-tools/riscv-tests/benchmarks/vvadd.riscv

Live mode assumes "lspike" is installed.

For more information:

./pythia -h

There are two modes - "live" mode and "replay" mode.

"Live" mode - is the default mode that invokes "lspike" and pipes the commit log to Pythia. use "-s" to specify the benchmark and its arguments.

"Replay" mode - use "-t" to name a tracefile in the "traces" directory to replay a run.

Setting Up

"Live" mode will require the riscv-tools to be installed. In particular, it needs to make use of the "commit logging" ability of "spike".

  1. Modify riscv-tool's "build.sh" to compile the "spike" ISA simulator into a new directory.
build_project riscv-fesvr --prefix=$RISCV/logger
build_project riscv-isa-sim --prefix=$RISCV/logger --with-fesvr=$RISCV/logger --enable-commitlog 
  1. Rename $RISCV/logger/bin/spike to $RISCV/logger/bin/lspike.

  2. Finally, add $RISCV/logger/bin to your bash environment path.

About

A RISC-V superscalar front-end simulator.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%