Skip to content
  1. Jun 01, 2007
  2. May 30, 2007
  3. May 22, 2007
  4. May 18, 2007
  5. May 16, 2007
  6. May 15, 2007
  7. May 08, 2007
  8. Apr 28, 2007
  9. Apr 27, 2007
  10. Apr 18, 2007
  11. Apr 02, 2007
  12. Mar 27, 2007
  13. Mar 20, 2007
  14. Mar 19, 2007
  15. Feb 03, 2007
  16. 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
  17. Jan 26, 2007
  18. Jan 19, 2007
  19. Dec 31, 2006
  20. Dec 28, 2006
  21. Dec 26, 2006
  22. Dec 12, 2006
  23. Dec 08, 2006
  24. Nov 09, 2006
  25. Nov 08, 2006
  26. Nov 04, 2006
  27. Nov 01, 2006
  28. Oct 24, 2006
  29. Oct 23, 2006
Loading