Skip to content
  1. Oct 31, 2007
  2. Oct 23, 2007
  3. Oct 19, 2007
  4. Oct 08, 2007
  5. Sep 11, 2007
  6. Aug 02, 2007
  7. Jul 27, 2007
  8. Jun 22, 2007
  9. Jun 19, 2007
  10. May 17, 2007
  11. Apr 27, 2007
  12. Apr 22, 2007
  13. Apr 10, 2007
  14. Apr 02, 2007
  15. Mar 31, 2007
  16. Mar 28, 2007
  17. Mar 25, 2007
  18. Mar 21, 2007
  19. Mar 20, 2007
  20. Mar 16, 2007
  21. Mar 13, 2007
  22. Jan 30, 2007
    • Evan Cheng's avatar
      - Fix codegen for pc relative constant (e.g. JT) in thumb mode: · 83f35170
      Evan Cheng authored
              .set PCRELV0, (LJTI1_0_0-(LPCRELL0+4))
      LPCRELL0:
              add r1, pc, #PCRELV0
      This is not legal since add r1, pc, #c requires the constant be a multiple of 4.
      Do the following instead:
              .set PCRELV0, (LJTI1_0_0-(LPCRELL0+4))
      LPCRELL0:
              mov r1, #PCRELV0
              add r1, pc
      
      - In thumb mode, it's not possible to use .set generate a pc relative stub
        address. The stub is ARM code which is in a different section from the thumb
        code. Load the value from a constpool instead.
      - Some asm printing clean up.
      
      llvm-svn: 33664
      83f35170
  23. Jan 19, 2007
Loading