LLI: move instruction cache tweaks.

Invalidate the instruction cache right before we start actually executing code, otherwise
we can miss some that came later. This is still not quite right for a truly lazilly
compiled environment, but it's closer.

llvm-svn: 162803
This commit is contained in:
Jim Grosbach 2012-08-28 23:22:30 +00:00
parent 1083b0dea6
commit 748b947849
1 changed files with 4 additions and 4 deletions

View File

@ -466,10 +466,6 @@ int main(int argc, char **argv, char * const *envp) {
exit(1);
}
// Clear instruction cache before code will be executed.
if (JMM)
JMM->invalidateInstructionCache();
// The following functions have no effect if their respective profiling
// support wasn't enabled in the build configuration.
EE->RegisterJITEventListener(
@ -524,6 +520,10 @@ int main(int argc, char **argv, char * const *envp) {
}
}
// Clear instruction cache before code will be executed.
if (JMM)
JMM->invalidateInstructionCache();
// Run main.
int Result = EE->runFunctionAsMain(EntryFn, InputArgv, envp);