aboutsummaryrefslogtreecommitdiff
path: root/libgomp/testsuite/libgomp.fortran/dummy-procs-1.f90
blob: fcb17ce69a91561e1a51441ecb1e60e6bc8d9d6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
! { dg-do run }
!
! PR fortran/99171
!
! Check dummy procedure arguments, especially optional ones
!
module m
  use iso_c_binding
  implicit none (type, external)
  integer :: cnt
  integer :: cnt2
contains
  subroutine proc()
    cnt = cnt + 1
  end subroutine

  subroutine proc2()
    cnt2 = cnt2 + 1
  end subroutine

  subroutine check(my_proc)
    procedure(proc) :: my_proc
    cnt = 42
    call my_proc()
    if (cnt /= 43) stop 1

    !$omp parallel
      call my_proc()
    !$omp end parallel
    if (cnt <= 43) stop 2 
  end

  subroutine check_opt(my_proc)
    procedure(proc), optional :: my_proc
    logical :: is_present
    is_present = present(my_proc)
    cnt = 55
    if (present (my_proc)) then
      call my_proc()
      if (cnt /= 56) stop 3
    endif

    !$omp parallel
      if (is_present .neqv. present (my_proc)) stop 4
      if (present (my_proc)) then
        call my_proc()
        if (cnt <= 56) stop 5
      end if
    !$omp end parallel
    if (is_present) then
      if (cnt <= 56) stop 6
    else if (cnt /= 55) then
      stop 7
    end if
  end

  subroutine check_ptr(my_proc)
    procedure(proc), pointer :: my_proc
    logical :: is_assoc
    integer :: mycnt
    is_assoc = associated (my_proc)

    cnt = 10
    cnt2 = 20
    if (associated (my_proc)) then
      call my_proc()
      if (cnt /= 11 .or. cnt2 /= 20) stop 8
    endif

    !$omp parallel
      if (is_assoc .neqv. associated (my_proc)) stop 9
      if (associated (my_proc)) then
        if (.not. associated (my_proc, proc)) stop 10
        call my_proc()
        if (cnt <= 11 .or. cnt2 /= 20) stop 11
      else if (cnt /= 10 .or. cnt2 /= 20) then
        stop 12
      end if
    !$omp end parallel
    if (is_assoc .neqv. associated (my_proc)) stop 13
    if (associated (my_proc)) then
      if (cnt <= 11 .or. cnt2 /= 20) stop 14
    else if (is_assoc .and. (cnt /= 11 .or. cnt2 /= 20)) then
      stop 15
    end if

    cnt = 30
    cnt2 = 40
    mycnt = 0
    !$omp parallel shared(mycnt)
      !$omp critical
         my_proc => proc2
         if (.not.associated (my_proc, proc2)) stop 17
         mycnt = mycnt + 1
         call my_proc()
         if (cnt2 /= 40 + mycnt .or. cnt /= 30) stop 18
      !$omp end critical
    !$omp end parallel
    if (.not.associated (my_proc, proc2)) stop 19
    if (cnt2 /= 40 + mycnt .or. cnt /= 30) stop 20
  end

  subroutine check_ptr_opt(my_proc)
    procedure(proc), pointer, optional :: my_proc
    logical :: is_assoc, is_present
    integer :: mycnt
    is_assoc = .false.
    is_present = present(my_proc)

    cnt = 10
    cnt2 = 20
    if (present (my_proc)) then
      is_assoc = associated (my_proc)
      if (associated (my_proc)) then
        call my_proc()
        if (cnt /= 11 .or. cnt2 /= 20) stop 21
      endif
   end if

    !$omp parallel
      if (is_present .neqv. present (my_proc)) stop 22
      if (present (my_proc)) then
        if (is_assoc .neqv. associated (my_proc)) stop 23
        if (associated (my_proc)) then
          if (.not. associated (my_proc, proc)) stop 24
          call my_proc()
          if (cnt <= 11 .or. cnt2 /= 20) stop 25
        else if (cnt /= 10 .or. cnt2 /= 20) then
          stop 26
        end if
      end if
    !$omp end parallel
    if (present (my_proc)) then
      if (is_assoc .neqv. associated (my_proc)) stop 27
      if (associated (my_proc)) then
        if (cnt <= 11 .or. cnt2 /= 20) stop 28
      else if (is_assoc .and. (cnt /= 11 .or. cnt2 /= 20)) then
        stop 29
      end if
    end if

    cnt = 30
    cnt2 = 40
    mycnt = 0
    !$omp parallel shared(mycnt)
      if (is_present .neqv. present (my_proc)) stop 30
      !$omp critical
         if (present (my_proc)) then
           my_proc => proc2
           if (.not.associated (my_proc, proc2)) stop 31
           mycnt = mycnt + 1
           call my_proc()
           if (cnt2 /= 40 + mycnt .or. cnt /= 30) stop 32
         end if
      !$omp end critical
    !$omp end parallel
    if (present (my_proc)) then
      if (.not.associated (my_proc, proc2)) stop 33
      if (cnt2 /= 40 + mycnt .or. cnt /= 30) stop 34
    end if
  end

  ! ----------------------

  subroutine cfun_check(my_cfun)
    type(c_funptr) :: my_cfun
    procedure(proc), pointer :: pptr
    logical :: has_cfun

    has_cfun = c_associated (my_cfun)
    pptr => null()
    cnt = 42
    call c_f_procpointer (my_cfun, pptr)
    if (has_cfun) then
      call pptr()
      if (cnt /= 43) stop 35
    end if

    pptr => null()
    !$omp parallel
      if (has_cfun .neqv. c_associated (my_cfun)) stop 36
      !$omp critical
        call c_f_procpointer (my_cfun, pptr)
      !$omp end critical
      if (has_cfun) then
        call pptr()
        if (cnt <= 43) stop 37
      else
        if (associated (pptr)) stop 38
      end if
    !$omp end parallel
  end

  subroutine cfun_check_opt(my_cfun)
    type(c_funptr), optional :: my_cfun
    procedure(proc), pointer :: pptr
    logical :: has_cfun, is_present

    has_cfun = .false.
    is_present = present (my_cfun)
    if (is_present) has_cfun = c_associated (my_cfun)

    cnt = 1
    pptr => null()
    !$omp parallel
      if (is_present .neqv. present (my_cfun)) stop 39
      if (is_present) then
        if (has_cfun .neqv. c_associated (my_cfun, c_funloc(proc))) stop 40
        !$omp critical
          call c_f_procpointer (my_cfun, pptr)
        !$omp end critical
        if (has_cfun) then
          call pptr()
          if (cnt <= 1) stop 41
        else
          if (associated (pptr)) stop 42
        end if
      end if
    !$omp end parallel
  end

  subroutine cfun_check_ptr(my_cfun)
    type(c_funptr), pointer :: my_cfun
    procedure(proc), pointer :: pptr
    logical :: has_cfun, is_assoc

    has_cfun = .false.
    is_assoc = associated (my_cfun)
    if (is_assoc) has_cfun = c_associated (my_cfun)

    cnt = 1
    pptr => null()
    !$omp parallel
      if (is_assoc .neqv. associated (my_cfun)) stop 43
      if (is_assoc) then
        if (has_cfun .neqv. c_associated (my_cfun, c_funloc(proc))) stop 44
        !$omp critical
          call c_f_procpointer (my_cfun, pptr)
        !$omp end critical
        if (has_cfun) then
          call pptr()
          if (cnt <= 1) stop 45
        else
          if (associated (pptr)) stop 46
        end if
      end if
    !$omp end parallel

    cnt = 42
    cnt2 = 1
    pptr => null()
    !$omp parallel
      if (is_assoc .neqv. associated (my_cfun)) stop 47
      if (is_assoc) then
        !$omp critical
          my_cfun = c_funloc (proc2)
          call c_f_procpointer (my_cfun, pptr)
        !$omp end critical
        if (.not. associated (pptr, proc2)) stop 48
        if (.not. c_associated (my_cfun, c_funloc(proc2))) stop 49
        call pptr()
        if (cnt /= 42 .or. cnt2 <= 1) stop 50
      end if
    !$omp end parallel
    if (is_assoc) then
      if (.not. associated (pptr, proc2)) stop 51
      if (.not. c_associated (my_cfun, c_funloc(proc2))) stop 52
    else
      if (associated (pptr)) stop 53
    end if
  end

  subroutine cfun_check_ptr_opt (my_cfun)
    type(c_funptr), pointer, optional :: my_cfun
    procedure(proc), pointer :: pptr
    logical :: is_present, has_cfun, is_assoc

    has_cfun = .false.
    is_assoc = .false.
    is_present = present (my_cfun)
    if (is_present) then
      is_assoc = associated (my_cfun)
      if (is_assoc) has_cfun = c_associated (my_cfun)
    end if

    cnt = 1
    pptr => null()
    !$omp parallel
      if (is_present .neqv. present (my_cfun)) stop 54
      if (is_present) then
        if (is_assoc .neqv. associated (my_cfun)) stop 55
        if (is_assoc) then
          if (has_cfun .neqv. c_associated (my_cfun, c_funloc(proc))) stop 56
          !$omp critical
            call c_f_procpointer (my_cfun, pptr)
          !$omp end critical
          if (has_cfun) then
            call pptr()
            if (cnt <= 1) stop 57
          else
            if (associated (pptr)) stop 58
          end if
        end if
      end if
    !$omp end parallel

    cnt = 42
    cnt2 = 1
    pptr => null()
    !$omp parallel
      if (is_present .neqv. present (my_cfun)) stop 59
      if (is_present) then
        if (is_assoc .neqv. associated (my_cfun)) stop 60
        if (is_assoc) then
          !$omp critical
            my_cfun = c_funloc (proc2)
            call c_f_procpointer (my_cfun, pptr)
          !$omp end critical
          if (.not. associated (pptr, proc2)) stop 61
          if (.not. c_associated (my_cfun, c_funloc(proc2))) stop 62
          call pptr()
          if (cnt /= 42 .or. cnt2 <= 1) stop 63
        end if
      end if
    !$omp end parallel
    if (is_present .and. is_assoc) then
      if (.not. associated (pptr, proc2)) stop 64
      if (.not. c_associated (my_cfun, c_funloc(proc2))) stop 65
    else
      if (associated (pptr)) stop 66
    end if
  end
end module m



program main
  use m
  implicit none (type, external)
  procedure(proc), pointer :: pptr
  type(c_funptr), target :: cfun
  type(c_funptr), pointer :: cfun_ptr

  call check(proc)
  call check_opt()
  call check_opt(proc)

  pptr => null()
  call check_ptr(pptr)
  pptr => proc
  call check_ptr(pptr)

  call check_ptr_opt()
  pptr => null()
  call check_ptr_opt(pptr)
  pptr => proc
  call check_ptr_opt(pptr)

  ! -------------------
  pptr => null()

  cfun = c_funloc (pptr)
  call cfun_check(cfun)

  cfun = c_funloc (proc)
  call cfun_check(cfun)

  call cfun_check_opt()

  cfun = c_funloc (pptr)
  call cfun_check_opt(cfun)

  cfun = c_funloc (proc)
  call cfun_check_opt(cfun)

  ! - - - -
  cfun_ptr => null()
  call cfun_check_ptr (cfun_ptr)

  cfun = c_funloc (proc)
  cfun_ptr => cfun
  call cfun_check_ptr (cfun_ptr)

  ! - - - -
  call cfun_check_ptr_opt ()

  cfun_ptr => null()
  call cfun_check_ptr_opt (cfun_ptr)

  cfun = c_funloc (proc)
  cfun_ptr => cfun
  call cfun_check_ptr_opt (cfun_ptr)
end program