Skip to content
  1. Feb 05, 2012
  2. Feb 04, 2012
  3. Feb 03, 2012
  4. Feb 02, 2012
  5. Jan 31, 2012
    • Chris Lattner's avatar
      fix a crash on: · 21ae40e5
      Chris Lattner authored
      __has_builtin
      
      in an empty file, as we were overwriting the EOF token.  Overwriting an arbitrary token
      never seems like a good idea in the error case.  This fixes a bug reported on the GCC
      list :)
      
      llvm-svn: 149397
      21ae40e5
  6. Jan 30, 2012
  7. Jan 29, 2012
  8. Jan 27, 2012
    • Douglas Gregor's avatar
      Introduce module attributes into the module map grammar, along with a · a686e1b0
      Douglas Gregor authored
      single attribute ("system") that allows us to mark a module as being a
      "system" module. Each of the headers that makes up a system module is
      considered to be a system header, so that we (for example) suppress
      warnings there.
      
      If a module is being inferred for a framework, and that framework
      directory is within a system frameworks directory, infer it as a
      system framework.
      
      llvm-svn: 149143
      a686e1b0
  9. Jan 24, 2012
  10. Jan 23, 2012
  11. Jan 20, 2012
  12. Jan 19, 2012
  13. Jan 18, 2012
  14. Jan 17, 2012
  15. Jan 16, 2012
    • David Chisnall's avatar
      Some improvements to the handling of C11 atomic types: · fa35df62
      David Chisnall authored
      - Add atomic-to/from-nonatomic cast types
      - Emit atomic operations for arithmetic on atomic types
      - Emit non-atomic stores for initialisation of atomic types, but atomic stores and loads for every other store / load
      - Add a __atomic_init() intrinsic which does a non-atomic store to an _Atomic() type.  This is needed for the corresponding C11 stdatomic.h function.
      - Enables the relevant __has_feature() checks.  The feature isn't 100% complete yet, but it's done enough that we want people testing it.
      
      Still to do:
      
      - Make the arithmetic operations on atomic types (e.g. Atomic(int) foo = 1; foo++;) use the correct LLVM intrinsic if one exists, not a loop with a cmpxchg.
      - Add a signal fence builtin
      - Properly set the fenv state in atomic operations on floating point values
      - Correctly handle things like _Atomic(_Complex double) which are too large for an atomic cmpxchg on some platforms (this requires working out what 'correctly' means in this context)
      - Fix the many remaining corner cases
      
      llvm-svn: 148242
      fa35df62
  16. Jan 15, 2012
  17. Jan 13, 2012
  18. Jan 06, 2012
  19. Jan 05, 2012
  20. Jan 04, 2012
  21. Jan 03, 2012
Loading