From 3233f0d463d299be89e2672928fc215dc99c2c71 Mon Sep 17 00:00:00 2001 From: balrog Date: Mon, 1 Dec 2008 02:02:37 +0000 Subject: Use libgcc __clear_cache to clean icache, when available. Calling the clear cache syscall directly generates an illegal instruction on some (armv4) kernels. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5843 c046a42c-6fe2-441c-8c8c-71466251a162 --- tcg/arm/tcg-target.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tcg') diff --git a/tcg/arm/tcg-target.h b/tcg/arm/tcg-target.h index 6c180af694..d0b11e848d 100644 --- a/tcg/arm/tcg-target.h +++ b/tcg/arm/tcg-target.h @@ -69,8 +69,13 @@ enum { static inline void flush_icache_range(unsigned long start, unsigned long stop) { +#if QEMU_GNUC_PREREQ(4, 1) + void __clear_cache(char *beg, char *end); + __clear_cache((char *) start, (char *) stop); +#else register unsigned long _beg __asm ("a1") = start; register unsigned long _end __asm ("a2") = stop; register unsigned long _flg __asm ("a3") = 0; __asm __volatile__ ("swi 0x9f0002" : : "r" (_beg), "r" (_end), "r" (_flg)); +#endif } -- cgit v1.2.3