[flang-commits] [flang] [Flang][OpenMP] Support iterator modifier in map and motion clauses (PR #197757)
via flang-commits
flang-commits at lists.llvm.org
Tue Aug 4 19:49:24 PDT 2026
================
@@ -1870,6 +1912,53 @@ void ClauseProcessor::processMapObjects(
}
}
+// Process objects in map/motion clauses, lowering iterator-dependent
+// locators into `result.mapIterated` and all others through the regular
+// map-lowering path. A null `ivSyms` indicates that no iterator modifier
+// is present.
+void ClauseProcessor::processMapObjectsWithIterator(
+ lower::StatementContext &stmtCtx, mlir::Location clauseLocation,
+ const omp::ObjectList &objects,
+ llvm::ArrayRef<IteratorRange> iteratorRanges,
+ const llvm::SmallPtrSetImpl<const semantics::Symbol *> *ivSyms,
+ mlir::omp::ClauseMapFlags mapTypeBits,
+ std::map<Object, OmpMapParentAndMemberData> &parentMemberIndices,
+ mlir::omp::MapClauseOps &result, llvm::SmallVectorImpl<Object> &mapObjects,
+ llvm::StringRef mapperIdNameRef, bool isMotionModifier,
+ llvm::omp::Directive directive) const {
+ if (!ivSyms) {
+ processMapObjects(stmtCtx, clauseLocation, objects, mapTypeBits,
+ parentMemberIndices, result.mapVars, mapObjects,
+ mapperIdNameRef, isMotionModifier, directive);
+ return;
+ }
+
+ // Inside a declare mapper, the mapper variable's components are mapped
+ // directly, allowing member locators such as v%a(i). Mapping a derived-type
+ // member outside a declare mapper requires parent/member handling that
+ // iterator modifiers do not support yet.
+ bool inDeclareMapper = mlir::isa_and_present<mlir::omp::DeclareMapperOp>(
+ converter.getFirOpBuilder().getRegion().getParentOp());
+
+ // Objects in an iterator-modified clause may independently reference
+ // iterator variables, so handle each object separately.
+ for (const omp::Object &object : objects) {
+ if (hasIteratorIVReference(object, *ivSyms)) {
+ if (!inDeclareMapper && getBaseObject(object, semaCtx))
+ TODO(clauseLocation, "iterator modifier with derived type member map");
+ result.mapIterated.push_back(buildIteratedMapEntry(
+ converter, semaCtx, clauseLocation, iteratorRanges, object,
+ mapperIdNameRef, mapTypeBits, directive));
+ continue;
----------------
MattPD wrote:
Confirmed: an executable `target` with an iterator map is now rejected.
https://github.com/llvm/llvm-project/pull/197757
More information about the flang-commits
mailing list