- Jun 28, 2016
-
-
David Majnemer authored
This fixes PR28326. llvm-svn: 273986
-
Jordan Rose authored
DiagnosticNoteRenderer asserts trying to emit its "while building module Foo imported from bar.h:5" note when the presumed location of the import is invalid. This assertion was added in r267914, where most uses of 'getFilename' were updated to test 'isValid' instead. This one must have been missed. I can't come up with a test because this location is always valid in C-based code, but external clients that manually import modules (*cough*Swift*cough*) sometimes provide invalid SourceLocations. rdar://problem/26099576 http://reviews.llvm.org/D21111 llvm-svn: 273976
-
Saleem Abdulrasool authored
llvm-svn: 273972
-
Matt Arsenault authored
llvm-svn: 273965
-
Chris Dewhurst authored
llvm-svn: 273950
-
- Jun 27, 2016
-
-
Yaxun Liu authored
"chmod u-x *" does not work for lit on cygwin. llvm-svn: 273948
-
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
-
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
-
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
-
http://reviews.llvm.org/D21564Carlo 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
-
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
-
- Jun 26, 2016
-
-
Asaf Badouh authored
Differential Revision: http://reviews.llvm.org/D21504 llvm-svn: 273812
-
- Jun 25, 2016
-
-
James Y Knight authored
llvm-svn: 273783
-
Craig Topper authored
[X86] Fix pslldq/psrldq intrinsics to not fail compilation with immediates larger than 16. This was accidentally broken in r272246. llvm-svn: 273775
-
Peter Collingbourne authored
llvm-svn: 273760
-
Peter Collingbourne authored
CodeGen: Start emitting checked loads when both trapping CFI and -fwhole-program-vtables are enabled. Differential Revision: http://reviews.llvm.org/D21122 llvm-svn: 273757
-
Richard Smith authored
variable weak discardable linkage and partially-ordered initialization, and is implied for constexpr static data members.) llvm-svn: 273754
-
- Jun 24, 2016
-
-
Rafael Espindola authored
Patch by Lei Zhang! llvm-svn: 273735
-
Peter Collingbourne authored
Differential Revision: http://reviews.llvm.org/D21054 llvm-svn: 273730
-
Chris Bieneman authored
I added this option in r257827 to try and add compatibility with autoconf. At the time I misunderstood the problem. Our CMake automatically generates the SVN revision information and generates a build action to update it so builds don't need to be re-configured on SCM update (which is a better solution than we had in autoconf). The problem I was actually seeing was isolated cases where SVN revision information isn't available because the repository structures have been removed. This happens in some automated testing systems. This patch allows SVN_REVISION to be overridden if the build configuration could not find the SCM repository structures, and removes the code from my original patch because it is unnecessary. llvm-svn: 273714
-
Carlo Bertolli authored
[OpenMP] Initial implementation of parse and sema for composite pragma 'distribute parallel for' llvm-svn: 273709
-
Carlo Bertolli authored
http://reviews.llvm.org/D21564 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: 273705
-
Martin Probst authored
Checking Line.MustBeDeclaration does actually break the field and param initializer use case. llvm-svn: 273694
-
Stephan Bergmann authored
llvm-svn: 273689
-
Richard Smith authored
llvm-svn: 273683
-
Richard Smith authored
llvm-svn: 273681
-
Richard Smith authored
llvm-svn: 273680
-
Richard Smith authored
llvm-svn: 273676
-
Strahinja Petrovic authored
Fixing build issue for test test/CodeGen/struct-union-BE.c. llvm-svn: 273675
-
Richard Smith authored
llvm-svn: 273668
-
Richard Smith authored
llvm-svn: 273667
-
Richard Smith authored
llvm-svn: 273666
-
Strahinja Petrovic authored
smaller than register as argument in variadic functions on big endian architectures. Differential Revision: http://reviews.llvm.org/D21611 llvm-svn: 273665
-
Richard Smith authored
llvm-svn: 273662
-
Cong Liu authored
llvm-svn: 273659
-
David Majnemer authored
llvm-svn: 273651
-
David Majnemer authored
No functional change is intended, just a small refactoring. llvm-svn: 273650
-
David Majnemer authored
No functional change is intended, just a small refactoring. llvm-svn: 273647
-
David Majnemer authored
MSVC allocates fresh storage for consecutive bitfields with different underlying types. llvm-svn: 273646
-
NAKAMURA Takumi authored
llvm-svn: 273624
-