Skip to content
  1. Mar 27, 2012
  2. Mar 04, 2012
  3. Feb 06, 2012
  4. Feb 05, 2012
  5. Feb 03, 2012
  6. Jan 27, 2012
  7. Jan 26, 2012
  8. Dec 23, 2011
  9. Dec 20, 2011
  10. Nov 15, 2011
  11. Jul 18, 2011
  12. Jun 28, 2011
  13. May 06, 2011
  14. May 02, 2011
  15. Feb 22, 2011
  16. Jan 31, 2011
  17. Jan 10, 2011
  18. Nov 14, 2010
  19. Oct 31, 2010
  20. Oct 30, 2010
  21. Oct 26, 2010
  22. Oct 20, 2010
  23. Sep 21, 2010
  24. Jul 27, 2010
  25. Jul 24, 2010
  26. Jul 07, 2010
  27. Jul 04, 2010
  28. Jul 03, 2010
  29. Jun 30, 2010
  30. Jun 29, 2010
    • Bill Wendling's avatar
      Introducing the "linker_weak" linkage type. This will be used for Objective-C · 1767723d
      Bill Wendling authored
      metadata types which should be marked as "weak", but which the linker will
      remove upon final linkage. For example, the "objc_msgSend_fixup_alloc" symbol is
      defined like this:
      
             .globl l_objc_msgSend_fixup_alloc
             .weak_definition l_objc_msgSend_fixup_alloc
             .section __DATA, __objc_msgrefs, coalesced
             .align 3
      l_objc_msgSend_fixup_alloc:
              .quad   _objc_msgSend_fixup
              .quad   L_OBJC_METH_VAR_NAME_1
      
      This is different from the "linker_private" linkage type, because it can't have
      the metadata defined with ".weak_definition".
      
      llvm-svn: 107205
      1767723d
  31. May 24, 2010
  32. Apr 15, 2010
  33. Apr 05, 2010
  34. Apr 03, 2010
    • David Greene's avatar
      · 9b063df4
      David Greene authored
      Ok, third time's the charm.  No changes from last time except the CMake
      source addition.  Apparently the buildbots were wrong about failures.
      
      ---
      
      Add some switches helpful for debugging:
      
      -print-before=<Pass Name>
      
      Dump IR before running pass <Pass Name>.
      
      -print-before-all
      
      Dump IR before running each pass.
      
      -print-after-all
      
      Dump IR after running each pass.
      
      These are helpful when tracking down a miscompilation.  It is easy to
      get IR dumps and do diffs on them, etc.
      
      To make this work well, add a new getPrinterPass API to Pass so that
      each kind of pass (ModulePass, FunctionPass, etc.) can create a Pass
      suitable for dumping out the kind of object the Pass works on.
      
      llvm-svn: 100249
      9b063df4
  35. Apr 02, 2010
    • Chris Lattner's avatar
      Switch the code generator (except the JIT) onto the new DebugLoc · 915c5f98
      Chris Lattner authored
      representation.  This eliminates the 'DILocation' MDNodes for 
      file/line/col tuples from -O0 -g codegen.
      
      This remove the old DebugLoc class, making it a typedef for DebugLoc,
      I'll rename NewDebugLoc next.
      
      I didn't update the JIT to use the new apis, so it will continue to
      work, but be as slow as before.  Someone should eventually do this
      or, better yet, rip out the JIT debug info stuff and build the JIT
      on top of MC.
      
      llvm-svn: 100209
      915c5f98
Loading