public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] sim: riscv: Fix newlib issue with brk syscall
@ 2024-04-10  7:17 Bernd Edlinger
  2024-04-12 10:55 ` Andrew Burgess
  0 siblings, 1 reply; 3+ messages in thread
From: Bernd Edlinger @ 2024-04-10  7:17 UTC (permalink / raw)
  To: gdb-patches

There is an issue with riscv newlib which uses
a brk syscall when malloc is used, and when
this syscall is not implemented, the malloc fails.
This adds a simple handling for this syscall
in order to make newlib happy.
---
 sim/riscv/sim-main.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/sim/riscv/sim-main.c b/sim/riscv/sim-main.c
index 9c0d070aa60..4e3672505c6 100644
--- a/sim/riscv/sim-main.c
+++ b/sim/riscv/sim-main.c
@@ -30,6 +30,7 @@
 #include "sim-main.h"
 #include "sim-signal.h"
 #include "sim-syscall.h"
+#include "target-newlib-syscall.h"
 
 #include "opcode/riscv.h"
 
@@ -629,6 +630,14 @@ execute_i (SIM_CPU *cpu, unsigned_word iw, const struct riscv_opcode *op)
       break;
     case MATCH_ECALL:
       TRACE_INSN (cpu, "ecall;");
+      if (riscv_cpu->a7 == TARGET_NEWLIB_RISCV_SYS_brk)
+	{
+	  TRACE_SYSCALL (cpu, "brk[%i](%#lx)", TARGET_NEWLIB_RISCV_SYS_brk,
+			 (long)riscv_cpu->a0);
+	  if (riscv_cpu->a0 == 0)
+	    riscv_cpu->a0 = DEFAULT_MEM_SIZE / 2;
+	  break;
+	}
       riscv_cpu->a0 = sim_syscall (cpu, riscv_cpu->a7, riscv_cpu->a0,
 				   riscv_cpu->a1, riscv_cpu->a2, riscv_cpu->a3);
       break;
-- 
2.25.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-04-12 11:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-10  7:17 [PATCH] sim: riscv: Fix newlib issue with brk syscall Bernd Edlinger
2024-04-12 10:55 ` Andrew Burgess
2024-04-12 11:41   ` Bernd Edlinger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).