Razvan Lupusoru 4c6a38c32c
[acc] Expand OpenACCSupport to provide getRecipeName and emitNYI (#165628)
Extends OpenACCSupport utilities to include recipe name generation and
error reporting for unsupported features, providing foundation for
variable privatization handling.

Changes:
- Add RecipeKind enum (private, firstprivate, reduction) for APIs that
request a specific kind of recipe
- Add getRecipeName() API to OpenACCSupport and OpenACCUtils that
generates recipe names from types (e.g.,
"privatization_memref_5x10xf32_")
- Add emitNYI() API to OpenACCSupport for graceful handling of
not-yet-implemented cases
- Generalize MemRefPointerLikeModel template to support
UnrankedMemRefType
- Add unit tests and integration tests for new APIs
2025-10-29 16:09:33 -07:00

46 lines
1.6 KiB
C++

//===- OpenACCSupport.cpp - OpenACCSupport Implementation -----------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// This file implements the OpenACCSupport analysis interface.
//
//===----------------------------------------------------------------------===//
#include "mlir/Dialect/OpenACC/Analysis/OpenACCSupport.h"
#include "mlir/Dialect/OpenACC/OpenACCUtils.h"
namespace mlir {
namespace acc {
std::string OpenACCSupport::getVariableName(Value v) {
if (impl)
return impl->getVariableName(v);
return acc::getVariableName(v);
}
std::string OpenACCSupport::getRecipeName(RecipeKind kind, Type type,
Value var) {
if (impl)
return impl->getRecipeName(kind, type, var);
// The default implementation assumes that only type matters
// and the actual instance of variable is not relevant.
auto recipeName = acc::getRecipeName(kind, type);
if (recipeName.empty())
emitNYI(var ? var.getLoc() : UnknownLoc::get(type.getContext()),
"variable privatization (incomplete recipe name handling)");
return recipeName;
}
InFlightDiagnostic OpenACCSupport::emitNYI(Location loc, const Twine &message) {
if (impl)
return impl->emitNYI(loc, message);
return mlir::emitError(loc, "not yet implemented: " + message);
}
} // namespace acc
} // namespace mlir