Skip to content
  1. Sep 06, 2012
  2. Sep 05, 2012
  3. Aug 30, 2012
  4. Aug 28, 2012
  5. Aug 17, 2012
    • Bill Wendling's avatar
      Change the `linker_private_weak_def_auto' linkage to `linkonce_odr_auto_hide' to · 34bc34ec
      Bill Wendling authored
      make it more consistent with its intended semantics.
      
      The `linker_private_weak_def_auto' linkage type was meant to automatically hide
      globals which never had their addresses taken. It has nothing to do with the
      `linker_private' linkage type, which outputs the symbols with a `l' (ell) prefix
      among other things.
      
      The intended semantic is more like the `linkonce_odr' linkage type.
      
      Change the name of the linkage type to `linkonce_odr_auto_hide'. And therefore
      changing the semantics so that it produces the correct output for the linker.
      
      Note: The old linkage name `linker_private_weak_def_auto' will still parse but
      is not a synonym for `linkonce_odr_auto_hide'. This should be removed in 4.0.
      <rdar://problem/11754934>
      
      llvm-svn: 162114
      34bc34ec
  6. Aug 10, 2012
    • Rafael Espindola's avatar
      Remove references to compression in llvm-ar. It has been a long time since we · 740a6bc8
      Rafael Espindola authored
      switched from a bytecode+bzip2 to the current bitcode.
      
      llvm-svn: 161651
      740a6bc8
    • Chad Rosier's avatar
      [ms-inline asm] Add a new Inline Asm Non-Standard Dialect attribute. · 09f74b55
      Chad Rosier authored
      This new attribute is intended to be used by the backend to determine how
      the inline asm string should be parsed/printed. This patch adds the 
      ia_nsdialect attribute and also adds a test case to ensure the IR is
      correctly parsed, but there is no functional change at this time.
      
      The standard dialect is assumed to be AT&T.  Therefore, this attribute
      should only be added to MS-style inline assembly statements, which use
      the Intel dialect.  If we ever support more dialects we'll need to
      add additional state to the attribute.
      
      llvm-svn: 161641
      09f74b55
  7. Aug 08, 2012
  8. Aug 02, 2012
  9. Jul 31, 2012
  10. Jul 30, 2012
  11. Jul 27, 2012
  12. Jul 26, 2012
  13. Jul 25, 2012
  14. Jul 23, 2012
  15. Jul 18, 2012
  16. Jul 13, 2012
  17. Jul 11, 2012
  18. Jul 07, 2012
  19. Jul 06, 2012
  20. Jul 05, 2012
  21. Jul 03, 2012
  22. Jun 29, 2012
    • Chandler Carruth's avatar
      Move llvm/Support/IRBuilder.h -> llvm/IRBuilder.h · aafe0918
      Chandler Carruth authored
      This was always part of the VMCore library out of necessity -- it deals
      entirely in the IR. The .cpp file in fact was already part of the VMCore
      library. This is just a mechanical move.
      
      I've tried to go through and re-apply the coding standard's preferred
      header sort, but at 40-ish files, I may have gotten some wrong. Please
      let me know if so.
      
      I'll be committing the corresponding updates to Clang and Polly, and
      Duncan has DragonEgg.
      
      Thanks to Bill and Eric for giving the green light for this bit of cleanup.
      
      llvm-svn: 159421
      aafe0918
    • Bill Wendling's avatar
      Sphinxify the Atomics documentation. · 2908947b
      Bill Wendling authored
      llvm-svn: 159416
      2908947b
  23. Jun 28, 2012
  24. Jun 27, 2012
  25. Jun 26, 2012
  26. Jun 23, 2012
    • Hans Wennborg's avatar
      Extend the IL for selecting TLS models (PR9788) · cbe34b4c
      Hans Wennborg authored
      This allows the user/front-end to specify a model that is better
      than what LLVM would choose by default. For example, a variable
      might be declared as
      
        @x = thread_local(initialexec) global i32 42
      
      if it will not be used in a shared library that is dlopen'ed.
      
      If the specified model isn't supported by the target, or if LLVM can
      make a better choice, a different model may be used.
      
      llvm-svn: 159077
      cbe34b4c
  27. Jun 22, 2012
  28. Jun 21, 2012
Loading