5d165c9793532f334f117eb8f5c7b71fffcabd15
[riscv-isa-sim.git] / riscv / sim.h
1 // See LICENSE for license details.
2
3 #ifndef _RISCV_SIM_H
4 #define _RISCV_SIM_H
5
6 #include "processor.h"
7 #include "devices.h"
8 #include "debug_module.h"
9 #include <fesvr/htif.h>
10 #include <fesvr/context.h>
11 #include <vector>
12 #include <string>
13 #include <memory>
14
15 class mmu_t;
16 class gdbserver_t;
17
18 // this class encapsulates the processors and memory in a RISC-V machine.
19 class sim_t : public htif_t
20 {
21 public:
22 sim_t(const char* isa, size_t _nprocs, size_t mem_mb, bool halted,
23 const std::vector<std::string>& args);
24 ~sim_t();
25
26 // run the simulation to completion
27 int run();
28 void set_debug(bool value);
29 void set_log(bool value);
30 void set_histogram(bool value);
31 void set_procs_debug(bool value);
32 void set_gdbserver(gdbserver_t* gdbserver) { this->gdbserver = gdbserver; }
33 const char* get_config_string() { return config_string.c_str(); }
34 processor_t* get_core(size_t i) { return procs.at(i); }
35
36 private:
37 char* mem; // main memory
38 size_t memsz; // memory size in bytes
39 mmu_t* debug_mmu; // debug port into main memory
40 std::vector<processor_t*> procs;
41 std::string config_string;
42 std::unique_ptr<rom_device_t> boot_rom;
43 std::unique_ptr<rtc_t> rtc;
44 bus_t bus;
45 debug_module_t debug_module;
46
47 processor_t* get_core(const std::string& i);
48 void step(size_t n); // step through simulation
49 static const size_t INTERLEAVE = 5000;
50 static const size_t INSNS_PER_RTC_TICK = 100; // 10 MHz clock for 1 BIPS core
51 size_t current_step;
52 size_t current_proc;
53 bool debug;
54 bool log;
55 bool histogram_enabled; // provide a histogram of PCs
56 gdbserver_t* gdbserver;
57
58 // memory-mapped I/O routines
59 bool addr_is_mem(reg_t addr) {
60 return addr >= DRAM_BASE && addr < DRAM_BASE + memsz;
61 }
62 char* addr_to_mem(reg_t addr) { return mem + addr - DRAM_BASE; }
63 reg_t mem_to_addr(char* x) { return x - mem + DRAM_BASE; }
64 bool mmio_load(reg_t addr, size_t len, uint8_t* bytes);
65 bool mmio_store(reg_t addr, size_t len, const uint8_t* bytes);
66 void make_config_string();
67
68 // presents a prompt for introspection into the simulation
69 void interactive();
70
71 // functions that help implement interactive()
72 void interactive_help(const std::string& cmd, const std::vector<std::string>& args);
73 void interactive_quit(const std::string& cmd, const std::vector<std::string>& args);
74 void interactive_run(const std::string& cmd, const std::vector<std::string>& args, bool noisy);
75 void interactive_run_noisy(const std::string& cmd, const std::vector<std::string>& args);
76 void interactive_run_silent(const std::string& cmd, const std::vector<std::string>& args);
77 void interactive_reg(const std::string& cmd, const std::vector<std::string>& args);
78 void interactive_fregs(const std::string& cmd, const std::vector<std::string>& args);
79 void interactive_fregd(const std::string& cmd, const std::vector<std::string>& args);
80 void interactive_pc(const std::string& cmd, const std::vector<std::string>& args);
81 void interactive_mem(const std::string& cmd, const std::vector<std::string>& args);
82 void interactive_str(const std::string& cmd, const std::vector<std::string>& args);
83 void interactive_until(const std::string& cmd, const std::vector<std::string>& args);
84 reg_t get_reg(const std::vector<std::string>& args);
85 reg_t get_freg(const std::vector<std::string>& args);
86 reg_t get_mem(const std::vector<std::string>& args);
87 reg_t get_pc(const std::vector<std::string>& args);
88
89 friend class processor_t;
90 friend class mmu_t;
91 friend class gdbserver_t;
92
93 // htif
94 friend void sim_thread_main(void*);
95 void main();
96
97 context_t* host;
98 context_t target;
99 void reset() { }
100 void idle();
101 void read_chunk(addr_t taddr, size_t len, void* dst);
102 void write_chunk(addr_t taddr, size_t len, const void* src);
103 size_t chunk_align() { return 8; }
104 size_t chunk_max_size() { return 8; }
105 };
106
107 extern volatile bool ctrlc_pressed;
108
109 #endif