Skip to content
  1. Dec 11, 2005
  2. Nov 16, 2005
  3. Oct 16, 2005
  4. Oct 15, 2005
  5. Oct 01, 2005
  6. Aug 25, 2005
  7. Jul 27, 2005
  8. Jul 21, 2005
  9. Apr 22, 2005
  10. Apr 19, 2005
  11. Apr 18, 2005
  12. 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
    • Chris Lattner's avatar
      There is not a 1-1 mappign between llvm blocks and PPC blocks, do not use · 5d8ae542
      Chris Lattner authored
      LLVM blocks as the keys for the branch rewriter.  This fixes treeadd and
      many other programs with the JIT.
      
      llvm-svn: 18223
      5d8ae542
  13. Nov 24, 2004
  14. Nov 23, 2004
  15. Nov 22, 2004
  16. Nov 20, 2004
  17. Nov 16, 2004
  18. Oct 24, 2004
  19. Oct 23, 2004
    • Misha Brukman's avatar
      * Do not emit IMPLICIT_DEF pseudo-instructions · 421c3c1e
      Misha Brukman authored
      * Convert register numbers from their opcode value to the real value, e.g.
        PPC::R1 => 1 and PPC::F1 => 1
      * Add correct handling of loading of global values which are PC-relative --
        implement ha16() and lo16()
      
      llvm-svn: 17190
      421c3c1e
  20. Oct 21, 2004
  21. Oct 14, 2004
  22. Sep 02, 2004
    • Reid Spencer's avatar
      Changes For Bug 352 · 7c16caa3
      Reid Spencer authored
      Move include/Config and include/Support into include/llvm/Config,
      include/llvm/ADT and include/llvm/Support. From here on out, all LLVM
      public header files must be under include/llvm/.
      
      llvm-svn: 16137
      7c16caa3
  23. Aug 11, 2004
Loading