* [Qemu-devel] [PATCH] remove duplicated tlb_fill definitions for i386 and cris targets
@ 2007-11-12 5:21 Carlo Marcelo Arenas Belon
0 siblings, 0 replies; only message in thread
From: Carlo Marcelo Arenas Belon @ 2007-11-12 5:21 UTC (permalink / raw)
To: qemu-devel
The following patch removes a duplicated tlb_fill definition from the per
target specific exec.h for i386 and cris in favor of the generic one in
exec-all.h.
It also rearranges cris' op_helper implement it only in softmmu mode like all
other targets.
Carlo
---
Index: target-cris/exec.h
===================================================================
RCS file: /sources/qemu/qemu/target-cris/exec.h,v
retrieving revision 1.2
diff -u -r1.2 exec.h
--- target-cris/exec.h 14 Oct 2007 07:07:06 -0000 1.2
+++ target-cris/exec.h 12 Nov 2007 04:58:48 -0000
@@ -46,7 +46,6 @@
int cpu_cris_handle_mmu_fault (CPUState *env, target_ulong address, int rw,
int mmu_idx, int is_softmmu);
-void tlb_fill (target_ulong addr, int is_write, int mmu_idx, void *retaddr);
#if !defined(CONFIG_USER_ONLY)
#include "softmmu_exec.h"
Index: target-cris/op_helper.c
===================================================================
RCS file: /sources/qemu/qemu/target-cris/op_helper.c,v
retrieving revision 1.4
diff -u -r1.4 op_helper.c
--- target-cris/op_helper.c 11 Nov 2007 12:35:55 -0000 1.4
+++ target-cris/op_helper.c 12 Nov 2007 04:58:48 -0000
@@ -22,6 +22,10 @@
#include <assert.h>
#include "exec.h"
+/*****************************************************************************/
+/* Softmmu support */
+#if !defined (CONFIG_USER_ONLY)
+
#define MMUSUFFIX _mmu
#ifdef __s390__
# define GETPC() ((void*)((unsigned long)__builtin_return_address(0) & 0x7fffffffUL))
@@ -73,6 +77,8 @@
env = saved_env;
}
+#endif
+
void do_unassigned_access(target_phys_addr_t addr, int is_write, int is_exec,
int is_asi)
{
Index: target-i386/exec.h
===================================================================
RCS file: /sources/qemu/qemu/target-i386/exec.h,v
retrieving revision 1.39
diff -u -r1.39 exec.h
--- target-i386/exec.h 11 Nov 2007 19:45:49 -0000 1.39
+++ target-i386/exec.h 12 Nov 2007 04:58:48 -0000
@@ -164,8 +164,6 @@
void cpu_x86_flush_tlb(CPUX86State *env, target_ulong addr);
int cpu_x86_handle_mmu_fault(CPUX86State *env, target_ulong addr,
int is_write, int mmu_idx, int is_softmmu);
-void tlb_fill(target_ulong addr, int is_write, int mmu_idx,
- void *retaddr);
void __hidden cpu_lock(void);
void __hidden cpu_unlock(void);
void do_interrupt(int intno, int is_int, int error_code,
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2007-11-12 5:16 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-12 5:21 [Qemu-devel] [PATCH] remove duplicated tlb_fill definitions for i386 and cris targets Carlo Marcelo Arenas Belon
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 NNTP newsgroup(s).