Skip to content
  1. May 03, 2006
    • Chris Lattner's avatar
      Suck block address tracking out of targets into the JIT Emitter. This · 1d8ee1fc
      Chris Lattner authored
      simplifies the MachineCodeEmitter interface just a little bit and makes
      BasicBlocks work like constant pools and jump tables.
      
      llvm-svn: 28082
      1d8ee1fc
    • Chris Lattner's avatar
      d8b192ba
    • Chris Lattner's avatar
      Several related changes: · b8065a9a
      Chris Lattner authored
      1. Change several methods in the MachineCodeEmitter class to be pure virtual.
      2. Suck emitConstantPool/initJumpTableInfo into startFunction, removing them
         from the MachineCodeEmitter interface, and reducing the amount of target-
         specific code.
      3. Change the JITEmitter so that it allocates constantpools and jump tables
         *right* next to the functions that they belong to, instead of in a separate
         pool of memory.  This makes all memory for a function be contiguous, and
         means the JITEmitter only tracks one block of memory now.
      
      llvm-svn: 28065
      b8065a9a
  2. May 02, 2006
  3. Apr 22, 2006
  4. Apr 17, 2006
  5. Mar 21, 2006
  6. Mar 10, 2006
  7. Feb 22, 2006
  8. Feb 18, 2006
  9. Jan 29, 2006
  10. Jan 22, 2006
  11. Jan 07, 2006
  12. Dec 11, 2005
  13. Nov 16, 2005
  14. Oct 16, 2005
  15. Oct 15, 2005
  16. Oct 01, 2005
  17. Aug 25, 2005
  18. Jul 27, 2005
  19. Jul 21, 2005
  20. Apr 22, 2005
  21. Apr 19, 2005
  22. Apr 18, 2005
  23. 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
  24. Nov 24, 2004
  25. Nov 23, 2004
Loading