Skip to content
  1. Oct 16, 2005
  2. Oct 15, 2005
  3. Oct 03, 2005
  4. Sep 02, 2005
  5. Sep 01, 2005
  6. Aug 27, 2005
  7. Aug 23, 2005
  8. Aug 21, 2005
  9. Aug 06, 2005
  10. Aug 04, 2005
  11. Aug 02, 2005
  12. Jul 26, 2005
  13. Jul 21, 2005
  14. Jul 12, 2005
  15. Jul 08, 2005
  16. Apr 22, 2005
  17. Apr 14, 2005
  18. Apr 10, 2005
  19. Apr 05, 2005
  20. Mar 30, 2005
  21. Mar 15, 2005
  22. Dec 12, 2004
  23. Nov 27, 2004
  24. Nov 25, 2004
    • Nate Begeman's avatar
      Enable optimization suggested by Chris Lattner to not emit reloc stubs for · 3f76eb69
      Nate Begeman authored
      static global variables whose addresses are taken.  This allows us to
      convert the following code for taking the address of a static function foo
      
              addis r2, r30, ha16(Ll1__2E_foo_2$non_lazy_ptr-"L00001$pb")
              lwz r3, lo16(Ll1__2E_foo_2$non_lazy_ptr-"L00001$pb")(r2)
      
      which also includes linker stub code emitted at the end of the .s file not
      shown here, and replace it with this:
      
              addis r2, r30, ha16(l1__2E_foo_2-"L00001$pb")
              la r3, lo16(l1__2E_foo_2-"L00001$pb")(r2)
      
      which in addition to not needing linker help, also has no load instruction.
      For those not up on PowerPC mnemonics, la is shorthand for add immediate.
      
      llvm-svn: 18239
      3f76eb69
  25. Nov 14, 2004
  26. Nov 09, 2004
  27. Oct 26, 2004
  28. Oct 23, 2004
  29. Oct 18, 2004
  30. Sep 22, 2004
  31. Sep 05, 2004
Loading