mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-02 08:06:07 +00:00

The semantic checks and runtime have been supported. This supports the lowering of intrinsic ABORT. `gfortran` prints a backtrace before abort, unless `-fno-backtrace` is given. This is good to use. The intrinsic BACKTRACE is not supported yet, so add TODO in the runtime. This extention is needed in SPEC2017 521.wrf_r in https://github.com/llvm/llvm-project/issues/55955. Reviewed By: klausler Differential Revision: https://reviews.llvm.org/D130439
46 lines
2.1 KiB
C++
46 lines
2.1 KiB
C++
//===-- Stop.h - generate stop runtime API calls ----------------*- C++ -*-===//
|
|
//
|
|
// 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/Stop.h"
|
|
#include "flang/Optimizer/Builder/BoxValue.h"
|
|
#include "flang/Optimizer/Builder/FIRBuilder.h"
|
|
#include "flang/Optimizer/Builder/Runtime/RTBuilder.h"
|
|
#include "flang/Runtime/stop.h"
|
|
|
|
using namespace Fortran::runtime;
|
|
|
|
void fir::runtime::genExit(fir::FirOpBuilder &builder, mlir::Location loc,
|
|
mlir::Value status) {
|
|
auto exitFunc = fir::runtime::getRuntimeFunc<mkRTKey(Exit)>(loc, builder);
|
|
llvm::SmallVector<mlir::Value> args = fir::runtime::createArguments(
|
|
builder, loc, exitFunc.getFunctionType(), status);
|
|
builder.create<fir::CallOp>(loc, exitFunc, args);
|
|
}
|
|
|
|
void fir::runtime::genAbort(fir::FirOpBuilder &builder, mlir::Location loc) {
|
|
mlir::func::FuncOp abortFunc =
|
|
fir::runtime::getRuntimeFunc<mkRTKey(Abort)>(loc, builder);
|
|
builder.create<fir::CallOp>(loc, abortFunc, llvm::None);
|
|
}
|
|
|
|
void fir::runtime::genReportFatalUserError(fir::FirOpBuilder &builder,
|
|
mlir::Location loc,
|
|
llvm::StringRef message) {
|
|
mlir::func::FuncOp crashFunc =
|
|
fir::runtime::getRuntimeFunc<mkRTKey(ReportFatalUserError)>(loc, builder);
|
|
mlir::FunctionType funcTy = crashFunc.getFunctionType();
|
|
mlir::Value msgVal = fir::getBase(
|
|
fir::factory::createStringLiteral(builder, loc, message.str() + '\0'));
|
|
mlir::Value sourceLine =
|
|
fir::factory::locationToLineNo(builder, loc, funcTy.getInput(2));
|
|
mlir::Value sourceFile = fir::factory::locationToFilename(builder, loc);
|
|
llvm::SmallVector<mlir::Value> args = fir::runtime::createArguments(
|
|
builder, loc, funcTy, msgVal, sourceFile, sourceLine);
|
|
builder.create<fir::CallOp>(loc, crashFunc, args);
|
|
}
|