2021-09-06 16:19:20 +08:00
|
|
|
! RUN: %python %S/test_errors.py %s %flang_fc1
|
2019-12-24 09:12:53 +08:00
|
|
|
! Test 15.7 C1594 - prohibited assignments in pure subprograms
|
2019-09-07 05:42:01 +08:00
|
|
|
|
2019-11-20 11:10:02 +08:00
|
|
|
module used
|
|
|
|
real :: useassociated
|
|
|
|
end module
|
|
|
|
|
2019-09-07 05:42:01 +08:00
|
|
|
module m
|
2019-09-10 01:15:45 +08:00
|
|
|
type :: t
|
2019-09-10 01:43:19 +08:00
|
|
|
sequence
|
2019-09-10 01:15:45 +08:00
|
|
|
real :: a
|
|
|
|
end type
|
2019-09-10 01:43:19 +08:00
|
|
|
type(t), target :: x
|
2019-09-10 01:15:45 +08:00
|
|
|
type :: hasPtr
|
|
|
|
real, pointer :: p
|
|
|
|
end type
|
2019-11-20 11:10:02 +08:00
|
|
|
type :: hasCoarray
|
[flang] New implementation for checks for constraints C741 through C750
Summary:
Most of these checks were already implemented, and I just added references to
them to the code and tests. Also, much of this code was already
reviewed in the old flang/f18 GitHub repository, but I didn't get to
merge it before we switched repositories.
I implemented the check for C747 to not allow coarray components in derived
types that are of type C_PTR, C_FUNPTR, or type TEAM_TYPE.
I implemented the check for C748 that requires a data component whose type has
a coarray ultimate component to be a nonpointer, nonallocatable scalar and not
be a coarray.
I implemented the check for C750 that adds additional restrictions to the
bounds expressions of a derived type component that's an array.
These bounds expressions are sepcification expressions as defined in
10.1.11. There was already code in lib/Evaluate/check-expression.cpp to
check semantics for specification expressions, but it did not check for
the extra requirements of C750.
C750 prohibits specification functions, the intrinsic functions
ALLOCATED, ASSOCIATED, EXTENDS_TYPE_OF, PRESENT, and SAME_TYPE_AS. It
also requires every specification inquiry reference to be a constant
expression, and requires that the value of the bound not depend on the
value of a variable.
To implement these additional checks, I added code to the intrinsic proc
table to get the intrinsic class of a procedure. I also added an
enumeration to distinguish between specification expressions for
derived type component bounds versus for type parameters. I then
changed the code to pass an enumeration value to
"CheckSpecificationExpr()" to indicate that the expression was a bounds
expression and used this value to determine whether to emit an error
message when violations of C750 are found.
I changed the implementation of IsPureProcedure() to handle statement
functions and changed some references in the code that tested for the
PURE attribute to call IsPureProcedure().
I also fixed some unrelated tests that got new errors when I implemented these
new checks.
Reviewers: tskeith, DavidTruby, sscalpone
Subscribers: jfb, llvm-commits
Tags: #llvm, #flang
Differential Revision: https://reviews.llvm.org/D79263
2020-05-02 04:00:28 +08:00
|
|
|
real, allocatable :: co[:]
|
2019-11-20 11:10:02 +08:00
|
|
|
end type
|
2019-09-10 01:15:45 +08:00
|
|
|
contains
|
2021-09-15 03:44:57 +08:00
|
|
|
integer pure function purefunc(x)
|
|
|
|
integer, intent(in) :: x
|
|
|
|
purefunc = x
|
|
|
|
end function
|
|
|
|
integer pure function f00(p0)
|
|
|
|
procedure(purefunc) :: p0
|
|
|
|
f00 = p0(1)
|
|
|
|
end function
|
2019-11-20 11:10:02 +08:00
|
|
|
pure function test(ptr, in, hpd)
|
|
|
|
use used
|
|
|
|
type(t), pointer :: ptr, ptr2
|
|
|
|
type(t), target, intent(in) :: in
|
|
|
|
type(t), target :: y, z
|
|
|
|
type(hasPtr) :: hp
|
|
|
|
type(hasPtr), intent(in) :: hpd
|
|
|
|
type(hasPtr), allocatable :: alloc
|
|
|
|
type(hasCoarray), pointer :: hcp
|
|
|
|
integer :: n
|
|
|
|
common /block/ y
|
2021-09-15 03:44:57 +08:00
|
|
|
external :: extfunc
|
2019-12-24 09:12:53 +08:00
|
|
|
!ERROR: Pure subprogram 'test' may not define 'x' because it is host-associated
|
2019-09-10 01:15:45 +08:00
|
|
|
x%a = 0.
|
2019-12-24 09:12:53 +08:00
|
|
|
!ERROR: Pure subprogram 'test' may not define 'y' because it is in a COMMON block
|
2019-11-20 11:10:02 +08:00
|
|
|
y%a = 0. ! C1594(1)
|
2019-12-24 09:12:53 +08:00
|
|
|
!ERROR: Pure subprogram 'test' may not define 'useassociated' because it is USE-associated
|
2019-11-20 11:10:02 +08:00
|
|
|
useassociated = 0. ! C1594(1)
|
2019-12-24 09:12:53 +08:00
|
|
|
!ERROR: Pure subprogram 'test' may not define 'ptr' because it is a POINTER dummy argument of a pure function
|
2019-11-20 11:10:02 +08:00
|
|
|
ptr%a = 0. ! C1594(1)
|
2019-12-24 09:12:53 +08:00
|
|
|
!ERROR: Pure subprogram 'test' may not define 'in' because it is an INTENT(IN) dummy argument
|
2019-11-20 11:10:02 +08:00
|
|
|
in%a = 0. ! C1594(1)
|
2019-12-24 09:12:53 +08:00
|
|
|
!ERROR: A pure subprogram may not define a coindexed object
|
2019-11-20 11:10:02 +08:00
|
|
|
hcp%co[1] = 0. ! C1594(1)
|
2019-12-24 09:12:53 +08:00
|
|
|
!ERROR: Pure subprogram 'test' may not define 'ptr' because it is a POINTER dummy argument of a pure function
|
2019-11-20 11:10:02 +08:00
|
|
|
ptr => z ! C1594(2)
|
2019-12-24 09:12:53 +08:00
|
|
|
!ERROR: Pure subprogram 'test' may not define 'ptr' because it is a POINTER dummy argument of a pure function
|
2019-11-20 11:10:02 +08:00
|
|
|
nullify(ptr) ! C1594(2), 19.6.8
|
2019-12-24 09:12:53 +08:00
|
|
|
!ERROR: A pure subprogram may not use 'ptr' as the target of pointer assignment because it is a POINTER dummy argument of a pure function
|
2019-11-20 11:10:02 +08:00
|
|
|
ptr2 => ptr ! C1594(3)
|
2019-12-24 09:12:53 +08:00
|
|
|
!ERROR: A pure subprogram may not use 'in' as the target of pointer assignment because it is an INTENT(IN) dummy argument
|
2019-11-20 11:10:02 +08:00
|
|
|
ptr2 => in ! C1594(3)
|
2019-12-24 09:12:53 +08:00
|
|
|
!ERROR: A pure subprogram may not use 'y' as the target of pointer assignment because it is in a COMMON block
|
2019-11-20 11:10:02 +08:00
|
|
|
ptr2 => y ! C1594(2)
|
2019-12-24 09:12:53 +08:00
|
|
|
!ERROR: Externally visible object 'block' may not be associated with pointer component 'p' in a pure procedure
|
2019-11-20 11:10:02 +08:00
|
|
|
n = size([hasPtr(y%a)]) ! C1594(4)
|
2019-12-24 09:12:53 +08:00
|
|
|
!ERROR: Externally visible object 'x' may not be associated with pointer component 'p' in a pure procedure
|
2019-11-20 11:10:02 +08:00
|
|
|
n = size([hasPtr(x%a)]) ! C1594(4)
|
2019-12-24 09:12:53 +08:00
|
|
|
!ERROR: Externally visible object 'ptr' may not be associated with pointer component 'p' in a pure procedure
|
2019-11-20 11:10:02 +08:00
|
|
|
n = size([hasPtr(ptr%a)]) ! C1594(4)
|
2019-12-24 09:12:53 +08:00
|
|
|
!ERROR: Externally visible object 'in' may not be associated with pointer component 'p' in a pure procedure
|
2019-11-20 11:10:02 +08:00
|
|
|
n = size([hasPtr(in%a)]) ! C1594(4)
|
2019-12-24 09:12:53 +08:00
|
|
|
!ERROR: A pure subprogram may not copy the value of 'hpd' because it is an INTENT(IN) dummy argument and has the POINTER component '%p'
|
2019-11-20 11:10:02 +08:00
|
|
|
hp = hpd ! C1594(5)
|
2019-12-24 09:12:53 +08:00
|
|
|
!ERROR: A pure subprogram may not copy the value of 'hpd' because it is an INTENT(IN) dummy argument and has the POINTER component '%p'
|
2019-11-20 11:10:02 +08:00
|
|
|
allocate(alloc, source=hpd)
|
2021-09-15 03:44:57 +08:00
|
|
|
!ERROR: Actual procedure argument for dummy argument 'p0=' of a PURE procedure must have an explicit interface
|
|
|
|
n = f00(extfunc)
|
2019-11-20 11:10:02 +08:00
|
|
|
contains
|
|
|
|
pure subroutine internal
|
|
|
|
type(hasPtr) :: localhp
|
2019-12-24 09:12:53 +08:00
|
|
|
!ERROR: Pure subprogram 'internal' may not define 'z' because it is host-associated
|
2019-11-20 11:10:02 +08:00
|
|
|
z%a = 0.
|
2019-12-24 09:12:53 +08:00
|
|
|
!ERROR: Externally visible object 'z' may not be associated with pointer component 'p' in a pure procedure
|
2019-11-20 11:10:02 +08:00
|
|
|
localhp = hasPtr(z%a)
|
|
|
|
end subroutine
|
|
|
|
end function
|
2019-09-07 05:42:01 +08:00
|
|
|
end module
|