Skip to content
  1. Jun 28, 2016
  2. Jun 27, 2016
    • Yaxun Liu's avatar
      Attempting to fix lit test test/Headers/opencl-c-header.cl on cygwin. · d8e1d56d
      Yaxun Liu authored
      "chmod u-x *" does not work for lit on cygwin.
      
      llvm-svn: 273948
      d8e1d56d
    • Richard Smith's avatar
      Add simple, stupid, pattern-based fuzzer / reducer for modules bugs. I've · 6e2a64f2
      Richard Smith authored
      already used this to find and reduce quite a few bugs, and it works pretty well
      if you can find the right patterns.
      
      llvm-svn: 273913
      6e2a64f2
    • George Burgess IV's avatar
      [ExprConstant] Fix PR28314 - crash while evluating objectsize. · 4168d758
      George Burgess IV authored
      This fixes a crash in code like:
      ```
      struct A {
        struct B b;
        char c[1];
      }
      
      int foo(struct A* a) { return __builtin_object_size(a->c, 0); }
      ```
      
      We wouldn't check whether the structs we were examining were invalid,
      and getting the layout of an invalid struct is (unsurprisingly) A Bad
      Thing. With this patch, we'll always return conservatively if we see an
      invalid struct, since I'm assuming the presence of an invalid struct
      means that our compilation failed (so having a conservative result isn't
      such a big deal).
      
      llvm-svn: 273911
      4168d758
    • Kelvin Li's avatar
      [OpenMP] Diagnose missing cases of statements between target and teams directives · 3834dceb
      Kelvin Li authored
      Clang fails to diagnose cases such as
      #pragma omp target
        while(0) {
          #pragma omp teams
          {}
        }
      
      A patch by David Sheinkman.
      
      llvm-svn: 273908
      3834dceb
    • Carlo Bertolli's avatar
      Resubmission of http://reviews.llvm.org/D21564 after fixes. · 9925f156
      Carlo Bertolli authored
      [OpenMP] Initial implementation of parse and sema for composite pragma 'distribute parallel for'
      
      This patch is an initial implementation for #distribute parallel for.
      The main differences that affect other pragmas are:
      
      The implementation of 'distribute parallel for' requires blocking of the associated loop, where blocks are "distributed" to different teams and iterations within each block are scheduled to parallel threads within each team. To implement blocking, sema creates two additional worksharing directive fields that are used to pass the team assigned block lower and upper bounds through the outlined function resulting from 'parallel'. In this way, scheduling for 'for' to threads can use those bounds.
      As a consequence of blocking, the stride of 'distribute' is not 1 but it is equal to the blocking size. This is returned by the runtime and sema prepares a DistIncrExpr variable to hold that value.
      As a consequence of blocking, the global upper bound (EnsureUpperBound) expression of the 'for' is not the original loop upper bound (e.g. in for(i = 0 ; i < N; i++) this is 'N') but it is the team-assigned block upper bound. Sema creates a new expression holding the calculation of the actual upper bound for 'for' as UB = min(UB, PrevUB), where UB is the loop upper bound, and PrevUB is the team-assigned block upper bound.
      
      llvm-svn: 273884
      9925f156
    • David Majnemer's avatar
      [clang-cl] Implement support for /std · 093012bf
      David Majnemer authored
      /std: supports two arguments, c++14 and c++latest.  Currently, c++latest
      maps to c++1z but this might change down the road.
      
      llvm-svn: 273841
      093012bf
  3. Jun 26, 2016
  4. Jun 25, 2016
  5. Jun 24, 2016
Loading