mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-04 06:12:18 +00:00
ARM / Mac OS X also wants to invalidate icache after jitting.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59291 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
59d5f1d13b
commit
c663beecdb
@ -35,26 +35,28 @@ extern "C" void sys_icache_invalidate(const void *Addr, size_t len);
|
|||||||
void llvm::sys::Memory::InvalidateInstructionCache(const void *Addr,
|
void llvm::sys::Memory::InvalidateInstructionCache(const void *Addr,
|
||||||
size_t Len) {
|
size_t Len) {
|
||||||
|
|
||||||
// icache invalidation for PPC.
|
// icache invalidation for PPC and ARM.
|
||||||
|
#if defined(__APPLE__)
|
||||||
#if (defined(__POWERPC__) || defined (__ppc__) || \
|
#if (defined(__POWERPC__) || defined (__ppc__) || \
|
||||||
defined(_POWER) || defined(_ARCH_PPC))
|
defined(_POWER) || defined(_ARCH_PPC)) || defined(__arm__)
|
||||||
#if defined(__APPLE__)
|
sys_icache_invalidate(Addr, Len);
|
||||||
sys_icache_invalidate(Addr, Len);
|
#endif
|
||||||
#elif defined(__GNUC__)
|
#else
|
||||||
const size_t LineSize = 32;
|
#if (defined(__POWERPC__) || defined (__ppc__) || \
|
||||||
|
defined(_POWER) || defined(_ARCH_PPC)) && defined(__GNUC__)
|
||||||
|
const size_t LineSize = 32;
|
||||||
|
|
||||||
const intptr_t Mask = ~(LineSize - 1);
|
const intptr_t Mask = ~(LineSize - 1);
|
||||||
const intptr_t StartLine = ((intptr_t) Addr) & Mask;
|
const intptr_t StartLine = ((intptr_t) Addr) & Mask;
|
||||||
const intptr_t EndLine = ((intptr_t) Addr + Len + LineSize - 1) & Mask;
|
const intptr_t EndLine = ((intptr_t) Addr + Len + LineSize - 1) & Mask;
|
||||||
|
|
||||||
for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
|
for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
|
||||||
asm volatile("dcbf 0, %0" : : "r"(Line));
|
asm volatile("dcbf 0, %0" : : "r"(Line));
|
||||||
asm volatile("sync");
|
asm volatile("sync");
|
||||||
|
|
||||||
for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
|
|
||||||
asm volatile("icbi 0, %0" : : "r"(Line));
|
|
||||||
asm volatile("isync");
|
|
||||||
#endif
|
|
||||||
#endif // end PPC
|
|
||||||
|
|
||||||
|
for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
|
||||||
|
asm volatile("icbi 0, %0" : : "r"(Line));
|
||||||
|
asm volatile("isync");
|
||||||
|
#endif
|
||||||
|
#endif // end apple
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user