mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-14 07:09:08 +00:00
Making invalidateInstructionCache automatic in SectionMemoryManager
llvm-svn: 180225
This commit is contained in:
parent
0c2ffd01ef
commit
4911adbdfd
@ -87,9 +87,7 @@ public:
|
||||
/// explicit cache flush, otherwise JIT code manipulations (like resolved
|
||||
/// relocations) will get to the data cache but not to the instruction cache.
|
||||
///
|
||||
/// This method is not called by RuntimeDyld or MCJIT during the load
|
||||
/// process. Clients may call this function when needed. See the lli
|
||||
/// tool for example use.
|
||||
/// This method is called from applyPermissions.
|
||||
virtual void invalidateInstructionCache();
|
||||
|
||||
private:
|
||||
|
@ -138,6 +138,11 @@ bool SectionMemoryManager::applyPermissions(std::string *ErrMsg)
|
||||
|
||||
// Read-write data memory already has the correct permissions
|
||||
|
||||
// Some platforms with separate data cache and instruction cache require
|
||||
// explicit cache flush, otherwise JIT code manipulations (like resolved
|
||||
// relocations) will get to the data cache but not to the instruction cache.
|
||||
invalidateInstructionCache();
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user