[flang-commits] [flang] b626053 - [flang][runtime] Terminate last partial record after non-advancing write (#74524)
via flang-commits
flang-commits at lists.llvm.org
Mon Dec 11 12:25:09 PST 2023
Author: Peter Klausler
Date: 2023-12-11T12:25:05-08:00
New Revision: b62605388c975c3c0649a2d5a51136ffeea86e7b
URL: https://github.com/llvm/llvm-project/commit/b62605388c975c3c0649a2d5a51136ffeea86e7b
DIFF: https://github.com/llvm/llvm-project/commit/b62605388c975c3c0649a2d5a51136ffeea86e7b.diff
LOG: [flang][runtime] Terminate last partial record after non-advancing write (#74524)
After a non-advancing WRITE to a unit, ensure that any ENDFILE operation
(explicit or implicit) terminates the record. (All other Fortran
implementations do so except XLF.)
Fixes llvm-test-suite/Fortran/gfortran/regression/advance_6.f90.
Added:
Modified:
flang/runtime/unit.cpp
Removed:
################################################################################
diff --git a/flang/runtime/unit.cpp b/flang/runtime/unit.cpp
index 5fa8565c2f61f..dfe61263feb81 100644
--- a/flang/runtime/unit.cpp
+++ b/flang/runtime/unit.cpp
@@ -595,8 +595,8 @@ void ExternalFileUnit::BackspaceRecord(IoErrorHandler &handler) {
if (IsAfterEndfile()) {
// BACKSPACE after explicit ENDFILE
currentRecordNumber = *endfileRecordNumber;
- } else if (leftTabLimit) {
- // BACKSPACE after non-advancing I/O
+ } else if (leftTabLimit && direction_ == Direction::Input) {
+ // BACKSPACE after non-advancing input
leftTabLimit.reset();
} else {
DoImpliedEndfile(handler);
@@ -896,28 +896,29 @@ void ExternalFileUnit::BackspaceVariableFormattedRecord(
}
void ExternalFileUnit::DoImpliedEndfile(IoErrorHandler &handler) {
- if (!impliedEndfile_ && direction_ == Direction::Output && IsRecordFile() &&
- access != Access::Direct && leftTabLimit) {
- // Complete partial record after non-advancing write before
- // positioning or closing the unit. Usually sets impliedEndfile_.
- AdvanceRecord(handler);
- }
- if (impliedEndfile_) {
- impliedEndfile_ = false;
- if (access != Access::Direct && IsRecordFile() && mayPosition()) {
+ if (access != Access::Direct) {
+ if (!impliedEndfile_ && leftTabLimit && direction_ == Direction::Output) {
+ // Flush a partial record after non-advancing output
+ impliedEndfile_ = true;
+ }
+ if (impliedEndfile_ && mayPosition()) {
DoEndfile(handler);
}
}
+ impliedEndfile_ = false;
}
void ExternalFileUnit::DoEndfile(IoErrorHandler &handler) {
if (IsRecordFile() && access != Access::Direct) {
furthestPositionInRecord =
std::max(positionInRecord, furthestPositionInRecord);
- if (leftTabLimit) {
- // Last read/write was non-advancing, so AdvanceRecord() was not called.
- leftTabLimit.reset();
- ++currentRecordNumber;
+ if (leftTabLimit) { // last I/O was non-advancing
+ if (access == Access::Sequential && direction_ == Direction::Output) {
+ AdvanceRecord(handler);
+ } else { // Access::Stream or input
+ leftTabLimit.reset();
+ ++currentRecordNumber;
+ }
}
endfileRecordNumber = currentRecordNumber;
}
More information about the flang-commits
mailing list