Skip to content
  1. Oct 07, 2019
  2. Oct 03, 2019
  3. Sep 18, 2019
  4. Aug 29, 2019
    • Simon Atanasyan's avatar
      [mips] Fix expanding `lw/sw $reg1, symbol($reg2)` instruction · 3464b91e
      Simon Atanasyan authored
      When a "base" in the `lw/sw $reg1, symbol($reg2)` instruction is
      a register and generated code is position independent, backend
      does not add the "base" value to the symbol address.
      ```
      lw     $reg1, %got(symbol)($gp)
      lw/sw  $reg1, 0($reg1)
      ```
      
      This patch fixes the bug and adds the missed `addu` instruction by
      passing `BaseReg` into the `loadAndAddSymbolAddress` routine and handles
      the case when the `BaseReg` is the zero register to escape redundant
      `move reg, reg` instruction:
      ```
      lw     $reg1, %got(symbol)($gp)
      addu   $reg1, $reg1, $reg2
      lw/sw  $reg1, 0($reg1)
      ```
      
      Differential Revision: https://reviews.llvm.org/D66894
      
      llvm-svn: 370353
      3464b91e
  5. Aug 23, 2019
    • Simon Atanasyan's avatar
      [mips] Reduce number of instructions used for loading a global symbol's value · 5f7d6ac7
      Simon Atanasyan authored
      Now `lw/sw $reg, sym+offset` pseudo instructions for global symbol `sym`
      are lowering into the following three instructions.
      ```
      lw     $reg, %got(symbol)($gp)
      addiu  $reg, $reg, offset
      lw/sw  $reg, 0($reg)
      ```
      
      It's possible to reduce the number of instructions by taking the offset
      in account in the final `lw/sw` command. This patch implements that
      optimization.
      ```
      lw     $reg, %got(symbol)($gp)
      lw/sw  $reg, offset($reg)
      ```
      
      Differential Revision: https://reviews.llvm.org/D66553
      
      llvm-svn: 369756
      5f7d6ac7
    • Simon Atanasyan's avatar
      [mips] Do not include offset into `%got` expression for global symbols · 58492b18
      Simon Atanasyan authored
      Now pseudo instruction `la $6, symbol+8($6)` is expanding into the following
      chain of commands:
      ```
      lw    $1, %got(symbol+8)($gp)
      addiu $1, $1, 8
      addu  $6, $1, $6
      ```
      
      This is incorrect. When a linker handles the `R_MIPS_GOT16` relocation,
      it does not expect to get any addend and breaks on assertion. Otherwise
      it has to create new GOT entry for each unique "sym + offset" pair.
      Offset for a global symbol should be added to result of loading GOT
      entry by a separate `add` command.
      
      The patch fixes the problem by stripping off an offset from the expression
      passed to the `%got`. That's interesting that even current code inserts
      a separate `add` command.
      
      Differential Revision: https://reviews.llvm.org/D66552
      
      llvm-svn: 369755
      58492b18
  6. Aug 07, 2019
  7. Aug 01, 2019
    • Simon Atanasyan's avatar
      [mips] Fix lowering load/store instruction in PIC case · 0620cf11
      Simon Atanasyan authored
      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.
      
      Differential Revision: https://reviews.llvm.org/D65524
      
      llvm-svn: 367580
      0620cf11
  8. Jul 27, 2019
  9. Jul 22, 2019
  10. Jul 17, 2019
  11. Jul 15, 2019
  12. Jul 10, 2019
  13. Jul 09, 2019
  14. Jun 20, 2019
  15. Jun 17, 2019
  16. Jun 12, 2019
  17. May 15, 2019
  18. May 01, 2019
    • Fangrui Song's avatar
      [llvm-readobj] Change -t to --symbols in tests. NFC · 6afcdcf9
      Fangrui Song authored
      -t is --symbols in llvm-readobj but --section-details (unimplemented) in readelf.
      The confusing option should not be used since we aim for improving
      compatibility.
      
      Keep just one llvm-readobj -t use case in test/tools/llvm-readobj/symbols.test
      
      llvm-svn: 359661
      6afcdcf9
    • Fangrui Song's avatar
      [llvm-readobj] Change -long-option to --long-option in tests. NFC · e29e30b1
      Fangrui Song authored
      We use both -long-option and --long-option in tests. Switch to --long-option for consistency.
      
      In the "llvm-readelf" mode, -long-option is discouraged as it conflicts with grouped short options and it is not accepted by GNU readelf.
      
      While updating the tests, change llvm-readobj -s to llvm-readobj -S to reduce confusion ("s" is --section-headers in llvm-readobj but --symbols in llvm-readelf).
      
      llvm-svn: 359649
      e29e30b1
  19. Apr 27, 2019
  20. Mar 19, 2019
  21. Mar 13, 2019
    • Simon Atanasyan's avatar
      [mips] Map SW instruction to its microMIPS R6 variant · b9d9e0be
      Simon Atanasyan authored
      To provide mapping between standard and microMIPS R6 variants of the
      `sw` command we have to rename SWSP_xxx commands from "sw" to "swsp".
      Otherwise `tablegen` starts to show the error `Multiple matches found
      for `SW'`. After that to restore printing SWSP command as `sw`, I add
      an appropriate `MipsInstAlias` instance.
      
      We also need to implement "size reduction" for microMIPS R6. But this
      task is for separate patch. After that the `micromips-lwsp-swsp.ll` test
      case will be extended.
      
      Differential Revision: http://reviews.llvm.org/D59046
      
      llvm-svn: 356045
      b9d9e0be
  22. Jan 10, 2019
  23. Jan 09, 2019
  24. Dec 29, 2018
  25. Dec 15, 2018
  26. Dec 12, 2018
  27. Dec 10, 2018
  28. Nov 22, 2018
    • Vladimir Stefanovic's avatar
      Reland test/MC/Mips/reloc-directive-label-offset.s · b2c4d668
      Vladimir Stefanovic authored
      The test was reverted because it failed on
      llvm-clang-x86_64-expensive-checks-win builder, and that was because
      -DEXPENSIVE_CHECKS adds randomness to llvm::sort(), affecting the order of
      relocation table entries.
      Modified the test to not have two relocations at the same offset.
      
      llvm-svn: 347476
      b2c4d668
  29. Nov 21, 2018
  30. Nov 06, 2018
Loading