]> git.proxmox.com Git - mirror_qemu.git/commitdiff
linux-user: xtensa: enable bFLT support
authorMax Filippov <jcmvbkbc@gmail.com>
Sat, 20 Oct 2018 01:40:20 +0000 (18:40 -0700)
committerMax Filippov <jcmvbkbc@gmail.com>
Sat, 20 Oct 2018 01:40:20 +0000 (18:40 -0700)
- request bflt support in configure;
- implement custom linux-user/xtensa/target_flat.h that doesn't put envp
  on stack;
- fix #include "target_flat.h" in flatload.c so that it first search for
  arch-customized version of the header.

Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
configure
linux-user/flatload.c
linux-user/xtensa/target_flat.h [new file with mode: 0644]

index 18006f0865b706a2d89711c31b901c9ed3bd6f64..2c6b850ac6903826d91d0a05e4686b6fecc80a2d 100755 (executable)
--- a/configure
+++ b/configure
@@ -7178,6 +7178,7 @@ case "$target_name" in
   ;;
   xtensa|xtensaeb)
     TARGET_ARCH=xtensa
+    bflt="yes"
     mttcg="yes"
     target_compiler=$cross_cc_xtensa
   ;;
index 10c529910fc8f05150743929d551b3e8cd5c4fe8..2eefe55e500059384dc4ee95aa39a803c47b4328 100644 (file)
@@ -37,7 +37,7 @@
 
 #include "qemu.h"
 #include "flat.h"
-#include "target_flat.h"
+#include <target_flat.h>
 
 //#define DEBUG
 
diff --git a/linux-user/xtensa/target_flat.h b/linux-user/xtensa/target_flat.h
new file mode 100644 (file)
index 0000000..732addd
--- /dev/null
@@ -0,0 +1,10 @@
+/* If your arch needs to do custom stuff, create your own target_flat.h
+ * header file in linux-user/<your arch>/
+ */
+#define flat_argvp_envp_on_stack()                           0
+#define flat_reloc_valid(reloc, size)                        ((reloc) <= (size))
+#define flat_old_ram_flag(flag)                              (flag)
+#define flat_get_relocate_addr(relval)                       (relval)
+#define flat_get_addr_from_rp(rp, relval, flags, persistent) (rp)
+#define flat_set_persistent(relval, persistent)              (*persistent)
+#define flat_put_addr_at_rp(rp, addr, relval)                put_user_ual(addr, rp)