summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/Mips/MipsJITInfo.cpp
diff options
context:
space:
mode:
authorBruno Cardoso Lopes <bruno.cardoso@gmail.com>2011-11-08 12:47:11 +0000
committerBruno Cardoso Lopes <bruno.cardoso@gmail.com>2011-11-08 12:47:11 +0000
commit71133fe9c619aa0e51fa378755fd881ace9e5abd (patch)
tree5c41c5226829c3c7b07ef981639ed3f8c9cff795 /llvm/lib/Target/Mips/MipsJITInfo.cpp
parent4fed9e3af4d3482d9b54f669f4664df018983371 (diff)
downloadbcm5719-llvm-71133fe9c619aa0e51fa378755fd881ace9e5abd.tar.gz
bcm5719-llvm-71133fe9c619aa0e51fa378755fd881ace9e5abd.zip
This patch handles unaligned loads and stores in Mips JIT. Mips backend
implements unaligned loads and stores with assembler macro-instructions ulw, usw, ulh, ulhu, ush, and this patch emits corresponding instructions instead of these macros. Since each unaligned load/store is expanded into two corresponding loads/stores where offset for second load/store is modified by +3 (for words) or +1 (for halfwords). Patch by Petar Jovanovic and Sasa Stankovic. llvm-svn: 144081
Diffstat (limited to 'llvm/lib/Target/Mips/MipsJITInfo.cpp')
-rw-r--r--llvm/lib/Target/Mips/MipsJITInfo.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/llvm/lib/Target/Mips/MipsJITInfo.cpp b/llvm/lib/Target/Mips/MipsJITInfo.cpp
index e3f6a753c40..a0ee722996d 100644
--- a/llvm/lib/Target/Mips/MipsJITInfo.cpp
+++ b/llvm/lib/Target/Mips/MipsJITInfo.cpp
@@ -218,10 +218,16 @@ void MipsJITInfo::relocate(void *Function, MachineRelocation *MR,
*((unsigned*) RelocPos) |= (unsigned) ResultPtr;
break;
- case Mips::reloc_mips_lo:
- ResultPtr = ResultPtr & 0xffff;
+ case Mips::reloc_mips_lo: {
+ // Addend is needed for unaligned load/store instructions, where offset
+ // for the second load/store in the expanded instruction sequence must
+ // be modified by +1 or +3. Otherwise, Addend is 0.
+ int Addend = *((unsigned*) RelocPos) & 0xffff;
+ ResultPtr = (ResultPtr + Addend) & 0xffff;
+ *((unsigned*) RelocPos) &= 0xffff0000;
*((unsigned*) RelocPos) |= (unsigned) ResultPtr;
break;
+ }
default:
llvm_unreachable("ERROR: Unknown Mips relocation.");
OpenPOWER on IntegriCloud