mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-14 17:57:39 +01:00
* these are dependencies for gcc 4 Graphite engine build. * CLooG 0.18.0 includes ISL 0.11.1 which is the backend that the build script enables. * PPL is needed by GCC build even if it isn't the chosen backend.
47 lines
451 B
Plaintext
47 lines
451 B
Plaintext
# Optimal code is in fact :
|
|
#
|
|
# for (i=0;i<=M;i++) {
|
|
# S1 ;
|
|
# for (j=0;j<=N;j++) {
|
|
# S2 ;
|
|
# }
|
|
# S3 ;
|
|
# }
|
|
|
|
# language: C
|
|
c
|
|
|
|
# parameters {M, N | M>=1 N >=1}
|
|
0 2
|
|
0
|
|
|
|
3 # Number of statements
|
|
|
|
1
|
|
# {i | 0<=i<=5 i==j}
|
|
3 4
|
|
1 1 0 0
|
|
1 -1 0 5
|
|
0 1 -1 0
|
|
0 0 0
|
|
|
|
1
|
|
# {i | 0<=i<=5 i<=j<=5}
|
|
4 4
|
|
1 1 0 0
|
|
1 -1 0 5
|
|
1 -1 1 0
|
|
1 0 -1 5
|
|
0 0 0
|
|
|
|
1
|
|
# {i | 0<=i<=5 j==5}
|
|
3 4
|
|
1 1 0 0
|
|
1 -1 0 5
|
|
0 0 1 -5
|
|
0 0 0
|
|
0
|
|
|
|
0 # Scattering functions
|