add I$/D$/L2$ simulators
[riscv-isa-sim.git] / riscv / processor.h
index 6724e2c2f7cce7e60f17bfbbaec9bb549d8307e4..d086760ee04b19f29523c4a76f5cdcf9afaf805d 100644 (file)
 #ifndef _RISCV_PROCESSOR_H
 #define _RISCV_PROCESSOR_H
 
-#include <cstring>
 #include "decode.h"
+#include <cstring>
 #include "trap.h"
-#include "mmu.h"
+#include "config.h"
+
+#define MAX_UTS 2048
 
+class processor_t;
+class mmu_t;
+typedef reg_t (*insn_func_t)(processor_t*, insn_t, reg_t);
+class sim_t;
+
+// this class represents one processor in a RISC-V machine.
 class processor_t
 {
 public:
-  processor_t(int _id, char* _mem, size_t _memsz);
-  void step(size_t n, bool noisy);
+  processor_t(sim_t* _sim, mmu_t* _mmu, uint32_t _id);
+  ~processor_t();
+
+  void reset(bool value);
+  void step(size_t n, bool noisy); // run for n cycles
+  void deliver_ipi(); // register an interprocessor interrupt
+  bool running() { return run; }
+  void set_pcr(int which, reg_t val);
+  reg_t get_pcr(int which);
+  mmu_t* get_mmu() { return &mmu; }
 
 private:
-  // architected state
-  reg_t R[NGPR];
+  sim_t& sim;
+  mmu_t& mmu; // main memory is always accessed via the mmu
+
+  // user-visible architected state
+  regfile_t<reg_t, NXPR, true> XPR;
+  regfile_t<freg_t, NFPR, false> FPR;
   reg_t pc;
+
+  // counters
+  reg_t cycle;
+
+  // privileged control registers
   reg_t epc;
   reg_t badvaddr;
-  reg_t ebase;
+  reg_t evec;
+  reg_t pcr_k0;
+  reg_t pcr_k1;
+  reg_t cause;
+  reg_t tohost;
+  reg_t fromhost;
+  uint32_t interrupts_pending;
   uint32_t id;
-  uint32_t sr;
-  int gprlen;
+  uint32_t sr; // only modify the status register using set_pcr()
+  uint32_t fsr;
+  uint32_t count;
+  uint32_t compare;
 
-  // shared memory
-  mmu_t mmu;
+  // # of bits in an XPR (32 or 64). (redundant with sr)
+  int xprlen;
 
-  // counters
-  reg_t counters[32];
+  bool run; // !reset
 
   // functions
-  void set_sr(uint32_t val);
-  void take_trap(trap_t t);
-  void disasm(insn_t insn, reg_t pc);
+  void take_interrupt(); // take a trap if any interrupts are pending
+  void set_fsr(uint32_t val); // set the floating-point status register
+  void take_trap(reg_t t, bool noisy); // take an exception
+  void disasm(insn_t insn, reg_t pc); // disassemble and print an instruction
+
+  // vector stuff
+  void vcfg();
+  void setvl(int vlapp);
+
+  reg_t vecbanks;
+  uint32_t vecbanks_count;
+
+  bool utmode;
+  uint32_t utidx;
+  int vlmax;
+  int vl;
+  int nxfpr_bank;
+  int nxpr_use;
+  int nfpr_use;
+  processor_t* uts[MAX_UTS];
+
+  // this constructor is used for each of the uts
+  processor_t(sim_t* _sim, mmu_t* _mmu, uint32_t _id, uint32_t _utidx);
 
   friend class sim_t;
+  friend class mmu_t;
+  friend class htif_isasim_t;
+
+  #include "dispatch.h"
 };
 
+#ifndef RISCV_ENABLE_RVC
+# define set_pc(x) \
+  do { if((x) & (sizeof(insn_t)-1)) \
+       { badvaddr = (x); throw trap_instruction_address_misaligned; } \
+       npc = (x); \
+     } while(0)
+#else
+# define set_pc(x) \
+  do { if((x) & ((sr & SR_EC) ? 1 : 3)) \
+       { badvaddr = (x); throw trap_instruction_address_misaligned; } \
+       npc = (x); \
+     } while(0)
+#endif
+
 #endif