[flang] [llvm] [flang][llvm][OpenMP][OpenACC] Add implicit casts to omp.atomic and acc.atomic (PR #131603)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 18 06:54:36 PDT 2025
================
@@ -103,6 +104,61 @@ static void processOmpAtomicTODO(mlir::Type elementType,
}
}
+/// Emits an implicit cast for atomic statements
+static void emitImplicitCast(Fortran::lower::AbstractConverter &converter,
+ mlir::Location loc, mlir::Value &fromAddress,
+ mlir::Value &toAddress, mlir::Type &elementType) {
+ if (fromAddress.getType() == toAddress.getType())
+ return;
+ fir::FirOpBuilder &builder = converter.getFirOpBuilder();
+ mlir::Value alloca = builder.create<fir::AllocaOp>(
+ loc, fir::unwrapRefType(toAddress.getType()));
+ mlir::Value loadedVal = builder.create<fir::LoadOp>(loc, fromAddress);
+ mlir::Type toType = fir::unwrapRefType(toAddress.getType());
+ mlir::Type fromType = fir::unwrapRefType(fromAddress.getType());
+ if (!fir::isa_complex(toType) && !fir::isa_complex(fromType)) {
+ loadedVal = builder.create<fir::ConvertOp>(
+ loc, fir::unwrapRefType(toAddress.getType()), loadedVal);
+ builder.create<fir::StoreOp>(loc, loadedVal, alloca);
+ } else if (!fir::isa_complex(toType) && fir::isa_complex(fromType)) {
+ loadedVal = builder.create<fir::ExtractValueOp>(
+ loc, mlir::cast<mlir::ComplexType>(fromType).getElementType(),
+ loadedVal,
+ builder.getArrayAttr(
+ builder.getIntegerAttr(builder.getIndexType(), 0)));
+ loadedVal = builder.create<fir::ConvertOp>(loc, toType, loadedVal);
+ builder.create<fir::StoreOp>(loc, loadedVal, alloca);
+ } else if (fir::isa_complex(toType) && fir::isa_complex(fromType)) {
+ mlir::Value firstComp = builder.create<fir::ExtractValueOp>(
+ loc, mlir::cast<mlir::ComplexType>(fromType).getElementType(),
+ loadedVal,
+ builder.getArrayAttr(
+ builder.getIntegerAttr(builder.getIndexType(), 0)));
+ mlir::Value secondComp = builder.create<fir::ExtractValueOp>(
+ loc, mlir::cast<mlir::ComplexType>(fromType).getElementType(),
+ loadedVal,
+ builder.getArrayAttr(
+ builder.getIntegerAttr(builder.getIndexType(), 1)));
----------------
NimishMishra wrote:
Performing the convert after the `omp.atomic.read` is functioning fine, but causing problems with atomic capture at the moment. Earlier (although incorrect) we were performing the convert before the `omp.atomic.read`, so it could be hoisted out of the atomic region. Now since the conversion is after the atomic read, we cannot really hoist the conversion operations outside the region.
I am looking into resolving this. Do you have any ideas here? We could, of course, emit a TODO and go ahead with the PR. But it would be good to solve this issue for atomic.capture too I believe, if possible
https://github.com/llvm/llvm-project/pull/131603
More information about the llvm-commits
mailing list