diff options
author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2011-10-10 18:41:02 +0000 |
---|---|---|
committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2011-10-10 18:41:02 +0000 |
commit | 9d2fa87816359ea615a31680c93e76b0dddbad17 (patch) | |
tree | 432c141a967b76728c765e3522952d751ba9e539 /lib/Support | |
parent | a86a58695dfbfa1b0e660f09297e6608e3a48bbc (diff) | |
download | external_llvm-9d2fa87816359ea615a31680c93e76b0dddbad17.zip external_llvm-9d2fa87816359ea615a31680c93e76b0dddbad17.tar.gz external_llvm-9d2fa87816359ea615a31680c93e76b0dddbad17.tar.bz2 |
The Mips specific function for instruction cache invalidation cannot be
compiled on mips32r1 processors because it uses synci and rdhwr instructions
which are supported only on mips32r2, so I replaced this function with the
call to function cacheflush which works for both mips32r1 and mips32r2.
Patch by Sasa Stankovic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141564 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r-- | lib/Support/Memory.cpp | 39 |
1 files changed, 5 insertions, 34 deletions
diff --git a/lib/Support/Memory.cpp b/lib/Support/Memory.cpp index 1294744..2a1642a 100644 --- a/lib/Support/Memory.cpp +++ b/lib/Support/Memory.cpp @@ -16,6 +16,10 @@ #include "llvm/Support/Valgrind.h" #include "llvm/Config/config.h" +#if defined(__mips__) +#include <sys/cachectl.h> +#endif + namespace llvm { using namespace sys; } @@ -30,39 +34,6 @@ using namespace sys; extern "C" void sys_icache_invalidate(const void *Addr, size_t len); -/// ClearMipsCache - Invalidates instruction cache for Mips. This assembly code -/// is copied from the MIPS32 Instruction Set Reference. Since the code ends -/// with the return instruction "jr.hb ra" (Jump Register with Hazard Barrier), -/// it must be implemented as a function (which is called from the -/// InvalidateInstructionCache function). It cannot be directly inlined into -/// InvalidateInstructionCache function, because in that case the epilog of -/// InvalidateInstructionCache will not be executed. -#if defined(__mips__) -extern "C" void ClearMipsCache(const void* Addr, size_t Size); - asm volatile( - ".text\n" - ".align 2\n" - ".globl ClearMipsCache\n" - "ClearMipsCache:\n" - ".set noreorder\n" - "beq $a1, $zero, 20f\n" /* If size==0, branch around */ - "nop\n" - "addu $a1, $a0, $a1\n" /* Calculate end address + 1 */ - "rdhwr $v0, $1\n" /* Get step size for SYNCI */ - /* $1 is $HW_SYNCI_Step */ - "beq $v0, $zero, 20f\n" /* If no caches require synchronization, */ - /* branch around */ - "nop\n" - "10: synci 0($a0)\n" /* Synchronize all caches around address */ - "sltu $v1, $a0, $a1\n" /* Compare current with end address */ - "bne $v1, $zero, 10b\n" /* Branch if more to do */ - "addu $a0, $a0, $v0\n" /* Add step size in delay slot */ - "sync\n" /* Clear memory hazards */ - "20: jr.hb $ra\n" /* Return, clearing instruction hazards */ - "nop\n" - ); -#endif - /// InvalidateInstructionCache - Before the JIT can run a block of code /// that has been emitted it must invalidate the instruction cache on some /// platforms. @@ -100,7 +71,7 @@ void llvm::sys::Memory::InvalidateInstructionCache(const void *Addr, char *End = Start + Len; __clear_cache(Start, End); # elif defined(__mips__) - ClearMipsCache(Addr, Len); + cacheflush((char*)Addr, Len, BCACHE); # endif #endif // end apple |