This is an archive of the discontinued LLVM Phabricator instance.

[mips] Fix lowering load/store instruction in PIC case
ClosedPublic

Authored by atanasyan on Jul 31 2019, 10:13 AM.

Details

Summary

If an operand of the lw/sw instructions is a symbol, these instructions incorrectly lowered using not-position-independent chain of commands. For PIC code we should use lw/addiu instructions with the R_MIPS_GOT16 and R_MIPS_LO16 relocations respectively. Instead of that LLVM generates position dependent code with the R_MIPS_HI16 and R_MIPS_LO16 relocations.

This patch provides a fix for the bug by handling PIC case separately in the MipsAsmParser::expandMemInst. The main idea is to generate a chain of PIC instructions to load a symbol address into a register and then load the address content.

The fix is not optimal and does not fix all PIC-related problems. This is a task for subsequent patches.

Diff Detail

Event Timeline

atanasyan created this revision.Jul 31 2019, 10:13 AM
This revision is now accepted and ready to land.Aug 1 2019, 6:35 AM
This revision was automatically updated to reflect the committed changes.