The patch extends size reduction pass for MicroMIPS.
It introduces reduction of two instructions into one instruction:
Two SW instructions are transformed into one SWP instrucition.
Two LW instructions are transformed into one LWP instrucition.
Details
Diff Detail
- Repository
- rL LLVM
Event Timeline
Can you also provide some tests than ensure that lwp/swp is not formed when the first register is ra? You'll need to use some mir based testing (i.e. compile an ll file and use -stop-before= and the list test will use -start-after=)
lib/Target/Mips/MicroMipsSizeReduction.cpp | ||
---|---|---|
86 ↗ | (On Diff #119638) | You should not be using void * pointers. Instead, provide a typedef for the structure you're passing and use that instead. |
116–128 ↗ | (On Diff #119638) | Provide a forward declaration and typedef for this structure above 'struct ReduceEntry', as void * should not be used. |
189 ↗ | (On Diff #119638) | The parameter flag should have a more descriptive name. |
441–445 ↗ | (On Diff #119638) | Swap these two blocks in order and you can the set MI2 to NextMII immediately. |
639–644 ↗ | (On Diff #119638) | Unfortunately this is not the case that this pass is among the last to run before machine code is emitted. This pass runs before the delay slot filler+long branch+hazard scheduling. There are other general later passes which do some analysis for stackmaps and debug information and funclet layout and the like. A particular problem here is that as the lwp/swp instructions either write/read their operands the delay slot filler will not be able to or will incorrect analyse that for the purposes of filling delay slots. The second problem is that lwp and swp are unpredictable when placed in delay slots and the delay slot filler doesn't know that. There are number of issues to be resolved here: correcting the definition of lwp and swp so that their definition reflects their actual operation; marking this instructions in some way as being unsuitable for being placed in delay slots. |
684 ↗ | (On Diff #119638) | Unnecessary change. |
lib/Target/Mips/MicroMipsSizeReduction.cpp | ||
---|---|---|
343 ↗ | (On Diff #128332) | instruciton -> instruction |
407 ↗ | (On Diff #128332) | Rather than passing an explicit end iterator, determine the end from the instruction iterator MII, this reduces the number of arguments to be passed. |
test/CodeGen/Mips/micromips-sizereduction/micromips-lwp-swp.ll | ||
1 ↗ | (On Diff #128332) | Change the -march=mipsel to -mtriple=mipsel-unknown-linux-gnu and use update_llc_checks.py to generate the check lines. Can you add another version of this test that is .mir based but with LW_MM and SW_MM, and mixes of LW & LW_MM, similarly for the stores? |
Hi Milena, sorry for the delay in getting back to this, I', currently on holiday but I will get back to looking at this sometime next week.
This looks ok. One the patch that I have made this dependant on lands, you should be able to get rid of the undefs on the registers, as they'll have the correct descriptions.
lib/Target/Mips/MicroMipsSizeReduction.cpp | ||
---|---|---|
477 ↗ | (On Diff #149119) | Invert the test here. If Reg1 != Reg2 just return false immediately. |
483 ↗ | (On Diff #149119) | if (!(ConsecutiveForward || ConsecutiveBackward)) return false; and remove the Reduce variable altogether. |
test/CodeGen/Mips/micromips-sizereduction/micromips-lwp-swp.mir | ||
6–8 ↗ | (On Diff #149119) | This can be removed. |
15 ↗ | (On Diff #149119) | The attribute numbers can be removed. |
20–21 ↗ | (On Diff #149119) | This can be removed. |
test/CodeGen/Mips/micromips-sizereduction/micromips-no-lwp-swp.mir | ||
6–8 ↗ | (On Diff #149119) | This can be removed. |
15 ↗ | (On Diff #149119) | The attribute numbers can be removed. |
20–21 ↗ | (On Diff #149119) | This can be removed. |
lib/Target/Mips/MicroMipsSizeReduction.cpp | ||
---|---|---|
347 ↗ | (On Diff #149739) | Shouldn't the closing parenthesis here be on the next line? Like the check below? |