aboutsummaryrefslogtreecommitdiff
path: root/riscv/sim.cc
diff options
context:
space:
mode:
authorsthiruva <sthiruva@gmail.com>2020-09-30 00:39:24 +0530
committerGitHub <noreply@github.com>2020-09-29 12:09:24 -0700
commit4baf970f1b151400152c43559e601625dc03bd67 (patch)
tree159fc751c4bc0044a399343ad43d31e6cad23b52 /riscv/sim.cc
parente7cdd757248358235f3231cecf6aafdf23201d4e (diff)
downloadspike-4baf970f1b151400152c43559e601625dc03bd67.zip
spike-4baf970f1b151400152c43559e601625dc03bd67.tar.gz
spike-4baf970f1b151400152c43559e601625dc03bd67.tar.bz2
Adding symbol lookup when --enable-commitlog is enabled (#558)
* Adding symbol lookup when --enable-commitlog is enabled * Removed the #ifdef RISCV_ENABLE_COMMITLOG for all get_symbol related function Only retained the in processor.cc where it is called. Co-authored-by: Shajid Thiruvathodi <sthiruva@valtrix.in>
Diffstat (limited to 'riscv/sim.cc')
-rw-r--r--riscv/sim.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/riscv/sim.cc b/riscv/sim.cc
index 2aced1b..76bb3cd 100644
--- a/riscv/sim.cc
+++ b/riscv/sim.cc
@@ -294,6 +294,11 @@ char* sim_t::addr_to_mem(reg_t addr) {
return NULL;
}
+const char* sim_t::get_symbol(uint64_t addr)
+{
+ return htif_t::get_symbol(addr);
+}
+
// htif
void sim_t::reset()