diff options
author | agozillon <Andrew.Gozillon@amd.com> | 2023-10-30 16:00:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-30 16:00:23 +0100 |
commit | 6a62707c048e16ce9bad37ed8e3520799139436b (patch) | |
tree | 67669cdec494625312f91c8bc9941a841ec0c104 /llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp | |
parent | 4bbb2bc051c751067ea3723978e5fae1acfe6d40 (diff) | |
download | llvm-6a62707c048e16ce9bad37ed8e3520799139436b.zip llvm-6a62707c048e16ce9bad37ed8e3520799139436b.tar.gz llvm-6a62707c048e16ce9bad37ed8e3520799139436b.tar.bz2 |
[Flang][OpenMP][MLIR] Initial array section mapping MLIR -> LLVM-IR lowering utilising omp.bounds (#68689)
This patch seeks to add initial lowering of OpenMP array sections within
target region map clauses from MLIR to LLVM IR.
This patch seeks to support fixed sized contiguous (don't think OpenMP
supports anything other than contiguous sections from my reading but i
could be wrong) arrays initially, before looking toward assumed size and
shaped arrays. The patch also currently does not include stride, it's
left for future work.
Although, assumed size works in some fashion (dummy arguments) with some
minor alterations to the OMPEarlyOutliner, so it is possible changes
made in the IsolatedFromAbove series may allow this to work with no
further required patches.
It utilises the generated omp.bounds to calculate the size of the mapped
OpenMP array (both for sectioned and un-sectioned arrays) as well as the
offset to be passed to the kernel argument structure.
Alongside these changes some refactoring of how map data is handled is
attempted, using a new MapData structure to keep track of information
utilised in the lowering of mapped values.
The initial addition of a more complex createDeviceArgumentAccessor that
utilises capture kinds similarly to (and loosely based on) Clang to
generate different kernel argument accesses is also added.
A similar function for altering how the kernel argument is passed to the
kernel argument structure on the host is also utilised
(createAlteredByCaptureMap), which allows modification of the
pointer/basePointer based on their capture (and bounds information).
It's of note ByRef, is the default for explicit mappings and ByCopy will
be the default for implicit captures, so the former is currently tested
in this patch and the latter is not for the moment.
Diffstat (limited to 'llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp')
0 files changed, 0 insertions, 0 deletions