Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [OPENMP]Simplify codegen for the outlined regions. | Alexey Bataev | 2019-05-23 | 1 | -6/+9 |
| | | | | | | | Simplified codegen for the outlined regions, excluding duplication code for handling variables with the reference types. llvm-svn: 361529 | ||||
* | Revert "[CodeGenCXX] Treat 'this' as noalias in constructors" | Sean Fertile | 2018-10-15 | 1 | -2/+2 |
| | | | | | | | This reverts commit https://reviews.llvm.org/rL344150 which causes MachineOutliner related failures on the ppc64le multistage buildbot. llvm-svn: 344526 | ||||
* | [CodeGenCXX] Treat 'this' as noalias in constructors | Anton Bikineev | 2018-10-10 | 1 | -2/+2 |
| | | | | | | | | | This is currently a clang extension and a resolution of the defect report in the C++ Standard. Differential Revision: https://reviews.llvm.org/D46441 llvm-svn: 344150 | ||||
* | Change memcpy/memove/memset to have dest and source alignment attributes ↵ | Daniel Neilson | 2018-01-19 | 1 | -8/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | (Step 1). Summary: Upstream LLVM is changing the the prototypes of the @llvm.memcpy/memmove/memset intrinsics. This change updates the Clang tests for this change. The @llvm.memcpy/memmove/memset intrinsics currently have an explicit argument which is required to be a constant integer. It represents the alignment of the dest (and source), and so must be the minimum of the actual alignment of the two. This change removes the alignment argument in favour of placing the alignment attribute on the source and destination pointers of the memory intrinsic call. For example, code which used to read: call void @llvm.memcpy.p0i8.p0i8.i32(i8* %dest, i8* %src, i32 100, i32 4, i1 false) will now read call void @llvm.memcpy.p0i8.p0i8.i32(i8* align 4 %dest, i8* align 4 %src, i32 100, i1 false) At this time the source and destination alignments must be the same (Step 1). Step 2 of the change, to be landed shortly, will relax that contraint and allow the source and destination to have different alignments. llvm-svn: 322964 | ||||
* | [OPENMP] Support for -fopenmp-simd option with compilation of simd loops | Alexey Bataev | 2017-12-29 | 1 | -0/+16 |
| | | | | | | | | | only. Added support for -fopenmp-simd option that allows compilation of simd-based constructs without emission of OpenMP runtime calls. llvm-svn: 321560 | ||||
* | [OPENMP] Initial codegen for `target teams distribute simd` directive. | Alexey Bataev | 2017-12-13 | 1 | -0/+385 |
Host + generic device codegen for `target teams distribute simd` directive. llvm-svn: 320608 |