From f6acb34d239ed2828fce6bc2c1a69d92354df73a Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Tue, 25 Jul 2006 20:40:54 +0000 Subject: - Refactor the code that resolve basic block references to a TargetJITInfo method. - Added synchronizeICache() to TargetJITInfo. It is called after each block of code is emitted to flush the icache. This ensures correct execution on targets that have separate dcache and icache. - Added PPC / Mac OS X specific code to do icache flushing. llvm-svn: 29276 --- llvm/lib/Target/X86/X86JITInfo.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'llvm/lib/Target/X86/X86JITInfo.h') diff --git a/llvm/lib/Target/X86/X86JITInfo.h b/llvm/lib/Target/X86/X86JITInfo.h index 02e54af11af..f9e437e41b1 100644 --- a/llvm/lib/Target/X86/X86JITInfo.h +++ b/llvm/lib/Target/X86/X86JITInfo.h @@ -51,6 +51,8 @@ namespace llvm { /// referenced global symbols. virtual void relocate(void *Function, MachineRelocation *MR, unsigned NumRelocs, unsigned char* GOTBase); + + virtual void resolveBBRefs(MachineCodeEmitter &MCE); }; } -- cgit v1.2.3