aboutsummaryrefslogtreecommitdiff
path: root/riscv/debug_module.cc
diff options
context:
space:
mode:
authorAndrew Waterman <andrew@sifive.com>2020-03-05 12:07:51 -0800
committerGitHub <noreply@github.com>2020-03-05 12:07:51 -0800
commita19971fff9f2938fd381c17b11b69908bc598175 (patch)
tree41a1c2df9504bab10a2ddaabeb8708fb52d7e117 /riscv/debug_module.cc
parentd51edef8a614d689e9b0387f6156feaeded95a91 (diff)
downloadspike-a19971fff9f2938fd381c17b11b69908bc598175.zip
spike-a19971fff9f2938fd381c17b11b69908bc598175.tar.gz
spike-a19971fff9f2938fd381c17b11b69908bc598175.tar.bz2
Make debug printfs only show in debug builds. (#414)
Diffstat (limited to 'riscv/debug_module.cc')
-rw-r--r--riscv/debug_module.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/riscv/debug_module.cc b/riscv/debug_module.cc
index 499f552..ef26b28 100644
--- a/riscv/debug_module.cc
+++ b/riscv/debug_module.cc
@@ -152,8 +152,8 @@ bool debug_module_t::load(reg_t addr, size_t len, uint8_t* bytes)
return true;
}
- fprintf(stderr, "ERROR: invalid load from debug module: %zd bytes at 0x%016"
- PRIx64 "\n", len, addr);
+ D(fprintf(stderr, "ERROR: invalid load from debug module: %zd bytes at 0x%016"
+ PRIx64 "\n", len, addr));
return false;
}
@@ -241,8 +241,8 @@ bool debug_module_t::store(reg_t addr, size_t len, const uint8_t* bytes)
return true;
}
- fprintf(stderr, "ERROR: invalid store to debug module: %zd bytes at 0x%016"
- PRIx64 "\n", len, addr);
+ D(fprintf(stderr, "ERROR: invalid store to debug module: %zd bytes at 0x%016"
+ PRIx64 "\n", len, addr));
return false;
}
@@ -358,7 +358,7 @@ bool debug_module_t::dmi_read(unsigned address, uint32_t *value)
result = read32(dmdata, i);
if (abstractcs.busy) {
result = -1;
- fprintf(stderr, "\ndmi_read(0x%02x (data[%d]) -> -1 because abstractcs.busy==true\n", address, i);
+ D(fprintf(stderr, "\ndmi_read(0x%02x (data[%d]) -> -1 because abstractcs.busy==true\n", address, i));
}
if (abstractcs.busy && abstractcs.cmderr == CMDERR_NONE) {
@@ -373,7 +373,7 @@ bool debug_module_t::dmi_read(unsigned address, uint32_t *value)
result = read32(program_buffer, i);
if (abstractcs.busy) {
result = -1;
- fprintf(stderr, "\ndmi_read(0x%02x (progbuf[%d]) -> -1 because abstractcs.busy==true\n", address, i);
+ D(fprintf(stderr, "\ndmi_read(0x%02x (progbuf[%d]) -> -1 because abstractcs.busy==true\n", address, i));
}
if (!abstractcs.busy && ((abstractauto.autoexecprogbuf >> i) & 1)) {
perform_abstract_command();