Skip to content
  1. May 03, 2006
    • 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. Dec 28, 2005
  5. Nov 10, 2005
  6. Aug 19, 2005
  7. Jul 28, 2005
  8. Jul 27, 2005
  9. Jul 16, 2005
  10. Jul 12, 2005
  11. Jul 11, 2005
  12. Jul 08, 2005
  13. Jul 07, 2005
    • Chris Lattner's avatar
      Add support for emitting the symbol table (and its string table) of the · 1932f5c9
      Chris Lattner authored
      module to the ELF file.  Test it by adding support for emitting common
      symbols.  This allows us to compile this:
      
      %X = weak global int 0
      %Y = weak global int 0
      %Z = weak global int 0
      
      to an elf file that 'readelf's this:
      
      Symbol table '.symtab' contains 4 entries:
         Num:    Value  Size Type    Bind   Vis      Ndx Name
           0: 00000000     0 NOTYPE  LOCAL  DEFAULT  UND
           1: 00000004     4 OBJECT  GLOBAL DEFAULT  COM X
           2: 00000004     4 OBJECT  GLOBAL DEFAULT  COM Y
           3: 00000004     4 OBJECT  GLOBAL DEFAULT  COM Z
      
      llvm-svn: 22343
      1932f5c9
  14. Jun 27, 2005
Loading