diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-07-25 20:40:54 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-07-25 20:40:54 +0000 |
commit | 55fc28076fa48723bd170e51638b3b5974ca0fa1 (patch) | |
tree | 954eb5ec8c5be4c9a3b5cb6c6cbe7f6398564370 /lib/Target/X86/X86JITInfo.cpp | |
parent | 55371739dec0ade6fcc77de228fb3e4d098845f7 (diff) | |
download | external_llvm-55fc28076fa48723bd170e51638b3b5974ca0fa1.zip external_llvm-55fc28076fa48723bd170e51638b3b5974ca0fa1.tar.gz external_llvm-55fc28076fa48723bd170e51638b3b5974ca0fa1.tar.bz2 |
- 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/X86JITInfo.cpp')
-rw-r--r-- | lib/Target/X86/X86JITInfo.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/Target/X86/X86JITInfo.cpp b/lib/Target/X86/X86JITInfo.cpp index 9bb2a72..9fd8029 100644 --- a/lib/Target/X86/X86JITInfo.cpp +++ b/lib/Target/X86/X86JITInfo.cpp @@ -203,3 +203,13 @@ void X86JITInfo::relocate(void *Function, MachineRelocation *MR, } } } + +void X86JITInfo::resolveBBRefs(MachineCodeEmitter &MCE) { + // Resolve all forward branches now. + for (unsigned i = 0, e = BBRefs.size(); i != e; ++i) { + unsigned Location = MCE.getMachineBasicBlockAddress(BBRefs[i].first); + intptr_t Ref = BBRefs[i].second; + *((unsigned*)Ref) = Location-Ref-4; + } + BBRefs.clear(); +} |