mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 15:46:44 +00:00

Patch 2/3 of the transition step 1 described in https://discourse.llvm.org/t/rfc-enabling-the-hlfir-lowering-by-default/72778/7. All the modified tests are still here since coverage for the direct lowering to FIR was still needed while it was default. Some already have an HLFIR version, some have not and will need to be ported in step 2 described in the RFC. Note that another 147 lit tests use -emit-fir/-emit-llvm outputs but do not need a flag since the HLFIR/no HLFIR output is the same for what is being tested.
50 lines
2.4 KiB
Fortran
50 lines
2.4 KiB
Fortran
! Test lowering of IO read SIZE control-spec (12.6.2.15)
|
|
! RUN: bbc -emit-fir -hlfir=false -o - %s | FileCheck %s
|
|
|
|
! CHECK-LABEL: func @_QPtest_read_size(
|
|
! CHECK-SAME: %[[sizeVar:[^:]+]]: !fir.ref<i32>{{[^,]*}},
|
|
subroutine test_read_size(size, c1, c2, unit, stat)
|
|
integer :: unit, size, stat
|
|
character(*) :: c1, c2
|
|
! CHECK: %[[cookie:.*]] = fir.call @_FortranAioBeginExternalFormattedInput(
|
|
! CHECK: fir.call @_FortranAioEnableHandlers(
|
|
! CHECK: %[[ok1:.*]] = fir.call @_FortranAioSetAdvance(
|
|
! CHECK: fir.if %[[ok1]] {
|
|
! CHECK: fir.if %[[ok1]] {
|
|
! CHECK: %[[ok2:.*]] = fir.call @_FortranAioInputAscii(
|
|
! CHECK: fir.if %[[ok2]] {
|
|
! CHECK: fir.call @_FortranAioInputAscii(
|
|
! CHECK: }
|
|
! CHECK: }
|
|
! CHECK: }
|
|
! CHECK: %[[sizeValue:.*]] = fir.call @_FortranAioGetSize(%[[cookie]]) {{.*}}: (!fir.ref<i8>) -> i64
|
|
! CHECK: %[[sizeCast:.*]] = fir.convert %[[sizeValue]] : (i64) -> i32
|
|
! CHECK: fir.store %[[sizeCast]] to %[[sizeVar]] : !fir.ref<i32>
|
|
! CHECK: fir.call @_FortranAioEndIoStatement(%[[cookie]]) {{.*}}: (!fir.ref<i8>) -> i32
|
|
READ(unit, '(A)', ADVANCE='NO', SIZE=size, IOSTAT=stat) c1, c2
|
|
end subroutine
|
|
|
|
! CHECK: %[[unit:.*]] = fir.alloca i32 {bindc_name = "unit", uniq_name = "_QFEunit"}
|
|
integer :: unit
|
|
character(7) :: c1
|
|
character(4) :: c2
|
|
integer :: size = 0
|
|
integer :: stat = 0
|
|
! CHECK: %[[cookie:.*]] = fir.call @_FortranAioBeginOpenNewUnit(%{{.*}}, %{{.*}}) {{.*}}: (!fir.ref<i8>, i32) -> !fir.ref<i8>
|
|
! CHECK: fir.call @_FortranAioSetAccess(%[[cookie]], %{{.*}}, %{{.*}}) {{.*}}: (!fir.ref<i8>, !fir.ref<i8>, i64) -> i1
|
|
! CHECK: fir.call @_FortranAioSetAction(%[[cookie]], %{{.*}}, %{{.*}}) {{.*}}: (!fir.ref<i8>, !fir.ref<i8>, i64) -> i1
|
|
! CHECK: fir.call @_FortranAioSetForm(%[[cookie]], %{{.*}}, %{{.*}}) {{.*}}: (!fir.ref<i8>, !fir.ref<i8>, i64) -> i1
|
|
! CHECK: fir.call @_FortranAioSetStatus(%[[cookie]], %{{.*}}, %{{.*}}) {{.*}}: (!fir.ref<i8>, !fir.ref<i8>, i64) -> i1
|
|
! CHECK: %[[kind:.*]] = arith.constant 4 : i32
|
|
! CHECK: fir.call @_FortranAioGetNewUnit(%[[cookie]], %[[unit]], %[[kind]]) {{.*}}: (!fir.ref<i8>, !fir.ref<i32>, i32) -> i1
|
|
! CHECK: fir.call @_FortranAioEndIoStatement(%[[cookie]]) {{.*}}: (!fir.ref<i8>) -> i32
|
|
OPEN(NEWUNIT=unit,ACCESS='SEQUENTIAL',ACTION='READWRITE',&
|
|
FORM='FORMATTED',STATUS='SCRATCH')
|
|
WRITE(unit, '(A)') "ABCDEF"
|
|
WRITE(unit, '(A)') "GHIJKL"
|
|
REWIND(unit)
|
|
call test_read_size(size, c1, c2, unit, stat)
|
|
print *, stat, size, c1
|
|
CLOSE(unit)
|
|
end
|