! Test lowering of pointer disassociation ! RUN: bbc -emit-fir %s -o - | FileCheck %s ! ----------------------------------------------------------------------------- ! Test p => NULL() ! ----------------------------------------------------------------------------- ! CHECK-LABEL: func @_QPtest_scalar( ! CHECK-SAME: %[[p:.*]]: !fir.ref>>{{.*}}) subroutine test_scalar(p) real, pointer :: p ! CHECK: %[[null:.*]] = fir.zero_bits !fir.ptr ! CHECK: %[[box:.*]] = fir.embox %[[null]] : (!fir.ptr) -> !fir.box> ! CHECK: fir.store %[[box]] to %[[p]] : !fir.ref>> p => NULL() end subroutine ! CHECK-LABEL: func @_QPtest_scalar_char( ! CHECK-SAME: %[[p:.*]]: !fir.ref>>>{{.*}}) subroutine test_scalar_char(p) character(:), pointer :: p ! CHECK: %[[null:.*]] = fir.zero_bits !fir.ptr> ! CHECK: %[[box:.*]] = fir.embox %[[null]] typeparams %c0{{.*}} : (!fir.ptr>, index) -> !fir.box>> ! CHECK: fir.store %[[box]] to %[[p]] : !fir.ref>>> p => NULL() end subroutine ! CHECK-LABEL: func @_QPtest_array( ! CHECK-SAME: %[[p:.*]]: !fir.ref>>>{{.*}}) subroutine test_array(p) real, pointer :: p(:) ! CHECK: %[[null:.*]] = fir.zero_bits !fir.ptr> ! CHECK: %[[shape:.*]] = fir.shape %c0{{.*}} ! CHECK: %[[box:.*]] = fir.embox %[[null]](%[[shape]]) : (!fir.ptr>, !fir.shape<1>) -> !fir.box>> ! CHECK: fir.store %[[box]] to %[[p]] : !fir.ref>>> p => NULL() end subroutine ! Test p(lb, ub) => NULL() which is none sens but is not illegal. ! CHECK-LABEL: func @_QPtest_array_remap( ! CHECK-SAME: %[[p:.*]]: !fir.ref>>>{{.*}}) subroutine test_array_remap(p) real, pointer :: p(:) ! CHECK: %[[null:.*]] = fir.zero_bits !fir.ptr> ! CHECK: %[[shape:.*]] = fir.shape %c0{{.*}} ! CHECK: %[[box:.*]] = fir.embox %[[null]](%[[shape]]) : (!fir.ptr>, !fir.shape<1>) -> !fir.box>> ! CHECK: fir.store %[[box]] to %[[p]] : !fir.ref>>> p(10:20) => NULL() end subroutine ! ----------------------------------------------------------------------------- ! Test p => NULL(MOLD) ! ----------------------------------------------------------------------------- ! CHECK-LABEL: func @_QPtest_scalar_mold( ! CHECK-SAME: %[[p:.*]]: !fir.ref>>{{[^,]*}}, subroutine test_scalar_mold(p, x) real, pointer :: p, x ! CHECK: %[[VAL_0:.*]] = fir.alloca !fir.box> ! CHECK: %[[VAL_1:.*]] = fir.zero_bits !fir.ptr ! CHECK: %[[VAL_2:.*]] = fir.embox %[[VAL_1]] : (!fir.ptr) -> !fir.box> ! CHECK: fir.store %[[VAL_2]] to %[[VAL_0]] : !fir.ref>> ! CHECK: %[[VAL_3:.*]] = fir.load %[[VAL_0]] : !fir.ref>> ! CHECK: %[[VAL_4:.*]] = fir.box_addr %[[VAL_3]] : (!fir.box>) -> !fir.ptr ! CHECK: %[[VAL_5:.*]] = fir.embox %[[VAL_4]] : (!fir.ptr) -> !fir.box> ! CHECK: fir.store %[[VAL_5]] to %[[p]] : !fir.ref>> p => NULL(x) end subroutine ! CHECK-LABEL: func @_QPtest_scalar_char_mold( ! CHECK-SAME: %[[p:.*]]: !fir.ref>>>{{[^,]*}}, subroutine test_scalar_char_mold(p, x) character(:), pointer :: p, x ! CHECK: %[[VAL_7:.*]] = fir.alloca !fir.box>> ! CHECK: %[[VAL_8:.*]] = fir.zero_bits !fir.ptr> ! CHECK: %[[VAL_9:.*]] = arith.constant 0 : index ! CHECK: %[[VAL_10:.*]] = fir.embox %[[VAL_8]] typeparams %[[VAL_9]] : (!fir.ptr>, index) -> !fir.box>> ! CHECK: fir.store %[[VAL_10]] to %[[VAL_7]] : !fir.ref>>> ! CHECK: %[[VAL_11:.*]] = fir.load %[[VAL_7]] : !fir.ref>>> ! CHECK: %[[VAL_12:.*]] = fir.box_elesize %[[VAL_11]] : (!fir.box>>) -> index ! CHECK: %[[VAL_13:.*]] = fir.box_addr %[[VAL_11]] : (!fir.box>>) -> !fir.ptr> ! CHECK: %[[VAL_14:.*]] = fir.embox %[[VAL_13]] typeparams %[[VAL_12]] : (!fir.ptr>, index) -> !fir.box>> ! CHECK: fir.store %[[VAL_14]] to %[[p]] : !fir.ref>>> p => NULL(x) end subroutine ! CHECK-LABEL: func @_QPtest_array_mold( ! CHECK-SAME: %[[p:.*]]: !fir.ref>>>{{[^,]*}}, subroutine test_array_mold(p, x) real, pointer :: p(:), x(:) ! CHECK: %[[VAL_0:.*]] = fir.alloca !fir.box>> ! CHECK: %[[VAL_1:.*]] = fir.zero_bits !fir.ptr> ! CHECK: %[[VAL_2:.*]] = arith.constant 0 : index ! CHECK: %[[VAL_3:.*]] = fir.shape %[[VAL_2]] : (index) -> !fir.shape<1> ! CHECK: %[[VAL_4:.*]] = fir.embox %[[VAL_1]](%[[VAL_3]]) : (!fir.ptr>, !fir.shape<1>) -> !fir.box>> ! CHECK: fir.store %[[VAL_4]] to %[[VAL_0]] : !fir.ref>>> ! CHECK: %[[VAL_5:.*]] = fir.load %[[VAL_0]] : !fir.ref>>> ! CHECK: %[[VAL_6:.*]] = arith.constant 0 : index ! CHECK: %[[VAL_7:.*]]:3 = fir.box_dims %[[VAL_5]], %[[VAL_6]] : (!fir.box>>, index) -> (index, index, index) ! CHECK: %[[VAL_8:.*]] = fir.shift %[[VAL_7]]#0 : (index) -> !fir.shift<1> ! CHECK: %[[VAL_9:.*]] = fir.rebox %[[VAL_5]](%[[VAL_8]]) : (!fir.box>>, !fir.shift<1>) -> !fir.box>> ! CHECK: fir.store %[[VAL_9]] to %[[p]] : !fir.ref>>> p => NULL(x) end subroutine