[flang][openacc] Propagate correct location information from directive

Location information was not correctly propagated when creating OpenACC
operations. This patch propagate the correct location information from
the parse tree nodes to OpenACC MLIR operations.

Reviewed By: razvanlupusoru

Differential Revision: https://reviews.llvm.org/D131659
This commit is contained in:
Valentin Clement 2022-08-11 20:35:17 +02:00
parent adcd4b1c0b
commit bdbf89b906
No known key found for this signature in database
GPG Key ID: 086D54783C928776
3 changed files with 182 additions and 52 deletions

View File

@ -147,7 +147,7 @@ static void genAsyncClause(Fortran::lower::AbstractConverter &converter,
} }
static void genDeviceTypeClause( static void genDeviceTypeClause(
Fortran::lower::AbstractConverter &converter, Fortran::lower::AbstractConverter &converter, mlir::Location clauseLocation,
const Fortran::parser::AccClause::DeviceType *deviceTypeClause, const Fortran::parser::AccClause::DeviceType *deviceTypeClause,
llvm::SmallVectorImpl<mlir::Value> &operands, llvm::SmallVectorImpl<mlir::Value> &operands,
Fortran::lower::StatementContext &stmtCtx) { Fortran::lower::StatementContext &stmtCtx) {
@ -157,27 +157,28 @@ static void genDeviceTypeClause(
const auto &expr = std::get<std::optional<Fortran::parser::ScalarIntExpr>>( const auto &expr = std::get<std::optional<Fortran::parser::ScalarIntExpr>>(
deviceTypeExpr.t); deviceTypeExpr.t);
if (expr) { if (expr) {
operands.push_back(fir::getBase( operands.push_back(fir::getBase(converter.genExprValue(
converter.genExprValue(*Fortran::semantics::GetExpr(expr), stmtCtx))); *Fortran::semantics::GetExpr(expr), stmtCtx, &clauseLocation)));
} else { } else {
// * was passed as value and will be represented as a special constant. // * was passed as value and will be represented as a special constant.
fir::FirOpBuilder &firOpBuilder = converter.getFirOpBuilder(); fir::FirOpBuilder &firOpBuilder = converter.getFirOpBuilder();
mlir::Value star = firOpBuilder.createIntegerConstant( mlir::Value star = firOpBuilder.createIntegerConstant(
converter.getCurrentLocation(), firOpBuilder.getIndexType(), starCst); clauseLocation, firOpBuilder.getIndexType(), starCst);
operands.push_back(star); operands.push_back(star);
} }
} }
} }
static void genIfClause(Fortran::lower::AbstractConverter &converter, static void genIfClause(Fortran::lower::AbstractConverter &converter,
mlir::Location clauseLocation,
const Fortran::parser::AccClause::If *ifClause, const Fortran::parser::AccClause::If *ifClause,
mlir::Value &ifCond, mlir::Value &ifCond,
Fortran::lower::StatementContext &stmtCtx) { Fortran::lower::StatementContext &stmtCtx) {
fir::FirOpBuilder &firOpBuilder = converter.getFirOpBuilder(); fir::FirOpBuilder &firOpBuilder = converter.getFirOpBuilder();
mlir::Value cond = fir::getBase(converter.genExprValue( mlir::Value cond = fir::getBase(converter.genExprValue(
*Fortran::semantics::GetExpr(ifClause->v), stmtCtx)); *Fortran::semantics::GetExpr(ifClause->v), stmtCtx, &clauseLocation));
ifCond = firOpBuilder.createConvert(converter.getCurrentLocation(), ifCond = firOpBuilder.createConvert(clauseLocation, firOpBuilder.getI1Type(),
firOpBuilder.getI1Type(), cond); cond);
} }
static void genWaitClause(Fortran::lower::AbstractConverter &converter, static void genWaitClause(Fortran::lower::AbstractConverter &converter,
@ -208,9 +209,9 @@ static void genWaitClause(Fortran::lower::AbstractConverter &converter,
static mlir::acc::LoopOp static mlir::acc::LoopOp
createLoopOp(Fortran::lower::AbstractConverter &converter, createLoopOp(Fortran::lower::AbstractConverter &converter,
mlir::Location currentLocation,
const Fortran::parser::AccClauseList &accClauseList) { const Fortran::parser::AccClauseList &accClauseList) {
fir::FirOpBuilder &firOpBuilder = converter.getFirOpBuilder(); fir::FirOpBuilder &firOpBuilder = converter.getFirOpBuilder();
mlir::Location currentLocation = converter.getCurrentLocation();
Fortran::lower::StatementContext stmtCtx; Fortran::lower::StatementContext stmtCtx;
mlir::Value workerNum; mlir::Value workerNum;
@ -222,6 +223,7 @@ createLoopOp(Fortran::lower::AbstractConverter &converter,
std::int64_t executionMapping = mlir::acc::OpenACCExecMapping::NONE; std::int64_t executionMapping = mlir::acc::OpenACCExecMapping::NONE;
for (const Fortran::parser::AccClause &clause : accClauseList.v) { for (const Fortran::parser::AccClause &clause : accClauseList.v) {
mlir::Location clauseLocation = converter.genLocation(clause.source);
if (const auto *gangClause = if (const auto *gangClause =
std::get_if<Fortran::parser::AccClause::Gang>(&clause.u)) { std::get_if<Fortran::parser::AccClause::Gang>(&clause.u)) {
if (gangClause->v) { if (gangClause->v) {
@ -243,7 +245,7 @@ createLoopOp(Fortran::lower::AbstractConverter &converter,
// * was passed as value and will be represented as a special // * was passed as value and will be represented as a special
// constant. // constant.
gangStatic = firOpBuilder.createIntegerConstant( gangStatic = firOpBuilder.createIntegerConstant(
currentLocation, firOpBuilder.getIndexType(), starCst); clauseLocation, firOpBuilder.getIndexType(), starCst);
} }
} }
} }
@ -276,7 +278,7 @@ createLoopOp(Fortran::lower::AbstractConverter &converter,
// * was passed as value and will be represented as a -1 constant // * was passed as value and will be represented as a -1 constant
// integer. // integer.
mlir::Value tileStar = firOpBuilder.createIntegerConstant( mlir::Value tileStar = firOpBuilder.createIntegerConstant(
currentLocation, firOpBuilder.getIntegerType(32), clauseLocation, firOpBuilder.getIntegerType(32),
/* STAR */ -1); /* STAR */ -1);
tileOperands.push_back(tileStar); tileOperands.push_back(tileStar);
} }
@ -342,15 +344,19 @@ static void genACC(Fortran::lower::AbstractConverter &converter,
const auto &loopDirective = const auto &loopDirective =
std::get<Fortran::parser::AccLoopDirective>(beginLoopDirective.t); std::get<Fortran::parser::AccLoopDirective>(beginLoopDirective.t);
mlir::Location currentLocation =
converter.genLocation(beginLoopDirective.source);
if (loopDirective.v == llvm::acc::ACCD_loop) { if (loopDirective.v == llvm::acc::ACCD_loop) {
const auto &accClauseList = const auto &accClauseList =
std::get<Fortran::parser::AccClauseList>(beginLoopDirective.t); std::get<Fortran::parser::AccClauseList>(beginLoopDirective.t);
createLoopOp(converter, accClauseList); createLoopOp(converter, currentLocation, accClauseList);
} }
} }
static mlir::acc::ParallelOp static mlir::acc::ParallelOp
createParallelOp(Fortran::lower::AbstractConverter &converter, createParallelOp(Fortran::lower::AbstractConverter &converter,
mlir::Location currentLocation,
const Fortran::parser::AccClauseList &accClauseList) { const Fortran::parser::AccClauseList &accClauseList) {
// Parallel operation operands // Parallel operation operands
@ -375,13 +381,13 @@ createParallelOp(Fortran::lower::AbstractConverter &converter,
bool addSelfAttr = false; bool addSelfAttr = false;
fir::FirOpBuilder &firOpBuilder = converter.getFirOpBuilder(); fir::FirOpBuilder &firOpBuilder = converter.getFirOpBuilder();
mlir::Location currentLocation = converter.getCurrentLocation();
Fortran::lower::StatementContext stmtCtx; Fortran::lower::StatementContext stmtCtx;
// Lower clauses values mapped to operands. // Lower clauses values mapped to operands.
// Keep track of each group of operands separatly as clauses can appear // Keep track of each group of operands separatly as clauses can appear
// more than once. // more than once.
for (const Fortran::parser::AccClause &clause : accClauseList.v) { for (const Fortran::parser::AccClause &clause : accClauseList.v) {
mlir::Location clauseLocation = converter.genLocation(clause.source);
if (const auto *asyncClause = if (const auto *asyncClause =
std::get_if<Fortran::parser::AccClause::Async>(&clause.u)) { std::get_if<Fortran::parser::AccClause::Async>(&clause.u)) {
genAsyncClause(converter, asyncClause, async, addAsyncAttr, stmtCtx); genAsyncClause(converter, asyncClause, async, addAsyncAttr, stmtCtx);
@ -406,7 +412,7 @@ createParallelOp(Fortran::lower::AbstractConverter &converter,
*Fortran::semantics::GetExpr(vectorLengthClause->v), stmtCtx)); *Fortran::semantics::GetExpr(vectorLengthClause->v), stmtCtx));
} else if (const auto *ifClause = } else if (const auto *ifClause =
std::get_if<Fortran::parser::AccClause::If>(&clause.u)) { std::get_if<Fortran::parser::AccClause::If>(&clause.u)) {
genIfClause(converter, ifClause, ifCond, stmtCtx); genIfClause(converter, clauseLocation, ifClause, ifCond, stmtCtx);
} else if (const auto *selfClause = } else if (const auto *selfClause =
std::get_if<Fortran::parser::AccClause::Self>(&clause.u)) { std::get_if<Fortran::parser::AccClause::Self>(&clause.u)) {
const std::optional<Fortran::parser::AccSelfClause> &accSelfClause = const std::optional<Fortran::parser::AccSelfClause> &accSelfClause =
@ -419,7 +425,7 @@ createParallelOp(Fortran::lower::AbstractConverter &converter,
mlir::Value cond = fir::getBase(converter.genExprValue( mlir::Value cond = fir::getBase(converter.genExprValue(
*Fortran::semantics::GetExpr(*optCondition), stmtCtx)); *Fortran::semantics::GetExpr(*optCondition), stmtCtx));
selfCond = firOpBuilder.createConvert( selfCond = firOpBuilder.createConvert(
currentLocation, firOpBuilder.getI1Type(), cond); clauseLocation, firOpBuilder.getI1Type(), cond);
} }
} else if (const auto *accClauseList = } else if (const auto *accClauseList =
std::get_if<Fortran::parser::AccObjectList>( std::get_if<Fortran::parser::AccObjectList>(
@ -432,7 +438,7 @@ createParallelOp(Fortran::lower::AbstractConverter &converter,
if (const auto *name = getDesignatorNameIfDataRef(*designator)) { if (const auto *name = getDesignatorNameIfDataRef(*designator)) {
auto cond = converter.getSymbolAddress(*name->symbol); auto cond = converter.getSymbolAddress(*name->symbol);
selfCond = firOpBuilder.createConvert( selfCond = firOpBuilder.createConvert(
currentLocation, firOpBuilder.getI1Type(), cond); clauseLocation, firOpBuilder.getI1Type(), cond);
} }
} }
} }
@ -532,11 +538,13 @@ createParallelOp(Fortran::lower::AbstractConverter &converter,
static void static void
genACCParallelOp(Fortran::lower::AbstractConverter &converter, genACCParallelOp(Fortran::lower::AbstractConverter &converter,
mlir::Location currentLocation,
const Fortran::parser::AccClauseList &accClauseList) { const Fortran::parser::AccClauseList &accClauseList) {
createParallelOp(converter, accClauseList); createParallelOp(converter, currentLocation, accClauseList);
} }
static void genACCDataOp(Fortran::lower::AbstractConverter &converter, static void genACCDataOp(Fortran::lower::AbstractConverter &converter,
mlir::Location currentLocation,
const Fortran::parser::AccClauseList &accClauseList) { const Fortran::parser::AccClauseList &accClauseList) {
mlir::Value ifCond; mlir::Value ifCond;
llvm::SmallVector<mlir::Value> copyOperands, copyinOperands, llvm::SmallVector<mlir::Value> copyOperands, copyinOperands,
@ -545,16 +553,16 @@ static void genACCDataOp(Fortran::lower::AbstractConverter &converter,
deviceptrOperands, attachOperands; deviceptrOperands, attachOperands;
fir::FirOpBuilder &firOpBuilder = converter.getFirOpBuilder(); fir::FirOpBuilder &firOpBuilder = converter.getFirOpBuilder();
mlir::Location currentLocation = converter.getCurrentLocation();
Fortran::lower::StatementContext stmtCtx; Fortran::lower::StatementContext stmtCtx;
// Lower clauses values mapped to operands. // Lower clauses values mapped to operands.
// Keep track of each group of operands separatly as clauses can appear // Keep track of each group of operands separatly as clauses can appear
// more than once. // more than once.
for (const Fortran::parser::AccClause &clause : accClauseList.v) { for (const Fortran::parser::AccClause &clause : accClauseList.v) {
mlir::Location clauseLocation = converter.genLocation(clause.source);
if (const auto *ifClause = if (const auto *ifClause =
std::get_if<Fortran::parser::AccClause::If>(&clause.u)) { std::get_if<Fortran::parser::AccClause::If>(&clause.u)) {
genIfClause(converter, ifClause, ifCond, stmtCtx); genIfClause(converter, clauseLocation, ifClause, ifCond, stmtCtx);
} else if (const auto *copyClause = } else if (const auto *copyClause =
std::get_if<Fortran::parser::AccClause::Copy>(&clause.u)) { std::get_if<Fortran::parser::AccClause::Copy>(&clause.u)) {
genObjectList(copyClause->v, converter, copyOperands); genObjectList(copyClause->v, converter, copyOperands);
@ -626,18 +634,21 @@ genACC(Fortran::lower::AbstractConverter &converter,
const auto &accClauseList = const auto &accClauseList =
std::get<Fortran::parser::AccClauseList>(beginBlockDirective.t); std::get<Fortran::parser::AccClauseList>(beginBlockDirective.t);
mlir::Location currentLocation = converter.genLocation(blockDirective.source);
if (blockDirective.v == llvm::acc::ACCD_parallel) { if (blockDirective.v == llvm::acc::ACCD_parallel) {
genACCParallelOp(converter, accClauseList); genACCParallelOp(converter, currentLocation, accClauseList);
} else if (blockDirective.v == llvm::acc::ACCD_data) { } else if (blockDirective.v == llvm::acc::ACCD_data) {
genACCDataOp(converter, accClauseList); genACCDataOp(converter, currentLocation, accClauseList);
} }
} }
static void static void
genACCParallelLoopOps(Fortran::lower::AbstractConverter &converter, genACCParallelLoopOps(Fortran::lower::AbstractConverter &converter,
mlir::Location currentLocation,
const Fortran::parser::AccClauseList &accClauseList) { const Fortran::parser::AccClauseList &accClauseList) {
createParallelOp(converter, accClauseList); createParallelOp(converter, currentLocation, accClauseList);
createLoopOp(converter, accClauseList); createLoopOp(converter, currentLocation, accClauseList);
} }
static void static void
@ -651,14 +662,15 @@ genACC(Fortran::lower::AbstractConverter &converter,
const auto &accClauseList = const auto &accClauseList =
std::get<Fortran::parser::AccClauseList>(beginCombinedDirective.t); std::get<Fortran::parser::AccClauseList>(beginCombinedDirective.t);
mlir::Location currentLocation =
converter.genLocation(beginCombinedDirective.source);
if (combinedDirective.v == llvm::acc::ACCD_kernels_loop) { if (combinedDirective.v == llvm::acc::ACCD_kernels_loop) {
TODO(converter.getCurrentLocation(), TODO(currentLocation, "OpenACC Kernels Loop construct not lowered yet!");
"OpenACC Kernels Loop construct not lowered yet!");
} else if (combinedDirective.v == llvm::acc::ACCD_parallel_loop) { } else if (combinedDirective.v == llvm::acc::ACCD_parallel_loop) {
genACCParallelLoopOps(converter, accClauseList); genACCParallelLoopOps(converter, currentLocation, accClauseList);
} else if (combinedDirective.v == llvm::acc::ACCD_serial_loop) { } else if (combinedDirective.v == llvm::acc::ACCD_serial_loop) {
TODO(converter.getCurrentLocation(), TODO(currentLocation, "OpenACC Serial Loop construct not lowered yet!");
"OpenACC Serial Loop construct not lowered yet!");
} else { } else {
llvm::report_fatal_error("Unknown combined construct encountered"); llvm::report_fatal_error("Unknown combined construct encountered");
} }
@ -666,6 +678,7 @@ genACC(Fortran::lower::AbstractConverter &converter,
static void static void
genACCEnterDataOp(Fortran::lower::AbstractConverter &converter, genACCEnterDataOp(Fortran::lower::AbstractConverter &converter,
mlir::Location currentLocation,
const Fortran::parser::AccClauseList &accClauseList) { const Fortran::parser::AccClauseList &accClauseList) {
mlir::Value ifCond, async, waitDevnum; mlir::Value ifCond, async, waitDevnum;
llvm::SmallVector<mlir::Value> copyinOperands, createOperands, llvm::SmallVector<mlir::Value> copyinOperands, createOperands,
@ -678,16 +691,16 @@ genACCEnterDataOp(Fortran::lower::AbstractConverter &converter,
bool addWaitAttr = false; bool addWaitAttr = false;
fir::FirOpBuilder &firOpBuilder = converter.getFirOpBuilder(); fir::FirOpBuilder &firOpBuilder = converter.getFirOpBuilder();
mlir::Location currentLocation = converter.getCurrentLocation();
Fortran::lower::StatementContext stmtCtx; Fortran::lower::StatementContext stmtCtx;
// Lower clauses values mapped to operands. // Lower clauses values mapped to operands.
// Keep track of each group of operands separatly as clauses can appear // Keep track of each group of operands separatly as clauses can appear
// more than once. // more than once.
for (const Fortran::parser::AccClause &clause : accClauseList.v) { for (const Fortran::parser::AccClause &clause : accClauseList.v) {
mlir::Location clauseLocation = converter.genLocation(clause.source);
if (const auto *ifClause = if (const auto *ifClause =
std::get_if<Fortran::parser::AccClause::If>(&clause.u)) { std::get_if<Fortran::parser::AccClause::If>(&clause.u)) {
genIfClause(converter, ifClause, ifCond, stmtCtx); genIfClause(converter, clauseLocation, ifClause, ifCond, stmtCtx);
} else if (const auto *asyncClause = } else if (const auto *asyncClause =
std::get_if<Fortran::parser::AccClause::Async>(&clause.u)) { std::get_if<Fortran::parser::AccClause::Async>(&clause.u)) {
genAsyncClause(converter, asyncClause, async, addAsyncAttr, stmtCtx); genAsyncClause(converter, asyncClause, async, addAsyncAttr, stmtCtx);
@ -740,6 +753,7 @@ genACCEnterDataOp(Fortran::lower::AbstractConverter &converter,
static void static void
genACCExitDataOp(Fortran::lower::AbstractConverter &converter, genACCExitDataOp(Fortran::lower::AbstractConverter &converter,
mlir::Location currentLocation,
const Fortran::parser::AccClauseList &accClauseList) { const Fortran::parser::AccClauseList &accClauseList) {
mlir::Value ifCond, async, waitDevnum; mlir::Value ifCond, async, waitDevnum;
llvm::SmallVector<mlir::Value> copyoutOperands, deleteOperands, llvm::SmallVector<mlir::Value> copyoutOperands, deleteOperands,
@ -753,16 +767,16 @@ genACCExitDataOp(Fortran::lower::AbstractConverter &converter,
bool addFinalizeAttr = false; bool addFinalizeAttr = false;
fir::FirOpBuilder &firOpBuilder = converter.getFirOpBuilder(); fir::FirOpBuilder &firOpBuilder = converter.getFirOpBuilder();
mlir::Location currentLocation = converter.getCurrentLocation();
Fortran::lower::StatementContext stmtCtx; Fortran::lower::StatementContext stmtCtx;
// Lower clauses values mapped to operands. // Lower clauses values mapped to operands.
// Keep track of each group of operands separatly as clauses can appear // Keep track of each group of operands separatly as clauses can appear
// more than once. // more than once.
for (const Fortran::parser::AccClause &clause : accClauseList.v) { for (const Fortran::parser::AccClause &clause : accClauseList.v) {
mlir::Location clauseLocation = converter.genLocation(clause.source);
if (const auto *ifClause = if (const auto *ifClause =
std::get_if<Fortran::parser::AccClause::If>(&clause.u)) { std::get_if<Fortran::parser::AccClause::If>(&clause.u)) {
genIfClause(converter, ifClause, ifCond, stmtCtx); genIfClause(converter, clauseLocation, ifClause, ifCond, stmtCtx);
} else if (const auto *asyncClause = } else if (const auto *asyncClause =
std::get_if<Fortran::parser::AccClause::Async>(&clause.u)) { std::get_if<Fortran::parser::AccClause::Async>(&clause.u)) {
genAsyncClause(converter, asyncClause, async, addAsyncAttr, stmtCtx); genAsyncClause(converter, asyncClause, async, addAsyncAttr, stmtCtx);
@ -814,21 +828,22 @@ genACCExitDataOp(Fortran::lower::AbstractConverter &converter,
template <typename Op> template <typename Op>
static void static void
genACCInitShutdownOp(Fortran::lower::AbstractConverter &converter, genACCInitShutdownOp(Fortran::lower::AbstractConverter &converter,
mlir::Location currentLocation,
const Fortran::parser::AccClauseList &accClauseList) { const Fortran::parser::AccClauseList &accClauseList) {
mlir::Value ifCond, deviceNum; mlir::Value ifCond, deviceNum;
llvm::SmallVector<mlir::Value> deviceTypeOperands; llvm::SmallVector<mlir::Value> deviceTypeOperands;
fir::FirOpBuilder &firOpBuilder = converter.getFirOpBuilder(); fir::FirOpBuilder &firOpBuilder = converter.getFirOpBuilder();
mlir::Location currentLocation = converter.getCurrentLocation();
Fortran::lower::StatementContext stmtCtx; Fortran::lower::StatementContext stmtCtx;
// Lower clauses values mapped to operands. // Lower clauses values mapped to operands.
// Keep track of each group of operands separatly as clauses can appear // Keep track of each group of operands separatly as clauses can appear
// more than once. // more than once.
for (const Fortran::parser::AccClause &clause : accClauseList.v) { for (const Fortran::parser::AccClause &clause : accClauseList.v) {
mlir::Location clauseLocation = converter.genLocation(clause.source);
if (const auto *ifClause = if (const auto *ifClause =
std::get_if<Fortran::parser::AccClause::If>(&clause.u)) { std::get_if<Fortran::parser::AccClause::If>(&clause.u)) {
genIfClause(converter, ifClause, ifCond, stmtCtx); genIfClause(converter, clauseLocation, ifClause, ifCond, stmtCtx);
} else if (const auto *deviceNumClause = } else if (const auto *deviceNumClause =
std::get_if<Fortran::parser::AccClause::DeviceNum>( std::get_if<Fortran::parser::AccClause::DeviceNum>(
&clause.u)) { &clause.u)) {
@ -837,8 +852,8 @@ genACCInitShutdownOp(Fortran::lower::AbstractConverter &converter,
} else if (const auto *deviceTypeClause = } else if (const auto *deviceTypeClause =
std::get_if<Fortran::parser::AccClause::DeviceType>( std::get_if<Fortran::parser::AccClause::DeviceType>(
&clause.u)) { &clause.u)) {
genDeviceTypeClause(converter, deviceTypeClause, deviceTypeOperands, genDeviceTypeClause(converter, clauseLocation, deviceTypeClause,
stmtCtx); deviceTypeOperands, stmtCtx);
} }
} }
@ -854,6 +869,7 @@ genACCInitShutdownOp(Fortran::lower::AbstractConverter &converter,
static void static void
genACCUpdateOp(Fortran::lower::AbstractConverter &converter, genACCUpdateOp(Fortran::lower::AbstractConverter &converter,
mlir::Location currentLocation,
const Fortran::parser::AccClauseList &accClauseList) { const Fortran::parser::AccClauseList &accClauseList) {
mlir::Value ifCond, async, waitDevnum; mlir::Value ifCond, async, waitDevnum;
llvm::SmallVector<mlir::Value> hostOperands, deviceOperands, waitOperands, llvm::SmallVector<mlir::Value> hostOperands, deviceOperands, waitOperands,
@ -867,16 +883,16 @@ genACCUpdateOp(Fortran::lower::AbstractConverter &converter,
bool addIfPresentAttr = false; bool addIfPresentAttr = false;
fir::FirOpBuilder &firOpBuilder = converter.getFirOpBuilder(); fir::FirOpBuilder &firOpBuilder = converter.getFirOpBuilder();
mlir::Location currentLocation = converter.getCurrentLocation();
Fortran::lower::StatementContext stmtCtx; Fortran::lower::StatementContext stmtCtx;
// Lower clauses values mapped to operands. // Lower clauses values mapped to operands.
// Keep track of each group of operands separatly as clauses can appear // Keep track of each group of operands separatly as clauses can appear
// more than once. // more than once.
for (const Fortran::parser::AccClause &clause : accClauseList.v) { for (const Fortran::parser::AccClause &clause : accClauseList.v) {
mlir::Location clauseLocation = converter.genLocation(clause.source);
if (const auto *ifClause = if (const auto *ifClause =
std::get_if<Fortran::parser::AccClause::If>(&clause.u)) { std::get_if<Fortran::parser::AccClause::If>(&clause.u)) {
genIfClause(converter, ifClause, ifCond, stmtCtx); genIfClause(converter, clauseLocation, ifClause, ifCond, stmtCtx);
} else if (const auto *asyncClause = } else if (const auto *asyncClause =
std::get_if<Fortran::parser::AccClause::Async>(&clause.u)) { std::get_if<Fortran::parser::AccClause::Async>(&clause.u)) {
genAsyncClause(converter, asyncClause, async, addAsyncAttr, stmtCtx); genAsyncClause(converter, asyncClause, async, addAsyncAttr, stmtCtx);
@ -887,8 +903,8 @@ genACCUpdateOp(Fortran::lower::AbstractConverter &converter,
} else if (const auto *deviceTypeClause = } else if (const auto *deviceTypeClause =
std::get_if<Fortran::parser::AccClause::DeviceType>( std::get_if<Fortran::parser::AccClause::DeviceType>(
&clause.u)) { &clause.u)) {
genDeviceTypeClause(converter, deviceTypeClause, deviceTypeOperands, genDeviceTypeClause(converter, clauseLocation, deviceTypeClause,
stmtCtx); deviceTypeOperands, stmtCtx);
} else if (const auto *hostClause = } else if (const auto *hostClause =
std::get_if<Fortran::parser::AccClause::Host>(&clause.u)) { std::get_if<Fortran::parser::AccClause::Host>(&clause.u)) {
genObjectList(hostClause->v, converter, hostOperands); genObjectList(hostClause->v, converter, hostOperands);
@ -929,19 +945,23 @@ genACC(Fortran::lower::AbstractConverter &converter,
const auto &accClauseList = const auto &accClauseList =
std::get<Fortran::parser::AccClauseList>(standaloneConstruct.t); std::get<Fortran::parser::AccClauseList>(standaloneConstruct.t);
mlir::Location currentLocation =
converter.genLocation(standaloneDirective.source);
if (standaloneDirective.v == llvm::acc::Directive::ACCD_enter_data) { if (standaloneDirective.v == llvm::acc::Directive::ACCD_enter_data) {
genACCEnterDataOp(converter, accClauseList); genACCEnterDataOp(converter, currentLocation, accClauseList);
} else if (standaloneDirective.v == llvm::acc::Directive::ACCD_exit_data) { } else if (standaloneDirective.v == llvm::acc::Directive::ACCD_exit_data) {
genACCExitDataOp(converter, accClauseList); genACCExitDataOp(converter, currentLocation, accClauseList);
} else if (standaloneDirective.v == llvm::acc::Directive::ACCD_init) { } else if (standaloneDirective.v == llvm::acc::Directive::ACCD_init) {
genACCInitShutdownOp<mlir::acc::InitOp>(converter, accClauseList); genACCInitShutdownOp<mlir::acc::InitOp>(converter, currentLocation,
accClauseList);
} else if (standaloneDirective.v == llvm::acc::Directive::ACCD_shutdown) { } else if (standaloneDirective.v == llvm::acc::Directive::ACCD_shutdown) {
genACCInitShutdownOp<mlir::acc::ShutdownOp>(converter, accClauseList); genACCInitShutdownOp<mlir::acc::ShutdownOp>(converter, currentLocation,
accClauseList);
} else if (standaloneDirective.v == llvm::acc::Directive::ACCD_set) { } else if (standaloneDirective.v == llvm::acc::Directive::ACCD_set) {
TODO(converter.getCurrentLocation(), TODO(currentLocation, "OpenACC set directive not lowered yet!");
"OpenACC set directive not lowered yet!");
} else if (standaloneDirective.v == llvm::acc::Directive::ACCD_update) { } else if (standaloneDirective.v == llvm::acc::Directive::ACCD_update) {
genACCUpdateOp(converter, accClauseList); genACCUpdateOp(converter, currentLocation, accClauseList);
} }
} }
@ -964,7 +984,7 @@ static void genACC(Fortran::lower::AbstractConverter &converter,
bool addAsyncAttr = false; bool addAsyncAttr = false;
fir::FirOpBuilder &firOpBuilder = converter.getFirOpBuilder(); fir::FirOpBuilder &firOpBuilder = converter.getFirOpBuilder();
mlir::Location currentLocation = converter.getCurrentLocation(); mlir::Location currentLocation = converter.genLocation(waitConstruct.source);
Fortran::lower::StatementContext stmtCtx; Fortran::lower::StatementContext stmtCtx;
if (waitArgument) { // wait has a value. if (waitArgument) { // wait has a value.
@ -988,9 +1008,10 @@ static void genACC(Fortran::lower::AbstractConverter &converter,
// Keep track of each group of operands separatly as clauses can appear // Keep track of each group of operands separatly as clauses can appear
// more than once. // more than once.
for (const Fortran::parser::AccClause &clause : accClauseList.v) { for (const Fortran::parser::AccClause &clause : accClauseList.v) {
mlir::Location clauseLocation = converter.genLocation(clause.source);
if (const auto *ifClause = if (const auto *ifClause =
std::get_if<Fortran::parser::AccClause::If>(&clause.u)) { std::get_if<Fortran::parser::AccClause::If>(&clause.u)) {
genIfClause(converter, ifClause, ifCond, stmtCtx); genIfClause(converter, clauseLocation, ifClause, ifCond, stmtCtx);
} else if (const auto *asyncClause = } else if (const auto *asyncClause =
std::get_if<Fortran::parser::AccClause::Async>(&clause.u)) { std::get_if<Fortran::parser::AccClause::Async>(&clause.u)) {
genAsyncClause(converter, asyncClause, async, addAsyncAttr, stmtCtx); genAsyncClause(converter, asyncClause, async, addAsyncAttr, stmtCtx);
@ -1034,14 +1055,14 @@ void Fortran::lower::genOpenACCConstruct(
genACC(converter, eval, standaloneConstruct); genACC(converter, eval, standaloneConstruct);
}, },
[&](const Fortran::parser::OpenACCCacheConstruct &cacheConstruct) { [&](const Fortran::parser::OpenACCCacheConstruct &cacheConstruct) {
TODO(converter.getCurrentLocation(), TODO(converter.genLocation(cacheConstruct.source),
"OpenACC Cache construct not lowered yet!"); "OpenACC Cache construct not lowered yet!");
}, },
[&](const Fortran::parser::OpenACCWaitConstruct &waitConstruct) { [&](const Fortran::parser::OpenACCWaitConstruct &waitConstruct) {
genACC(converter, eval, waitConstruct); genACC(converter, eval, waitConstruct);
}, },
[&](const Fortran::parser::OpenACCAtomicConstruct &atomicConstruct) { [&](const Fortran::parser::OpenACCAtomicConstruct &atomicConstruct) {
TODO(converter.getCurrentLocation(), TODO(converter.genLocation(atomicConstruct.source),
"OpenACC Atomic construct not lowered yet!"); "OpenACC Atomic construct not lowered yet!");
}, },
}, },
@ -1057,12 +1078,12 @@ void Fortran::lower::genOpenACCDeclarativeConstruct(
common::visitors{ common::visitors{
[&](const Fortran::parser::OpenACCStandaloneDeclarativeConstruct [&](const Fortran::parser::OpenACCStandaloneDeclarativeConstruct
&standaloneDeclarativeConstruct) { &standaloneDeclarativeConstruct) {
TODO(converter.getCurrentLocation(), TODO(converter.genLocation(standaloneDeclarativeConstruct.source),
"OpenACC Standalone Declarative construct not lowered yet!"); "OpenACC Standalone Declarative construct not lowered yet!");
}, },
[&](const Fortran::parser::OpenACCRoutineConstruct [&](const Fortran::parser::OpenACCRoutineConstruct
&routineConstruct) { &routineConstruct) {
TODO(converter.getCurrentLocation(), TODO(converter.genLocation(routineConstruct.source),
"OpenACC Routine construct not lowered yet!"); "OpenACC Routine construct not lowered yet!");
}, },
}, },

View File

@ -0,0 +1,108 @@
! This test checks correct propagation of location information in OpenACC
! operations.
! RUN: bbc -fopenacc -emit-fir --mlir-print-debuginfo --mlir-print-local-scope %s -o - | FileCheck %s
module acc_locations
implicit none
contains
subroutine standalone_data_directive_locations(arr)
real, dimension(10) :: arr
!$acc enter data create(arr)
!CHECK-LABEL: acc.enter_data
!CHECK-SAME: loc("{{.*}}locations.f90":14:11)
!$acc update device(arr)
!CHECK-LABEL: acc.update device
!CHECK-SAME: loc("{{.*}}locations.f90":18:11)
!$acc update host(arr)
!CHECK-LABEL: acc.update host
!CHECK-SAME: loc("{{.*}}locations.f90":22:11)
!$acc exit data delete(arr)
!CHECK-LABEL: acc.exit_data
!CHECK-SAME: loc("{{.*}}locations.f90":26:11)
end subroutine
subroutine nested_acc_locations(arr1d)
real, dimension(10) :: arr1d
integer :: i
!$acc data copy(arr1d)
!$acc parallel
!$acc loop
do i = 1, 10
arr1d(i) = arr1d(i) * 2
end do
!$acc end parallel
!$acc end data
!CHECK: acc.data
!CHECK: acc.parallel
!CHECK: acc.loop
!CHECK: acc.yield loc("{{.*}}locations.f90":38:11)
!CHECK-NEXT: } loc("{{.*}}locations.f90":38:11)
!CHECK: acc.yield loc("{{.*}}locations.f90":37:11)
!CHECK-NEXT: } loc("{{.*}}locations.f90":37:11)
!CHECK-NEXT: acc.terminator loc("{{.*}}locations.f90":36:11)
!CHECK-NEXT: } loc("{{.*}}locations.f90":36:11)
end subroutine
subroutine runtime_directive()
!$acc init
!CHECK-LABEL: acc.init
!CHECK-SAME: loc("{{.*}}locations.f90":62:11)
!$acc shutdown
!CHECK-LABEL: acc.shutdown
!CHECK-SAME: loc("{{.*}}locations.f90":66:11)
end subroutine
subroutine combined_directive_locations(arr)
real :: arr(:)
integer :: i
!$acc parallel loop
do i = 1, size(arr)
arr(i) = arr(i) * arr(i)
end do
!CHECK: acc.parallel
!CHECK: acc.loop
!CHECK: acc.yield loc("{{.*}}locations.f90":76:11)
!CHECK-NEXT: } loc("{{.*}}locations.f90":76:11)
!CHECK: acc.yield loc("{{.*}}locations.f90":76:11)
!CHECK-NEXT: } loc("{{.*}}locations.f90":76:11)
end subroutine
subroutine if_clause_expr_location(arr)
real :: arr(:)
integer :: i
!$acc parallel loop if(.true.)
do i = 1, size(arr)
arr(i) = arr(i) * arr(i)
end do
!CHECK: %{{.*}} = arith.constant true loc("{{.*}}locations.f90":93:25)
!CHECK: acc.parallel
!CHECK: acc.loop
!CHECK: acc.yield loc("{{.*}}locations.f90":93:11)
!CHECK-NEXT: } loc("{{.*}}locations.f90":93:11)
!CHECK: acc.yield loc("{{.*}}locations.f90":93:11)
!CHECK-NEXT: } loc("{{.*}}locations.f90":93:11)
end subroutine
end module

View File

@ -278,6 +278,7 @@ int main(int argc, char **argv) {
registerAllPasses(); registerAllPasses();
mlir::registerMLIRContextCLOptions(); mlir::registerMLIRContextCLOptions();
mlir::registerAsmPrinterCLOptions();
mlir::registerPassManagerCLOptions(); mlir::registerPassManagerCLOptions();
mlir::PassPipelineCLParser passPipe("", "Compiler passes to run"); mlir::PassPipelineCLParser passPipe("", "Compiler passes to run");
llvm::cl::ParseCommandLineOptions(argc, argv, "Burnside Bridge Compiler\n"); llvm::cl::ParseCommandLineOptions(argc, argv, "Burnside Bridge Compiler\n");