Skip to content
  1. Jan 10, 2011
  2. Dec 10, 2010
  3. Aug 22, 2009
  4. Aug 14, 2009
  5. Aug 12, 2009
    • Chris Lattner's avatar
      Change the asmprinter to print the comment character before the · abdcbc7e
      Chris Lattner authored
      "inlineasmstart/end" strings so that the contents of the directive
      are separate from the comment character.  This lets elf targets
      get #APP/#NOAPP for free even if they don't use "#" as the comment
      character.  This also allows hoisting the darwin stuff up to the
      shared TAI class.
      
      llvm-svn: 78737
      abdcbc7e
  6. Aug 11, 2009
    • Chris Lattner's avatar
      split "JumpTableDirective" (an existing hack) into a PIC and nonPIC · fe271304
      Chris Lattner authored
      version.  This allows TAI implementations to specify the directive to use
      based on the mode being codegen'd for.
      
      The real fix for this is to remove JumpTableDirective, but I don't feel
      like diving into the jumptable snarl just now.
      
      llvm-svn: 78709
      fe271304
    • Jim Grosbach's avatar
      SjLj based exception handling unwinding support. This patch is nasty, brutish · 693e36a3
      Jim Grosbach authored
      and short. Well, it's kinda short. Definitely nasty and brutish.
      
      The front-end generates the register/unregister calls into the SjLj runtime,
      call-site indices and landing pad dispatch. The back end fills in the LSDA
      with the call-site information provided by the front end. Catch blocks are
      not yet implemented.
      
      Built on Darwin and verified no llvm-core "make check" regressions.
      
      llvm-svn: 78625
      693e36a3
  7. Aug 09, 2009
    • Chris Lattner's avatar
      1. Make MCSection an abstract class. · 1cb9396f
      Chris Lattner authored
      2. Move section switch printing to MCSection virtual method which takes a
         TAI.  This eliminates textual formatting stuff from TLOF.
      3. Eliminate SwitchToSectionDirective, getSectionFlagsAsString, and 
         TLOFELF::AtIsCommentChar.
      
      llvm-svn: 78510
      1cb9396f
  8. Aug 08, 2009
  9. Aug 05, 2009
  10. Aug 04, 2009
  11. Aug 02, 2009
  12. Jul 31, 2009
  13. Jul 28, 2009
    • Chris Lattner's avatar
      Rip all of the global variable lowering logic out of TargetAsmInfo. Since · 5e693ed0
      Chris Lattner authored
      it is highly specific to the object file that will be generated in the end,
      this introduces a new TargetLoweringObjectFile interface that is implemented
      for each of ELF/MachO/COFF/Alpha/PIC16 and XCore.
      
      Though still is still a brutal and ugly refactoring, this is a major step
      towards goodness.
      
      This patch also:
      1. fixes a bunch of dangling pointer problems in the PIC16 backend.
      2. disables the TargetLowering copy ctor which PIC16 was accidentally using.
      3. gets us closer to xcore having its own crazy target section flags and
         pic16 not having to shadow sections with its own objects.
      4. fixes wierdness where ELF targets would set CStringSection but not
         CStringSection_.  Factor the code better.
      5. fixes some bugs in string lowering on ELF targets.
      
      llvm-svn: 77294
      5e693ed0
  14. Jul 27, 2009
  15. Jul 26, 2009
Loading