summaryrefslogtreecommitdiff
path: root/lib/Target/X86/X86.h
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2006-07-25 20:40:54 +0000
committerEvan Cheng <evan.cheng@apple.com>2006-07-25 20:40:54 +0000
commit55fc28076fa48723bd170e51638b3b5974ca0fa1 (patch)
tree954eb5ec8c5be4c9a3b5cb6c6cbe7f6398564370 /lib/Target/X86/X86.h
parent55371739dec0ade6fcc77de228fb3e4d098845f7 (diff)
downloadllvm-55fc28076fa48723bd170e51638b3b5974ca0fa1.tar.gz
llvm-55fc28076fa48723bd170e51638b3b5974ca0fa1.tar.bz2
llvm-55fc28076fa48723bd170e51638b3b5974ca0fa1.tar.xz
- 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29276 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86.h')
-rw-r--r--lib/Target/X86/X86.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/X86/X86.h b/lib/Target/X86/X86.h
index 8d2805ccc2..e6deda620e 100644
--- a/lib/Target/X86/X86.h
+++ b/lib/Target/X86/X86.h
@@ -44,7 +44,8 @@ FunctionPass *createX86CodePrinterPass(std::ostream &o, X86TargetMachine &tm);
/// createX86CodeEmitterPass - Return a pass that emits the collected X86 code
/// to the specified MCE object.
-FunctionPass *createX86CodeEmitterPass(MachineCodeEmitter &MCE);
+FunctionPass *createX86CodeEmitterPass(X86TargetMachine &TM,
+ MachineCodeEmitter &MCE);
/// addX86ELFObjectWriterPass - Add passes to the FPM that output the generated
/// code as an ELF object file.