| 1 | //
 | 
|---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
 | 
|---|
| 3 | //
 | 
|---|
| 4 | // The contents of this file are covered under the licence agreement in the
 | 
|---|
| 5 | // file "LICENCE" distributed with Cforall.
 | 
|---|
| 6 | //
 | 
|---|
| 7 | // forall.cfa --
 | 
|---|
| 8 | //
 | 
|---|
| 9 | // Author           : Peter A. Buhr
 | 
|---|
| 10 | // Created On       : Wed May  9 08:48:15 2018
 | 
|---|
| 11 | // Last Modified By : Peter A. Buhr
 | 
|---|
| 12 | // Last Modified On : Sat Jun  5 10:06:08 2021
 | 
|---|
| 13 | // Update Count     : 36
 | 
|---|
| 14 | //
 | 
|---|
| 15 | 
 | 
|---|
| 16 | void g1() {
 | 
|---|
| 17 |         forall( T ) T f( T ) {};
 | 
|---|
| 18 |         void f( int ) {};
 | 
|---|
| 19 |         void h( void (*p)(void) ) {};
 | 
|---|
| 20 | 
 | 
|---|
| 21 |         int x;
 | 
|---|
| 22 |         void (*y)(void);
 | 
|---|
| 23 |         char z;
 | 
|---|
| 24 |         float w;
 | 
|---|
| 25 | 
 | 
|---|
| 26 |         f( x );
 | 
|---|
| 27 |         f( y );
 | 
|---|
| 28 |         f( z );
 | 
|---|
| 29 |         f( w );
 | 
|---|
| 30 |         h( f( y ) );
 | 
|---|
| 31 | }
 | 
|---|
| 32 | 
 | 
|---|
| 33 | void g2() {
 | 
|---|
| 34 |         forall( T ) void f( T, T ) {}
 | 
|---|
| 35 |         forall( T, U ) void f( T, U ) {}
 | 
|---|
| 36 | 
 | 
|---|
| 37 |         int x;
 | 
|---|
| 38 |         float y;
 | 
|---|
| 39 |         int *z;
 | 
|---|
| 40 |         float *w;
 | 
|---|
| 41 | 
 | 
|---|
| 42 |         f( x, y );
 | 
|---|
| 43 |         f( z, w );
 | 
|---|
| 44 |         f( x, z );
 | 
|---|
| 45 | }
 | 
|---|
| 46 | 
 | 
|---|
| 47 | // commented this out since it is not clearly meaningful
 | 
|---|
| 48 | // and not really representable in the ast
 | 
|---|
| 49 | // typedef forall ( T ) int (* f)( int );
 | 
|---|
| 50 | 
 | 
|---|
| 51 | forall( T )
 | 
|---|
| 52 | void swap( T left, T right ) {
 | 
|---|
| 53 |         T temp = left;
 | 
|---|
| 54 |         left = right;
 | 
|---|
| 55 |         right = temp;
 | 
|---|
| 56 | }
 | 
|---|
| 57 | 
 | 
|---|
| 58 | trait sumable( T ) {
 | 
|---|
| 59 |         void ?{}( T &, zero_t );                                                        // 0 literal constructor
 | 
|---|
| 60 |         T ?+?( T, T );                                                                          // assortment of additions
 | 
|---|
| 61 |         T ?+=?( T &, T );
 | 
|---|
| 62 |         T ++?( T & );
 | 
|---|
| 63 |         T ?++( T & );
 | 
|---|
| 64 | }; // sumable
 | 
|---|
| 65 | 
 | 
|---|
| 66 | forall( T | sumable( T ) )                                              // use trait
 | 
|---|
| 67 | T sum( size_t size, T a[] ) {
 | 
|---|
| 68 |         T total = 0;                                                                            // initialize by 0 constructor
 | 
|---|
| 69 |         for ( size_t i = 0; i < size; i += 1 )
 | 
|---|
| 70 |                 total = total + a[i];                                                   // select appropriate +
 | 
|---|
| 71 |         return total;
 | 
|---|
| 72 | } // sum
 | 
|---|
| 73 | 
 | 
|---|
| 74 | forall( T | { T ?+?( T, T ); T ?++( T & ); [T] ?+=?( T &,T ); } )
 | 
|---|
| 75 | T twice( T t ) {
 | 
|---|
| 76 |         return t + t;
 | 
|---|
| 77 | }
 | 
|---|
| 78 | 
 | 
|---|
| 79 | forall( T | { int ?<?(T, T); } )
 | 
|---|
| 80 | T min( T t1, T t2 ) {
 | 
|---|
| 81 |         return t1 < t2 ? t1 : t2;
 | 
|---|
| 82 | }
 | 
|---|
| 83 | 
 | 
|---|
| 84 | int fred() {
 | 
|---|
| 85 |         int x = 1, y = 2, a[10];
 | 
|---|
| 86 |         float f;
 | 
|---|
| 87 | 
 | 
|---|
| 88 |         swap( x, y );
 | 
|---|
| 89 |         twice( x );
 | 
|---|
| 90 |         f = min( 4.0, 3.0 );
 | 
|---|
| 91 |         sum( 10, a );
 | 
|---|
| 92 | }
 | 
|---|
| 93 | 
 | 
|---|
| 94 | // Multiple forall
 | 
|---|
| 95 | forall( T ) forall( S ) struct { int i; };
 | 
|---|
| 96 | forall( T ) struct { int i; } forall( S );
 | 
|---|
| 97 | struct { int i; } forall( T ) forall( S );
 | 
|---|
| 98 | forall( W ) struct { int i; } forall( T ) forall( S );
 | 
|---|
| 99 | 
 | 
|---|
| 100 | // Distribution
 | 
|---|
| 101 | struct P { int i; };
 | 
|---|
| 102 | forall( T ) struct Q { T i; };
 | 
|---|
| 103 | forall( T ) struct { int i; };
 | 
|---|
| 104 | struct KK { int i; };
 | 
|---|
| 105 | inline static {
 | 
|---|
| 106 |         void RT1() {}
 | 
|---|
| 107 | }
 | 
|---|
| 108 | forall( T ) {
 | 
|---|
| 109 |         T RT2( T ) {
 | 
|---|
| 110 |                 typedef int TD1;
 | 
|---|
| 111 |                 struct S1 { T t; };
 | 
|---|
| 112 |         }
 | 
|---|
| 113 |         forall( X ) {
 | 
|---|
| 114 |                 typedef int TD2;
 | 
|---|
| 115 |                 struct S2 {};
 | 
|---|
| 116 |                 X RT2( T, X ) {
 | 
|---|
| 117 |                         int TD2;
 | 
|---|
| 118 |                 }
 | 
|---|
| 119 |         }
 | 
|---|
| 120 |         extern "C" {
 | 
|---|
| 121 |                 forall( W ) {
 | 
|---|
| 122 |                         W RT3( W ) {}
 | 
|---|
| 123 |                         struct S3 {};
 | 
|---|
| 124 |                 }
 | 
|---|
| 125 |         }
 | 
|---|
| 126 |         void RT4() {
 | 
|---|
| 127 |                 forall( W ) struct S4 {};
 | 
|---|
| 128 |                 typedef int TD3;
 | 
|---|
| 129 |         }
 | 
|---|
| 130 |         static {
 | 
|---|
| 131 |                 struct S5 {};
 | 
|---|
| 132 |                 void RT5( T ) {
 | 
|---|
| 133 |                         struct S6 {};
 | 
|---|
| 134 |                         int TD2;
 | 
|---|
| 135 |                 }
 | 
|---|
| 136 |         }
 | 
|---|
| 137 |         struct S7 {};
 | 
|---|
| 138 |         typedef int TD4;
 | 
|---|
| 139 | }
 | 
|---|
| 140 | TD2 t2;
 | 
|---|
| 141 | TD4 t4;
 | 
|---|
| 142 | struct Q( int ) t;
 | 
|---|
| 143 | struct S2( int, int ) t;
 | 
|---|
| 144 | struct S5( int ) t;
 | 
|---|
| 145 | struct S7( int ) t;
 | 
|---|
| 146 | 
 | 
|---|
| 147 | int i = RT2( 3 );
 | 
|---|
| 148 | double j = RT2( 3, 4.5 );
 | 
|---|
| 149 | 
 | 
|---|
| 150 | static inline {
 | 
|---|
| 151 |         forall( T ) {
 | 
|---|
| 152 |                 int RT6( T p );
 | 
|---|
| 153 |         }
 | 
|---|
| 154 |         forall( T, U ) {
 | 
|---|
| 155 |                 int RT7( T, U );
 | 
|---|
| 156 |         }
 | 
|---|
| 157 | }
 | 
|---|
| 158 | static forall( T ) {
 | 
|---|
| 159 |         int RT8( T );
 | 
|---|
| 160 | }
 | 
|---|
| 161 | forall( T ) inline static {
 | 
|---|
| 162 |         int RT9( T ) { T t; return 3; }
 | 
|---|
| 163 | }
 | 
|---|
| 164 | 
 | 
|---|
| 165 | forall( T | { T ?+?( T, T ); } ) {
 | 
|---|
| 166 |         forall( S | { T ?+?( T, S ); } ) {
 | 
|---|
| 167 |                 forall( W ) T bar( T t, S s ) { return t + s; }
 | 
|---|
| 168 |                 forall( W | { W ?+?( T, W ); } ) W baz( T t, S s, W w ) { return t + s + w; }
 | 
|---|
| 169 |                 struct W { T t; } (int,int) ww;
 | 
|---|
| 170 |                 struct P pp;
 | 
|---|
| 171 |         }
 | 
|---|
| 172 | }
 | 
|---|
| 173 | 
 | 
|---|
| 174 | forall( T | { T ?+?( T, T ); } ) forall( S | { T ?+?( T, S ); } )
 | 
|---|
| 175 | struct XW { T t; };
 | 
|---|
| 176 | XW(int,int) xww;
 | 
|---|
| 177 | 
 | 
|---|
| 178 | forall( T ) struct S { T t; } (int) x, y, z;
 | 
|---|
| 179 | forall( T ) struct { T t; } (int) a, b, c;
 | 
|---|
| 180 | 
 | 
|---|
| 181 | forall( T ) static forall( S ) {
 | 
|---|
| 182 |     forall( X ) struct U {
 | 
|---|
| 183 |                 T x;
 | 
|---|
| 184 |     };
 | 
|---|
| 185 | }
 | 
|---|
| 186 | 
 | 
|---|
| 187 | forall( T ) {
 | 
|---|
| 188 |         extern "C" {
 | 
|---|
| 189 |                 struct SS { T t; };
 | 
|---|
| 190 |                 T foo( T ) {}
 | 
|---|
| 191 |         }
 | 
|---|
| 192 | }
 | 
|---|
| 193 | 
 | 
|---|
| 194 | SS(int) s;
 | 
|---|
| 195 | W(int,int) w;
 | 
|---|
| 196 | 
 | 
|---|
| 197 | int jane() {
 | 
|---|
| 198 | //      int j = bar( 3, 4 );
 | 
|---|
| 199 |         int k = baz( 3, 4, 5 );
 | 
|---|
| 200 |         int i = foo( 3 );
 | 
|---|
| 201 | }
 | 
|---|
| 202 | 
 | 
|---|
| 203 | forall( T ) void check_otype() {
 | 
|---|
| 204 |         T & tr = *0p;
 | 
|---|
| 205 |         T * tp = 0p;
 | 
|---|
| 206 | 
 | 
|---|
| 207 |         &tr += 1;
 | 
|---|
| 208 |         tp += 1;
 | 
|---|
| 209 |         T & tx = tp[1];
 | 
|---|
| 210 | 
 | 
|---|
| 211 |         T t;
 | 
|---|
| 212 |         T t2 = t;
 | 
|---|
| 213 | }
 | 
|---|
| 214 | 
 | 
|---|
| 215 | forall( T * ) void check_dstype() {
 | 
|---|
| 216 |         T & tr = *0p;
 | 
|---|
| 217 |         T * tp = 0p;
 | 
|---|
| 218 | 
 | 
|---|
| 219 |         &tr += 1;
 | 
|---|
| 220 |         tp += 1;
 | 
|---|
| 221 |         T & tx = tp[1];
 | 
|---|
| 222 | }
 | 
|---|
| 223 | 
 | 
|---|
| 224 | forall( T & ) void check_dtype() {
 | 
|---|
| 225 |         T & tr = *0p;
 | 
|---|
| 226 |         T * tp = 0p;
 | 
|---|
| 227 | }
 | 
|---|
| 228 | 
 | 
|---|
| 229 | //otype T1 | { void xxx( T1 ); };
 | 
|---|
| 230 | 
 | 
|---|
| 231 | // otype T1 | { void ?{}( T1 &, zero_t ); T1 ?+?(T1, T1); T1 ?++(T1); [T1] ?+=?(T1,T1); },
 | 
|---|
| 232 | //      T2(otype P1, otype P2 ),
 | 
|---|
| 233 | //      T3 | sumable(T3);
 | 
|---|
| 234 | 
 | 
|---|
| 235 | //otype T2(otype P1, otype P2) | sumable( T2( P1,P2 ) ) = struct { P1 i; P2 j; };
 | 
|---|
| 236 | 
 | 
|---|
| 237 | // T2(int, int) w1;
 | 
|---|
| 238 | // typedef T2(int, int) w2;
 | 
|---|
| 239 | // w2 g2;
 | 
|---|
| 240 | // otype w3 = T2(int, int);
 | 
|---|
| 241 | // w3 g3;
 | 
|---|
| 242 | 
 | 
|---|
| 243 | int main( void ) {
 | 
|---|
| 244 |     #pragma GCC warning "Compiled"                      // force non-empty .expect file, NO TABS!!!
 | 
|---|
| 245 | }
 | 
|---|
| 246 | 
 | 
|---|
| 247 | // Local Variables: //
 | 
|---|
| 248 | // tab-width: 4 //
 | 
|---|
| 249 | // compile-command: "cfa forall.cfa" //
 | 
|---|
| 250 | // End: //
 | 
|---|