87 lines
4.2 KiB
C++
87 lines
4.2 KiB
C++
//===-- Assign.cpp -- generate assignment runtime API calls ---------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "flang/Optimizer/Builder/Runtime/Assign.h"
|
|
#include "flang/Optimizer/Builder/FIRBuilder.h"
|
|
#include "flang/Optimizer/Builder/Runtime/RTBuilder.h"
|
|
#include "flang/Runtime/assign.h"
|
|
|
|
using namespace Fortran::runtime;
|
|
|
|
void fir::runtime::genAssign(fir::FirOpBuilder &builder, mlir::Location loc,
|
|
mlir::Value destBox, mlir::Value sourceBox) {
|
|
auto func = fir::runtime::getRuntimeFunc<mkRTKey(Assign)>(loc, builder);
|
|
auto fTy = func.getFunctionType();
|
|
auto sourceFile = fir::factory::locationToFilename(builder, loc);
|
|
auto sourceLine =
|
|
fir::factory::locationToLineNo(builder, loc, fTy.getInput(3));
|
|
auto args = fir::runtime::createArguments(builder, loc, fTy, destBox,
|
|
sourceBox, sourceFile, sourceLine);
|
|
builder.create<fir::CallOp>(loc, func, args);
|
|
}
|
|
|
|
void fir::runtime::genAssignPolymorphic(fir::FirOpBuilder &builder,
|
|
mlir::Location loc, mlir::Value destBox,
|
|
mlir::Value sourceBox) {
|
|
auto func =
|
|
fir::runtime::getRuntimeFunc<mkRTKey(AssignPolymorphic)>(loc, builder);
|
|
auto fTy = func.getFunctionType();
|
|
auto sourceFile = fir::factory::locationToFilename(builder, loc);
|
|
auto sourceLine =
|
|
fir::factory::locationToLineNo(builder, loc, fTy.getInput(3));
|
|
auto args = fir::runtime::createArguments(builder, loc, fTy, destBox,
|
|
sourceBox, sourceFile, sourceLine);
|
|
builder.create<fir::CallOp>(loc, func, args);
|
|
}
|
|
|
|
void fir::runtime::genAssignExplicitLengthCharacter(fir::FirOpBuilder &builder,
|
|
mlir::Location loc,
|
|
mlir::Value destBox,
|
|
mlir::Value sourceBox) {
|
|
auto func =
|
|
fir::runtime::getRuntimeFunc<mkRTKey(AssignExplicitLengthCharacter)>(
|
|
loc, builder);
|
|
auto fTy = func.getFunctionType();
|
|
auto sourceFile = fir::factory::locationToFilename(builder, loc);
|
|
auto sourceLine =
|
|
fir::factory::locationToLineNo(builder, loc, fTy.getInput(3));
|
|
auto args = fir::runtime::createArguments(builder, loc, fTy, destBox,
|
|
sourceBox, sourceFile, sourceLine);
|
|
builder.create<fir::CallOp>(loc, func, args);
|
|
}
|
|
|
|
void fir::runtime::genAssignTemporary(fir::FirOpBuilder &builder,
|
|
mlir::Location loc, mlir::Value destBox,
|
|
mlir::Value sourceBox) {
|
|
auto func =
|
|
fir::runtime::getRuntimeFunc<mkRTKey(AssignTemporary)>(loc, builder);
|
|
auto fTy = func.getFunctionType();
|
|
auto sourceFile = fir::factory::locationToFilename(builder, loc);
|
|
auto sourceLine =
|
|
fir::factory::locationToLineNo(builder, loc, fTy.getInput(3));
|
|
auto args = fir::runtime::createArguments(builder, loc, fTy, destBox,
|
|
sourceBox, sourceFile, sourceLine);
|
|
builder.create<fir::CallOp>(loc, func, args);
|
|
}
|
|
|
|
void fir::runtime::genCopyOutAssign(fir::FirOpBuilder &builder,
|
|
mlir::Location loc, mlir::Value destBox,
|
|
mlir::Value sourceBox, bool skipToInit) {
|
|
auto func =
|
|
fir::runtime::getRuntimeFunc<mkRTKey(CopyOutAssign)>(loc, builder);
|
|
auto fTy = func.getFunctionType();
|
|
auto sourceFile = fir::factory::locationToFilename(builder, loc);
|
|
auto sourceLine =
|
|
fir::factory::locationToLineNo(builder, loc, fTy.getInput(4));
|
|
auto i1Ty = builder.getIntegerType(1);
|
|
auto skipToInitVal = builder.createIntegerConstant(loc, i1Ty, skipToInit);
|
|
auto args =
|
|
fir::runtime::createArguments(builder, loc, fTy, destBox, sourceBox,
|
|
skipToInitVal, sourceFile, sourceLine);
|
|
builder.create<fir::CallOp>(loc, func, args);
|
|
}
|