2020-01-28 10:18:45 +08:00
|
|
|
//===-- runtime/stop.cpp ----------------------------------------*- C++ -*-===//
|
2020-01-09 05:27:32 +08:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
//
|
2020-01-11 04:12:03 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2020-01-09 05:27:32 +08:00
|
|
|
|
|
|
|
#include "stop.h"
|
2020-01-24 08:59:27 +08:00
|
|
|
#include "io-error.h"
|
2020-01-09 05:27:32 +08:00
|
|
|
#include "terminator.h"
|
2020-01-24 08:59:27 +08:00
|
|
|
#include "unit.h"
|
2020-01-09 05:27:32 +08:00
|
|
|
#include <cfenv>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cstdlib>
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
static void DescribeIEEESignaledExceptions() {
|
2020-03-29 12:00:16 +08:00
|
|
|
#ifdef fetestexcept // a macro in some environments; omit std::
|
2020-01-10 06:01:40 +08:00
|
|
|
auto excepts{fetestexcept(FE_ALL_EXCEPT)};
|
|
|
|
#else
|
|
|
|
auto excepts{std::fetestexcept(FE_ALL_EXCEPT)};
|
|
|
|
#endif
|
|
|
|
if (excepts) {
|
2020-01-09 05:27:32 +08:00
|
|
|
std::fputs("IEEE arithmetic exceptions signaled:", stderr);
|
|
|
|
if (excepts & FE_DIVBYZERO) {
|
|
|
|
std::fputs(" DIVBYZERO", stderr);
|
|
|
|
}
|
|
|
|
if (excepts & FE_INEXACT) {
|
|
|
|
std::fputs(" INEXACT", stderr);
|
|
|
|
}
|
|
|
|
if (excepts & FE_INVALID) {
|
|
|
|
std::fputs(" INVALID", stderr);
|
|
|
|
}
|
|
|
|
if (excepts & FE_OVERFLOW) {
|
|
|
|
std::fputs(" OVERFLOW", stderr);
|
|
|
|
}
|
|
|
|
if (excepts & FE_UNDERFLOW) {
|
|
|
|
std::fputs(" UNDERFLOW", stderr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
[[noreturn]] void RTNAME(StopStatement)(
|
|
|
|
int code, bool isErrorStop, bool quiet) {
|
|
|
|
if (!quiet) {
|
|
|
|
if (code != EXIT_SUCCESS) {
|
|
|
|
std::fprintf(stderr, "Fortran %s: code %d\n",
|
|
|
|
isErrorStop ? "ERROR STOP" : "STOP", code);
|
|
|
|
}
|
|
|
|
DescribeIEEESignaledExceptions();
|
|
|
|
}
|
|
|
|
std::exit(code);
|
|
|
|
}
|
|
|
|
|
|
|
|
[[noreturn]] void RTNAME(StopStatementText)(
|
|
|
|
const char *code, bool isErrorStop, bool quiet) {
|
|
|
|
if (!quiet) {
|
2020-01-10 00:10:57 +08:00
|
|
|
std::fprintf(
|
|
|
|
stderr, "Fortran %s: %s\n", isErrorStop ? "ERROR STOP" : "STOP", code);
|
2020-01-09 05:27:32 +08:00
|
|
|
DescribeIEEESignaledExceptions();
|
|
|
|
}
|
|
|
|
std::exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
[[noreturn]] void RTNAME(FailImageStatement)() {
|
|
|
|
Fortran::runtime::NotifyOtherImagesOfFailImageStatement();
|
|
|
|
std::exit(EXIT_FAILURE);
|
|
|
|
}
|
2020-01-24 08:59:27 +08:00
|
|
|
|
|
|
|
[[noreturn]] void RTNAME(ProgramEndStatement)() {
|
|
|
|
Fortran::runtime::io::IoErrorHandler handler{"END statement"};
|
2020-02-05 08:55:45 +08:00
|
|
|
Fortran::runtime::io::ExternalFileUnit::CloseAll(handler);
|
2020-01-24 08:59:27 +08:00
|
|
|
std::exit(EXIT_SUCCESS);
|
|
|
|
}
|
2020-01-09 05:27:32 +08:00
|
|
|
}
|