Summary: Expands on the previous support to enable formatted output, characters, and checking basic iostat. We intentionally do not handle cases where the descriptor is non-null as this is a non-trivial class that cannot easily be shepherded across the wire.
120 lines
4.2 KiB
C++
120 lines
4.2 KiB
C++
//===-- lib/runtime/io-api-gpu.cpp ------------------------------*- 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Implements the subset of the I/O statement API needed for basic list-directed
|
|
// output (PRINT *) of intrinsic types for the GPU.
|
|
//
|
|
// The RPC interface forwards each runtime call from the client to the server
|
|
// using a shared buffer. These calls are buffered on the server, so only the
|
|
// return values from 'Begin' and 'EndIoStatement' are meaningful.
|
|
|
|
#include "io-api-gpu.h"
|
|
#include "flang/Runtime/io-api.h"
|
|
|
|
#include <shared/rpc.h>
|
|
#include <shared/rpc_dispatch.h>
|
|
|
|
namespace Fortran::runtime::io {
|
|
// A weak reference to the RPC client used to submit calls to the server.
|
|
[[gnu::weak, gnu::visibility("protected")]] rpc::Client client asm(
|
|
"__llvm_rpc_client");
|
|
|
|
RT_EXT_API_GROUP_BEGIN
|
|
|
|
Cookie IODEF(BeginExternalListOutput)(
|
|
ExternalUnit unitNumber, const char *sourceFile, int sourceLine) {
|
|
return rpc::dispatch<BeginExternalListOutput_Opcode>(client,
|
|
IONAME(BeginExternalListOutput), unitNumber, sourceFile, sourceLine);
|
|
}
|
|
|
|
Cookie IODEF(BeginExternalFormattedOutput)(const char *format,
|
|
std::size_t formatLength, const Descriptor *formatDescriptor,
|
|
ExternalUnit unitNumber, const char *sourceFile, int sourceLine) {
|
|
return rpc::dispatch<BeginExternalFormattedOutput_Opcode>(client,
|
|
IONAME(BeginExternalFormattedOutput),
|
|
rpc::span<const char>{format, formatLength}, formatLength,
|
|
formatDescriptor, unitNumber, sourceFile, sourceLine);
|
|
}
|
|
|
|
void IODEF(EnableHandlers)(Cookie cookie, bool hasIoStat, bool hasErr,
|
|
bool hasEnd, bool hasEor, bool hasIoMsg) {
|
|
return rpc::dispatch<EnableHandlers_Opcode>(client, IONAME(EnableHandlers),
|
|
cookie, hasIoStat, hasErr, hasEnd, hasEor, hasIoMsg);
|
|
}
|
|
|
|
enum Iostat IODEF(EndIoStatement)(Cookie cookie) {
|
|
return rpc::dispatch<EndIoStatement_Opcode>(
|
|
client, IONAME(EndIoStatement), cookie);
|
|
}
|
|
|
|
bool IODEF(OutputInteger8)(Cookie cookie, std::int8_t n) {
|
|
return rpc::dispatch<OutputInteger8_Opcode>(
|
|
client, IONAME(OutputInteger8), cookie, n);
|
|
}
|
|
|
|
bool IODEF(OutputInteger16)(Cookie cookie, std::int16_t n) {
|
|
return rpc::dispatch<OutputInteger16_Opcode>(
|
|
client, IONAME(OutputInteger16), cookie, n);
|
|
}
|
|
|
|
bool IODEF(OutputInteger32)(Cookie cookie, std::int32_t n) {
|
|
return rpc::dispatch<OutputInteger32_Opcode>(
|
|
client, IONAME(OutputInteger32), cookie, n);
|
|
}
|
|
|
|
bool IODEF(OutputInteger64)(Cookie cookie, std::int64_t n) {
|
|
return rpc::dispatch<OutputInteger64_Opcode>(
|
|
client, IONAME(OutputInteger64), cookie, n);
|
|
}
|
|
|
|
#ifdef __SIZEOF_INT128__
|
|
bool IODEF(OutputInteger128)(Cookie cookie, common::int128_t n) {
|
|
return rpc::dispatch<OutputInteger128_Opcode>(
|
|
client, IONAME(OutputInteger128), cookie, n);
|
|
}
|
|
#endif
|
|
|
|
bool IODEF(OutputReal32)(Cookie cookie, float x) {
|
|
return rpc::dispatch<OutputReal32_Opcode>(
|
|
client, IONAME(OutputReal32), cookie, x);
|
|
}
|
|
|
|
bool IODEF(OutputReal64)(Cookie cookie, double x) {
|
|
return rpc::dispatch<OutputReal64_Opcode>(
|
|
client, IONAME(OutputReal64), cookie, x);
|
|
}
|
|
|
|
bool IODEF(OutputComplex32)(Cookie cookie, float re, float im) {
|
|
return rpc::dispatch<OutputComplex32_Opcode>(
|
|
client, IONAME(OutputComplex32), cookie, re, im);
|
|
}
|
|
|
|
bool IODEF(OutputComplex64)(Cookie cookie, double re, double im) {
|
|
return rpc::dispatch<OutputComplex64_Opcode>(
|
|
client, IONAME(OutputComplex64), cookie, re, im);
|
|
}
|
|
|
|
bool IODEF(OutputAscii)(Cookie cookie, const char *x, std::size_t length) {
|
|
return rpc::dispatch<OutputAscii_Opcode>(client, IONAME(OutputAscii), cookie,
|
|
rpc::span<const char>{x, length}, length);
|
|
}
|
|
|
|
bool IODEF(OutputCharacter)(
|
|
Cookie cookie, const char *x, std::size_t length, int kind) {
|
|
return rpc::dispatch<OutputCharacter_Opcode>(client, IONAME(OutputCharacter),
|
|
cookie, rpc::span<const char>{x, length * kind}, length, kind);
|
|
}
|
|
|
|
bool IODEF(OutputLogical)(Cookie cookie, bool truth) {
|
|
return rpc::dispatch<OutputLogical_Opcode>(
|
|
client, IONAME(OutputLogical), cookie, truth);
|
|
}
|
|
|
|
RT_EXT_API_GROUP_END
|
|
} // namespace Fortran::runtime::io
|