bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

jit/cache: Fix for ia64 CPUs


From: Bruno Haible
Subject: jit/cache: Fix for ia64 CPUs
Date: Tue, 09 Jan 2024 22:59:53 +0100

On Linux/ia64, I see 'test-cache' fail. Special CPU instructions are needed,
like seen in gforth/arch/ia64/flush_icache_block.c. This patch thus makes the
test pass.


2024-01-09  Bruno Haible  <bruno@clisp.org>

        jit/cache: Fix for ia64 CPUs.
        * lib/jit/cache.h (clear_cache): On ia64 CPUs, use the 'fc', 'sync',
        'srlz' instructions.

diff --git a/lib/jit/cache.h b/lib/jit/cache.h
index 2a3469e0c4..f9da28125e 100644
--- a/lib/jit/cache.h
+++ b/lib/jit/cache.h
@@ -123,6 +123,26 @@ clear_cache (void *start, void *end)
          "\n\t" "nop"
          "\n\t" "nop"
          "\n\t" "nop");
+#elif (defined __GNUC__ || defined __clang__) && defined __ia64
+  /* Use inline assembly.  */
+  /* The Intel IA-64 Architecture Software Developer's Manual volume 3 says:
+     "The line size affected is at least 32 bytes."  */
+  intptr_t cache_line_size = 32;
+  uintptr_t addr = (uintptr_t) start & ~cache_line_size;
+  uintptr_t end_addr = (uintptr_t) end;
+  do
+    {
+      /* Flush a cache line.  */
+      asm volatile ("fc %0" : : "r" (addr));
+      addr += cache_line_size;
+    }
+  while (addr < end_addr);
+  /* Ensure the preceding 'fc' instructions become effective in the local
+     processor and all remote processors.  */
+  asm volatile ("sync.i");
+  /* Ensure the preceding 'sync.i' instruction becomes effective in the
+     local processor's instruction cache.  */
+  asm volatile ("srlz.i");
 #elif (defined __GNUC__ || defined __clang__) && defined __m68k__ && defined 
__linux__
   /* Use inline assembly to call the 'cacheflush' system call.
      sys_cacheflush (addr, scope, cache, len)






reply via email to

[Prev in Thread] Current Thread [Next in Thread]