2004-09-11 04:59:30 +00:00
|
|
|
//===- Memory.cpp - Memory Handling Support ---------------------*- C++ -*-===//
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2004-09-11 04:59:30 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2004-09-11 04:59:30 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines some helpful functions for allocating memory and dealing
|
|
|
|
// with memory mapped files
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-11-29 18:16:10 +00:00
|
|
|
#include "llvm/Support/Memory.h"
|
|
|
|
#include "llvm/Support/Valgrind.h"
|
2004-12-27 06:15:57 +00:00
|
|
|
#include "llvm/Config/config.h"
|
2004-09-11 04:59:30 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
using namespace sys;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Include the platform-specific parts of this class.
|
2004-12-27 06:15:57 +00:00
|
|
|
#ifdef LLVM_ON_UNIX
|
2005-01-09 23:29:00 +00:00
|
|
|
#include "Unix/Memory.inc"
|
2004-12-27 06:15:57 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LLVM_ON_WIN32
|
2010-11-29 18:16:10 +00:00
|
|
|
#include "Windows/Memory.inc"
|
2004-12-27 06:15:57 +00:00
|
|
|
#endif
|
2008-06-25 17:14:10 +00:00
|
|
|
|
2008-06-25 17:17:53 +00:00
|
|
|
extern "C" void sys_icache_invalidate(const void *Addr, size_t len);
|
|
|
|
|
2008-06-25 17:14:10 +00:00
|
|
|
/// InvalidateInstructionCache - Before the JIT can run a block of code
|
|
|
|
/// that has been emitted it must invalidate the instruction cache on some
|
|
|
|
/// platforms.
|
|
|
|
void llvm::sys::Memory::InvalidateInstructionCache(const void *Addr,
|
|
|
|
size_t Len) {
|
2010-11-29 18:16:10 +00:00
|
|
|
|
2008-11-14 02:33:17 +00:00
|
|
|
// icache invalidation for PPC and ARM.
|
|
|
|
#if defined(__APPLE__)
|
2009-09-12 23:29:02 +00:00
|
|
|
|
|
|
|
# if (defined(__POWERPC__) || defined (__ppc__) || \
|
2008-11-14 02:33:17 +00:00
|
|
|
defined(_POWER) || defined(_ARCH_PPC)) || defined(__arm__)
|
|
|
|
sys_icache_invalidate(Addr, Len);
|
2009-09-12 23:29:02 +00:00
|
|
|
# endif
|
|
|
|
|
2008-11-14 02:33:17 +00:00
|
|
|
#else
|
2009-09-12 23:29:02 +00:00
|
|
|
|
|
|
|
# if (defined(__POWERPC__) || defined (__ppc__) || \
|
|
|
|
defined(_POWER) || defined(_ARCH_PPC)) && defined(__GNUC__)
|
2008-11-14 02:33:17 +00:00
|
|
|
const size_t LineSize = 32;
|
|
|
|
|
|
|
|
const intptr_t Mask = ~(LineSize - 1);
|
|
|
|
const intptr_t StartLine = ((intptr_t) Addr) & Mask;
|
|
|
|
const intptr_t EndLine = ((intptr_t) Addr + Len + LineSize - 1) & Mask;
|
2008-06-25 17:14:10 +00:00
|
|
|
|
2008-11-14 02:33:17 +00:00
|
|
|
for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
|
|
|
|
asm volatile("dcbf 0, %0" : : "r"(Line));
|
|
|
|
asm volatile("sync");
|
|
|
|
|
|
|
|
for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
|
|
|
|
asm volatile("icbi 0, %0" : : "r"(Line));
|
|
|
|
asm volatile("isync");
|
2009-09-12 23:29:02 +00:00
|
|
|
# elif defined(__arm__) && defined(__GNUC__)
|
|
|
|
// FIXME: Can we safely always call this for __GNUC__ everywhere?
|
|
|
|
char *Start = (char*) Addr;
|
|
|
|
char *End = Start + Len;
|
|
|
|
__clear_cache(Start, End);
|
|
|
|
# endif
|
|
|
|
|
2008-11-14 02:33:17 +00:00
|
|
|
#endif // end apple
|
2010-03-15 04:57:55 +00:00
|
|
|
|
|
|
|
ValgrindDiscardTranslations(Addr, Len);
|
2008-06-25 17:17:53 +00:00
|
|
|
}
|