diff --git a/flang/lib/Lower/ConvertCall.cpp b/flang/lib/Lower/ConvertCall.cpp --- a/flang/lib/Lower/ConvertCall.cpp +++ b/flang/lib/Lower/ConvertCall.cpp @@ -1115,7 +1115,15 @@ Fortran::lower::convertToBox(loc, converter, actual, stmtCtx)); continue; case Fortran::lower::LowerIntrinsicArgAs::Inquired: - TODO(loc, "as inquired arguments in HLFIR"); + // Place hlfir.expr in memory, and unbox fir.boxchar. Other entities + // are translated to fir::ExtendedValue without transformation (notably, + // pointers/allocatable are not dereferenced). + // TODO: once lowering to FIR retires, UBOUND and LBOUND can be simplified + // since the fir.box lowered here are now guaranteed to contain the local + // lower bounds thanks to the hlfir.declare (the extra rebox can be + // removed). + operands.emplace_back(Fortran::lower::translateToExtendedValue( + loc, builder, actual, stmtCtx)); continue; } llvm_unreachable("bad switch"); diff --git a/flang/test/Lower/HLFIR/expr-as-inquired.f90 b/flang/test/Lower/HLFIR/expr-as-inquired.f90 new file mode 100644 --- /dev/null +++ b/flang/test/Lower/HLFIR/expr-as-inquired.f90 @@ -0,0 +1,41 @@ +! Test lowering to HLFIR of the intrinsic lowering framework +! "asInquired" option. + +! RUN: bbc -emit-fir -hlfir -o - %s | FileCheck %s + +subroutine test_isAllocated(x, l) + logical :: l + real, allocatable :: x(:) + l = allocated(x) +end subroutine +! CHECK-LABEL: func.func @_QPtest_isallocated( +! CHECK: %[[VAL_2:.*]]:2 = hlfir.declare %{{.*}} {{.*}}El +! CHECK: %[[VAL_3:.*]]:2 = hlfir.declare %{{.*}} {fortran_attrs = #fir.var_attrs, {{.*}}Ex" +! CHECK: %[[VAL_4:.*]] = fir.load %[[VAL_3]]#1 : !fir.ref>>> +! CHECK: %[[VAL_5:.*]] = fir.box_addr %[[VAL_4]] : (!fir.box>>) -> !fir.heap> +! CHECK: %[[VAL_6:.*]] = fir.convert %[[VAL_5]] : (!fir.heap>) -> i64 +! CHECK: %[[VAL_7:.*]] = arith.constant 0 : i64 +! CHECK: %[[VAL_8:.*]] = arith.cmpi ne, %[[VAL_6]], %[[VAL_7]] : i64 +! CHECK: hlfir.assign %[[VAL_8]] to %[[VAL_2]]#0 : i1, !fir.ref> +! CHECK: return +! CHECK: } + +subroutine test_lbound(x, n) + integer :: n + real :: x(2:, 3:) + n = lbound(x, dim=n) +end subroutine +! CHECK-LABEL: func.func @_QPtest_lbound( +! CHECK: %[[VAL_4:.*]]:2 = hlfir.declare %{{.*}} {{.*}}En +! CHECK: %[[VAL_5:.*]] = arith.constant 2 : i64 +! CHECK: %[[VAL_6:.*]] = fir.convert %[[VAL_5]] : (i64) -> index +! CHECK: %[[VAL_7:.*]] = arith.constant 3 : i64 +! CHECK: %[[VAL_8:.*]] = fir.convert %[[VAL_7]] : (i64) -> index +! CHECK: %[[VAL_10:.*]]:2 = hlfir.declare %{{.*}}(%{{.*}}) {{.*}}Ex +! CHECK: %[[VAL_11:.*]] = fir.load %[[VAL_4]]#1 : !fir.ref +! CHECK: %[[VAL_12:.*]] = fir.shift %[[VAL_6]], %[[VAL_8]] : (index, index) -> !fir.shift<2> +! CHECK: %[[VAL_13:.*]] = fir.rebox %[[VAL_10]]#1(%[[VAL_12]]) : (!fir.box>, !fir.shift<2>) -> !fir.box> +! CHECK: %[[VAL_16:.*]] = fir.convert %[[VAL_13]] : (!fir.box>) -> !fir.box +! CHECK: %[[VAL_18:.*]] = fir.call @_FortranALboundDim(%[[VAL_16]], +! CHECK: %[[VAL_19:.*]] = fir.convert %[[VAL_18]] : (i64) -> i32 +! CHECK: hlfir.assign %[[VAL_19]] to %[[VAL_4]]#0 : i32, !fir.ref