Support setting ISA/subsets with --isa flag
[riscv-isa-sim.git] / riscv / sim.h
index c8faa0c4c665b22f7d120d2e4fcb48fdfe0e0f06..ca1ad6f544b9fb100f741f8340ad2d234574625c 100644 (file)
@@ -1,56 +1,81 @@
+// See LICENSE for license details.
+
 #ifndef _RISCV_SIM_H
 #define _RISCV_SIM_H
 
 #include <vector>
 #include <string>
+#include <memory>
 #include "processor.h"
+#include "mmu.h"
 
-const long MEMSIZE = 0x100000000;
-
-class appserver_link_t;
+class htif_isasim_t;
 
+// this class encapsulates the processors and memory in a RISC-V machine.
 class sim_t
 {
 public:
-  sim_t(int _nprocs, size_t _memsz, appserver_link_t* _applink);
+  sim_t(const char* isa, size_t _nprocs, size_t mem_mb,
+        const std::vector<std::string>& htif_args);
   ~sim_t();
-  void run(bool debug);
-
-  void set_tohost(reg_t val);
-  reg_t get_fromhost();
-
-private:
-  // global architected state
-  reg_t tohost;
-  reg_t fromhost;
 
-  appserver_link_t* applink;
+  // run the simulation to completion
+  int run();
+  bool running();
+  void stop();
+  void set_debug(bool value);
+  void set_histogram(bool value);
+  void set_procs_debug(bool value);
+  htif_isasim_t* get_htif() { return htif.get(); }
 
-  size_t memsz;
-  char* mem;
-  std::vector<processor_t> procs;
+  // deliver an IPI to a specific processor
+  void send_ipi(reg_t who);
 
-  void step_all(size_t n, size_t interleave, bool noisy);
+  // returns the number of processors in this simulator
+  size_t num_cores() { return procs.size(); }
+  processor_t* get_core(size_t i) { return procs.at(i); }
 
-  void interactive_quit(const std::vector<std::string>& args);
-
-  void interactive_run(const std::vector<std::string>& args, bool noisy);
-  void interactive_run_noisy(const std::vector<std::string>& args);
-  void interactive_run_silent(const std::vector<std::string>& args);
-
-  void interactive_run_proc(const std::vector<std::string>& args, bool noisy);
-  void interactive_run_proc_noisy(const std::vector<std::string>& args);
-  void interactive_run_proc_silent(const std::vector<std::string>& args);
-
-  void interactive_reg(const std::vector<std::string>& args);
-  void interactive_mem(const std::vector<std::string>& args);
-  void interactive_until(const std::vector<std::string>& args);
+  // read one of the system control registers
+  reg_t get_scr(int which);
 
+private:
+  std::unique_ptr<htif_isasim_t> htif;
+  char* mem; // main memory
+  size_t memsz; // memory size in bytes
+  mmu_t* debug_mmu;  // debug port into main memory
+  std::vector<processor_t*> procs;
+
+  void step(size_t n); // step through simulation
+  static const size_t INTERLEAVE = 5000;
+  size_t current_step;
+  size_t current_proc;
+  bool debug;
+  bool histogram_enabled; // provide a histogram of PCs
+
+  // presents a prompt for introspection into the simulation
+  void interactive();
+
+  // functions that help implement interactive()
+  void interactive_quit(const std::string& cmd, const std::vector<std::string>& args);
+  void interactive_run(const std::string& cmd, const std::vector<std::string>& args, bool noisy);
+  void interactive_run_noisy(const std::string& cmd, const std::vector<std::string>& args);
+  void interactive_run_silent(const std::string& cmd, const std::vector<std::string>& args);
+  void interactive_reg(const std::string& cmd, const std::vector<std::string>& args);
+  void interactive_fregs(const std::string& cmd, const std::vector<std::string>& args);
+  void interactive_fregd(const std::string& cmd, const std::vector<std::string>& args);
+  void interactive_mem(const std::string& cmd, const std::vector<std::string>& args);
+  void interactive_str(const std::string& cmd, const std::vector<std::string>& args);
+  void interactive_until(const std::string& cmd, const std::vector<std::string>& args);
   reg_t get_reg(const std::vector<std::string>& args);
+  reg_t get_freg(const std::vector<std::string>& args);
   reg_t get_mem(const std::vector<std::string>& args);
   reg_t get_pc(const std::vector<std::string>& args);
+  reg_t get_tohost(const std::vector<std::string>& args);
 
-  friend class appserver_link_t;
+  friend class htif_isasim_t;
+  friend class processor_t;
 };
 
+extern volatile bool ctrlc_pressed;
+
 #endif