Changes in / [633a642:7416d46a]
- Files:
-
- 2 added
- 3 deleted
- 7 edited
-
.gitignore (modified) (1 diff)
-
doc/papers/concurrency/.gitignore (modified) (1 diff)
-
doc/papers/concurrency/Makefile (deleted)
-
doc/papers/concurrency/build/bump_ver.sh (added)
-
doc/papers/concurrency/version (added)
-
doc/papers/general/Makefile (deleted)
-
doc/papers/general/evaluation/Makefile (deleted)
-
src/driver/cfa.cc (modified) (2 diffs)
-
src/tests/concurrent/examples/quickSort.c (modified) (2 diffs)
-
src/tests/functions.c (modified) (11 diffs)
-
src/tests/identFuncDeclarator.c (modified) (5 diffs)
-
src/tests/identParamDeclarator.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r633a642 r7416d46a 9 9 config.log 10 10 stamp-h1 11 /Makefile 12 src/**/Makefile 11 Makefile 12 driver/Makefile 13 libcfa/Makefile 14 src/Makefile 13 15 /version 14 16 -
doc/papers/concurrency/.gitignore
r633a642 r7416d46a 1 build/* 1 build/*.aux 2 build/*.acn 3 build/*.acr 4 build/*.alg 5 build/*.bbl 6 build/*.blg 7 build/*.brf 8 build/*.dvi 9 build/*.glg 10 build/*.glo 11 build/*.gls 12 build/*.idx 13 build/*.ind 14 build/*.ist 15 build/*.lof 16 build/*.log 17 build/*.lol 18 build/*.lot 19 build/*.out 20 build/*.ps 21 build/*.pstex 22 build/*.pstex_t 23 build/*.tex 24 build/*.toc 2 25 *.pdf 3 *.ps 26 *.png 27 figures/*.tex 28 29 examples -
src/driver/cfa.cc
r633a642 r7416d46a 10 10 // Created On : Tue Aug 20 13:44:49 2002 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Jan 30 15:46:15 201813 // Update Count : 16 112 // Last Modified On : Tue Oct 31 11:40:44 2017 13 // Update Count : 160 14 14 // 15 15 … … 358 358 args[nargs] = "-D__int8_t_defined"; // prevent gcc type-size attributes 359 359 nargs += 1; 360 args[nargs] = "-D__NO_STRING_INLINES"; // prevent gcc strcmp unrolling361 nargs += 1;362 360 args[nargs] = ( *new string( string("-B") + Bprefix + "/" ) ).c_str(); 363 361 nargs += 1; -
src/tests/concurrent/examples/quickSort.c
r633a642 r7416d46a 9 9 // Created On : Wed Dec 6 12:15:52 2017 10 10 // Last Modified By : Peter A. Buhr 11 // Last Modified On : Tue Jan 30 15:58:58201812 // Update Count : 1 6211 // Last Modified On : Mon Jan 29 08:41:37 2018 12 // Update Count : 155 13 13 // 14 14 … … 100 100 if ( argc != 1 ) { // do not use defaults 101 101 if ( argc < 2 || argc > 4 ) usage( argv ); // wrong number of options 102 if ( strcmp( argv[1], "-t" ) == 0 ) { // timing ? 102 // if ( strcmp( argv[1], "-t" ) == 0 ) { // timing ? 103 if ( argv[1][0] == '-' && argv[1][1] == 't' ) { // timing ? 103 104 &unsortedfile = (ifstream *)0; // no input 104 105 choose ( argc ) { -
src/tests/functions.c
r633a642 r7416d46a 10 10 // Created On : Wed Aug 17 08:39:58 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Jan 17 22:44:12 201813 // Update Count : 1 212 // Last Modified On : Mon Nov 27 18:08:54 2017 13 // Update Count : 11 14 14 // 15 15 … … 25 25 void g(void) 26 26 ) { 27 (* g)();27 (*g)(); 28 28 g(); 29 29 g = h; … … 32 32 int f1() {} 33 33 int (f2()) {} 34 int (* f3())() {}35 int * ((f4())) {}36 int ((* f5()))() {}37 int * f6() {}38 int * (f7)() {}39 int ** f8() {}40 int * const * (f9)() {}41 int (* f10())[] {}42 int (* f11())[][3] {}43 int ((* f12())[])[3] {}34 int (*f3())() {} 35 int *((f4())) {} 36 int ((*f5()))() {} 37 int *f6() {} 38 int *(f7)() {} 39 int **f8() {} 40 int * const *(f9)() {} 41 int (*f10())[] {} 42 int (*f11())[][3] {} 43 int ((*f12())[])[3] {} 44 44 45 45 // "implicit int" otype specifier (not ANSI) … … 50 50 extern const fII4( int i ) {} 51 51 52 * fII5() {}53 const * fII6() {}54 const long * fII7() {}55 static const long * fII8() {}56 const static long * fII9() {}52 *fII5() {} 53 const *fII6() {} 54 const long *fII7() {} 55 static const long *fII8() {} 56 const static long *fII9() {} 57 57 58 58 // K&R function definitions … … 117 117 [int](int) 118 118 ) { 119 int (* (*pc)[][10])[][3];119 int (*(*pc)[][10])[][3]; 120 120 * [][10] * [][3] int p; 121 121 * [] * [int](int) p; 122 122 } 123 123 124 static const int * f1() {}124 static const int *f1() {} 125 125 static [ const int ] f2() {} 126 126 static inline [ const * int ] f3() {} … … 133 133 int (), 134 134 135 int * (),136 int ** (),137 int * const * (),135 int *(), 136 int **(), 137 int * const *(), 138 138 int * const * const (), 139 139 … … 141 141 int ([10]), 142 142 143 int * ([]),144 int * ([10]),145 int ** ([]),146 int ** ([10]),147 int * const * ([]),148 int * const * ([10]),143 int *([]), 144 int *([10]), 145 int **([]), 146 int **([10]), 147 int * const *([]), 148 int * const *([10]), 149 149 int * const * const ([]), 150 150 int * const * const ([10]) … … 154 154 int (), 155 155 156 int * (),157 int ** (),158 int * const * (),156 int *(), 157 int **(), 158 int * const *(), 159 159 int * const * const (), 160 160 … … 162 162 int ([10]), 163 163 164 int * ([]),165 int * ([10]),166 int ** ([]),167 int ** ([10]),168 int * const * ([]),169 int * const * ([10]),164 int *([]), 165 int *([10]), 166 int **([]), 167 int **([10]), 168 int * const *([]), 169 int * const *([10]), 170 170 int * const * const ([]), 171 171 int * const * const ([10]) … … 175 175 typedef int T; 176 176 177 int f( T (* f), T t ) {177 int f( T (*f), T t ) { 178 178 T (T); 179 179 } … … 184 184 //int (f[])() {} 185 185 //int f[]() {} 186 //int ((* f15())())[] {}186 //int ((*f15())())[] {} 187 187 188 188 // Local Variables: // -
src/tests/identFuncDeclarator.c
r633a642 r7416d46a 10 10 // Created On : Wed Aug 17 08:36:34 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Jan 17 22:39:13 201813 // Update Count : 212 // Last Modified On : Wed Aug 17 08:37:06 2016 13 // Update Count : 1 14 14 // 15 15 … … 18 18 int (f2); 19 19 20 int * f3;21 int ** f4;22 int * const * f5;20 int *f3; 21 int **f4; 22 int * const *f5; 23 23 int * const * const f6; 24 24 25 int * (f7);26 int ** (f8);27 int * const * (f9);25 int *(f7); 26 int **(f8); 27 int * const *(f9); 28 28 int * const * const (f10); 29 29 30 int (* f11);31 int (** f12);32 int (* const * f13);30 int (*f11); 31 int (**f12); 32 int (* const *f13); 33 33 int (* const * const f14); 34 34 … … 38 38 int (f18[10]); 39 39 40 int * f19[2];41 int * f20[10];42 int ** f21[2];43 int ** f22[10];44 int * const * f23[2];45 int * const * f24[10];40 int *f19[2]; 41 int *f20[10]; 42 int **f21[2]; 43 int **f22[10]; 44 int * const *f23[2]; 45 int * const *f24[10]; 46 46 int * const * const f25[2]; 47 47 int * const * const f26[10]; 48 48 49 int * (f27[2]);50 int * (f28[10]);51 int ** (f29[2]);52 int ** (f30[10]);53 int * const * (f31[2]);54 int * const * (f32[10]);49 int *(f27[2]); 50 int *(f28[10]); 51 int **(f29[2]); 52 int **(f30[10]); 53 int * const *(f31[2]); 54 int * const *(f32[10]); 55 55 int * const * const (f33[2]); 56 56 int * const * const (f34[10]); 57 57 58 int (* f35[2]);59 int (* f36[10]);60 int (** f37[2]);61 int (** f38[10]);62 int (* const * f39[2]);63 int (* const * f40[10]);58 int (*f35[2]); 59 int (*f36[10]); 60 int (**f37[2]); 61 int (**f38[10]); 62 int (* const *f39[2]); 63 int (* const *f40[10]); 64 64 int (* const * const f41[2]); 65 65 int (* const * const f42[10]); … … 72 72 int ((f48[3]))[3]; 73 73 74 int * f49[2][3];75 int * f50[3][3];76 int ** f51[2][3];77 int ** f52[3][3];78 int * const * f53[2][3];79 int * const * f54[3][3];74 int *f49[2][3]; 75 int *f50[3][3]; 76 int **f51[2][3]; 77 int **f52[3][3]; 78 int * const *f53[2][3]; 79 int * const *f54[3][3]; 80 80 int * const * const f55[2][3]; 81 81 int * const * const f56[3][3]; 82 82 83 int (* f57[2][3]);84 int (* f58[3][3]);85 int (** f59[2][3]);86 int (** f60[3][3]);87 int (* const * f61[2][3]);88 int (* const * f62[3][3]);83 int (*f57[2][3]); 84 int (*f58[3][3]); 85 int (**f59[2][3]); 86 int (**f60[3][3]); 87 int (* const *f61[2][3]); 88 int (* const *f62[3][3]); 89 89 int (* const * const f63[2][3]); 90 90 int (* const * const f64[3][3]); … … 93 93 int (f66)(int); 94 94 95 int * f67(int);96 int ** f68(int);97 int * const * f69(int);95 int *f67(int); 96 int **f68(int); 97 int * const *f69(int); 98 98 int * const * const f70(int); 99 99 100 int * (f71)(int);101 int ** (f72)(int);102 int * const * (f73)(int);100 int *(f71)(int); 101 int **(f72)(int); 102 int * const *(f73)(int); 103 103 int * const * const (f74)(int); 104 104 105 int (* f75)(int);106 int (** f76)(int);107 int (* const * f77)(int);105 int (*f75)(int); 106 int (**f76)(int); 107 int (* const *f77)(int); 108 108 int (* const * const f78)(int); 109 109 110 int (* (*f79)(int))();111 int (* (* const f80)(int))();110 int (*(*f79)(int))(); 111 int (*(* const f80)(int))(); 112 112 int (* const(* const f81)(int))(); 113 113 } -
src/tests/identParamDeclarator.c
r633a642 r7416d46a 10 10 // Created On : Wed Aug 17 08:37:56 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Jan 17 22:36:11 201813 // Update Count : 212 // Last Modified On : Wed Aug 17 08:38:42 2016 13 // Update Count : 1 14 14 // 15 15 16 int fred (16 int fred( 17 17 int f1, 18 18 int (f2), … … 157 157 ); 158 158 159 int main( int argc, char const *argv[] ) { // dummy main 159 //Dummy main 160 int main(int argc, char const *argv[]) 161 { 160 162 return 0; 161 163 }
Note:
See TracChangeset
for help on using the changeset viewer.