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
|
! { dg-do run }
! { dg-options "-finline-matmul-limit=0 -fdump-tree-original -fdump-tree-optimized -Warray-temporaries -fbounds-check" }
implicit none
integer :: i, j
integer, parameter :: nx=3, ny=4
integer, parameter, dimension(nx,ny) :: p = &
& reshape ((/ (i**2, i=1,size(p)) /), shape(p))
integer, parameter, dimension(ny,nx) :: q = &
& reshape ((/ (((nx*(i-1)+j)**2, i=1,ny), j=1,nx) /), (/ ny, nx /))
integer, parameter, dimension(nx,nx) :: r = &
& reshape ((/ (i*i, i=1,size(r)) /), shape(r))
integer, parameter, dimension(nx,nx) :: s = &
& reshape ((/ (((nx*(i-1)+j)**2, i=1,nx), j=1,nx) /), (/ nx, nx /))
integer, dimension(nx,ny) :: a, b
integer, dimension(ny,nx) :: c
integer, dimension(nx,nx) :: e, f, g
character(144) :: u, v
a = p
c = transpose(a)
if (any(c /= q)) STOP 1
write(u,*) transpose(a)
write(v,*) q
if (u /= v) STOP 2
e = r
f = s
g = transpose(e+f)
if (any(g /= r + s)) STOP 3
write(u,*) transpose(e+f)
write(v,*) r + s
if (u /= v) STOP 4
e = transpose(e) ! { dg-warning "Creating array temporary" }
if (any(e /= s)) STOP 5
write(u,*) transpose(transpose(e))
write(v,*) s
if (u /= v) STOP 6
e = transpose(e+f) ! { dg-warning "Creating array temporary" }
if (any(e /= 2*r)) STOP 7
write(u,*) transpose(transpose(e+f))-f
write(v,*) 2*r
if (u /= v) STOP 8
a = foo(transpose(c))
if (any(a /= p+1)) STOP 9
write(u,*) foo(transpose(c)) ! { dg-warning "Creating array temporary" }
write(v,*) p+1
if (u /= v) STOP 10
c = transpose(foo(a)) ! Unnecessary { dg-warning "Creating array temporary" }
if (any(c /= q+2)) STOP 11
write(u,*) transpose(foo(a)) ! { dg-warning "Creating array temporary" }
write(v,*) q+2
if (u /= v) STOP 12
e = foo(transpose(e)) ! { dg-warning "Creating array temporary" }
if (any(e /= 2*s+1)) STOP 13
write(u,*) transpose(foo(transpose(e))-1) ! { dg-warning "Creating array temporary" }
write(v,*) 2*s+1
if (u /= v) STOP 14
e = transpose(foo(e)) ! { dg-warning "Creating array temporary" }
if (any(e /= 2*r+2)) STOP 15
write(u,*) transpose(foo(transpose(e)-1)) ! 2 temps { dg-warning "Creating array temporary" }
write(v,*) 2*r+2
if (u /= v) STOP 16
a = bar(transpose(c))
if (any(a /= p+4)) STOP 17
write(u,*) bar(transpose(c))
write(v,*) p+4
if (u /= v) STOP 18
c = transpose(bar(a))
if (any(c /= q+6)) STOP 19
write(u,*) transpose(bar(a))
write(v,*) q+6
if (u /= v) STOP 20
e = bar(transpose(e)) ! { dg-warning "Creating array temporary" }
if (any(e /= 2*s+4)) STOP 21
write(u,*) transpose(bar(transpose(e)))-2
write(v,*) 2*s+4
if (u /= v) STOP 22
e = transpose(bar(e)) ! { dg-warning "Creating array temporary" }
if (any(e /= 2*r+6)) STOP 23
write(u,*) transpose(transpose(bar(e))-2)
write(v,*) 2*r+6
if (u /= v) STOP 24
if (any(a /= transpose(transpose(a)))) STOP 25! optimized away
write(u,*) a
write(v,*) transpose(transpose(a))
if (u /= v) STOP 26
b = a * a
if (any(transpose(a+b) /= transpose(a)+transpose(b))) STOP 27! optimized away
write(u,*) transpose(a+b)
write(v,*) transpose(a) + transpose(b)
if (u /= v) STOP 28
if (any(transpose(matmul(a,c)) /= matmul(transpose(c), transpose(a)))) STOP 29! 2 temps { dg-warning "Creating array temporary" }
write(u,*) transpose(matmul(a,c)) ! { dg-warning "Creating array temporary" }
write(v,*) matmul(transpose(c), transpose(a)) ! { dg-warning "Creating array temporary" }
if (u /= v) STOP 30
if (any(transpose(matmul(e,a)) /= matmul(transpose(a), transpose(e)))) STOP 31! 2 temps { dg-warning "Creating array temporary" }
write(u,*) transpose(matmul(e,a)) ! { dg-warning "Creating array temporary" }
write(v,*) matmul(transpose(a), transpose(e)) ! { dg-warning "Creating array temporary" }
if (u /= v) STOP 32
call baz (transpose(a))
call toto1 (a, transpose (c))
if (any (a /= 2 * p + 12)) STOP 33
call toto1 (e, transpose (e)) ! { dg-warning "Creating array temporary" }
if (any (e /= 4 * s + 12)) STOP 34
call toto2 (c, transpose (a))
if (any (c /= 2 * q + 13)) STOP 35
call toto2 (e, transpose(e)) ! { dg-warning "Creating array temporary" }
if (any (e /= 4 * r + 13)) STOP 36
call toto2 (e, transpose(transpose(e))) ! { dg-warning "Creating array temporary" }
if (any (e /= 4 * r + 14)) STOP 37
call toto3 (e, transpose(e))
if (any (e /= 4 * r + 14)) STOP 38
call titi (nx, e, transpose(e)) ! { dg-warning "Creating array temporary" }
if (any (e /= 4 * s + 17)) STOP 39
contains
function foo (x)
integer, intent(in) :: x(:,:)
integer :: foo(size(x,1), size(x,2))
foo = x + 1
end function foo
elemental function bar (x)
integer, intent(in) :: x
integer :: bar
bar = x + 2
end function bar
subroutine baz (x)
integer, intent(in) :: x(:,:)
end subroutine baz
elemental subroutine toto1 (x, y)
integer, intent(out) :: x
integer, intent(in) :: y
x = y + y
end subroutine toto1
subroutine toto2 (x, y)
integer, dimension(:,:), intent(out) :: x
integer, dimension(:,:), intent(in) :: y
x = y + 1
end subroutine toto2
subroutine toto3 (x, y)
integer, dimension(:,:), intent(in) :: x, y
end subroutine toto3
end
subroutine titi (n, x, y)
integer :: n, x(n,n), y(n,n)
x = y + 3
end subroutine titi
! No call to transpose
! { dg-final { scan-tree-dump-times "_gfortran_transpose" 0 "original" } }
!
! 24 temporaries
! { dg-final { scan-tree-dump-times "struct\[^\\n\]*atmp" 24 "original" } }
!
! 2 tests optimized out
! { dg-final { scan-tree-dump-times "_gfortran_stop" 39 "original" } }
! { # Commented out as failing at -O0: dg-final { scan-tree-dump-times "_gfortran_stop" 37 "optimized" } }
!
! cleanup
|