forked from wrf-model/WRF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeftab.c
328 lines (309 loc) · 10.9 KB
/
deftab.c
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
#include <stdio.h>
#include <string.h>
#define INLINELEN (4*8192)
#define VARLEN 128
#define MAXARGS (4*8192)
#define DIR "tools/code_dbase"
char inln[INLINELEN] ;
#define COMPARE(A,B) ( ! strncmp ( A , B , strlen( B ) ) )
#define COMPARE2(A,B) ( ! strcmp ( A , B ) )
char module_name[INLINELEN] ;
char subprogram_name[INLINELEN] ;
char in_a[INLINELEN] ;
char arg[MAXARGS][VARLEN] ;
char type[MAXARGS][VARLEN] ;
char from[MAXARGS][VARLEN] ;
char intent[MAXARGS][VARLEN] ;
char dimensions[MAXARGS][VARLEN] ;
char typedefs[MAXARGS][INLINELEN] ;
int ntypedefs = 0 ;
char tmp[VARLEN] ;
char infname[VARLEN] ;
int nargs ;
char function_type[VARLEN] ;
int contained ;
char *ignore = "rsl" ;
int protex_state ;
set_attributes( char * inln, int nargs, char * typ )
{
int i, j ;
char *p, tmp[VARLEN] ;
for ( i = 0 ; i < nargs ; i++ )
{
if ( contains_tok ( inln , arg[i], " ()," ) ) {
strcpy( type[i], typ ) ;
if (( j = contains_tok ( inln, "intent", " (),:" ))) {
get_token_n ( inln , " (),:", j+1, intent[i] ) ;
}
else
{
strcpy(intent[i],"inout") ;
}
strcpy( dimensions[i], "" ) ;
if ( find_str ( inln, "dimension", &p )) {
j = 0 ;
remove_whitespace( p ) ;
while ( get_arg_n ( p , j, tmp ) ) {
strcat( dimensions[i], tmp ) ;
strcat( dimensions[i], "," ) ;
j++ ;
}
if (( p = rindex( dimensions[i], ',' )) != NULL ) *p = '\0' ;
}
}
}
}
handle_subprogram ( FILE **fp, FILE *ifp, int *nargs, char * sname , char * inln , int tokpos )
{
char fname[VARLEN] ;
int i ;
if ( ! contained ) {
sprintf(fname,"%s/%s",DIR, sname ) ;
if ((*fp = fopen( fname , "w" )) == NULL ) {
fprintf(stderr,"cannot open %s for writing\n",fname) ; exit(1) ;
}
fprintf(*fp,"sourcefile %s\n",infname ) ;
if ( COMPARE( in_a, "function" ) ) {
fprintf(*fp,"subprogram %s %s\n",in_a, function_type ) ;
} else {
fprintf(*fp,"subprogram %s\n",in_a ) ;
}
for ( i = 0 ; get_token_n ( inln , " (,)", i+tokpos, arg[i] ) ; i++ ) { strcpy( from[i], "dummyarg" ) ; }
*nargs = i ;
ntypedefs = 0 ;
fprintf(*fp,"nargs %d\n", *nargs) ;
}
contained++ ;
}
main( int argc, char * argv[] )
{
FILE *infl ;
FILE *fp, *fpcalls, *fpdescription ;
int i, j ;
char callee[VARLEN] ;
char fname[VARLEN] ;
char description_name[VARLEN] ;
char mess[INLINELEN] ;
int in_interface ;
int looking_scalar_derefs ;
strcpy( module_name, "" ) ;
strcpy( subprogram_name, "" ) ;
strcpy( infname, "" ) ;
infl = stdin ;
if ( argc == 2 ) {
strcpy( infname, argv[1] ) ;
}
sprintf(fname,"%s/calls",DIR ) ;
if ( ( fpcalls = fopen( fname , "a" )) == NULL )
{
fprintf(stderr,"cannot open %s\n",fname) ;
exit(1) ;
}
in_interface = 0 ;
looking_scalar_derefs = 0 ;
contained = 0 ;
protex_state = 0 ;
fpdescription = NULL ;
while( fgets( inln, INLINELEN, infl ) != NULL )
{
if ( protex_state > 0 ) { /* in a description */
if ( contains_str ( inln, "</DESCRIPTION>" ) ) {
protex_state = 0 ;
if ( fpdescription != NULL ) fclose( fpdescription ) ;
fpdescription = NULL ;
continue ;
}
if ( fpdescription != NULL ) {
remove_chars( inln, "!", ' ' ) ;
if ( empty( inln ) ) {
fprintf(fpdescription,"<p>\n") ;
} else {
fprintf(fpdescription,"%s",inln) ;
}
continue ;
}
}
remove_nl ( inln ) ;
lower_case_str ( inln ) ;
if ( looking_scalar_derefs ) {
if ( COMPARE ( inln, "grid%" ) ) {
get_token_n ( inln , " ", 2, arg[nargs] ) ;
strcpy( from[nargs] , "registry" ) ;
nargs++ ;
}
}
if ( in_interface ) {
if ( COMPARE( inln , "end interface" ) ) in_interface = 0 ;
/* ignore interface blocks */
continue ;
}
if ( COMPARE( inln , "interface" ) ) {
in_interface = 1 ;
} else if ( COMPARE( inln , "module " ) ) {
get_token_n ( inln , " (,", 1, module_name ) ;
} else if ( COMPARE( inln , "end module" ) ) {
strcpy( module_name, "" ) ;
} else if ( COMPARE( inln , "program " ) ) {
strcpy(in_a, "program") ;
get_token_n ( inln , " (,", 1, subprogram_name ) ;
handle_subprogram ( &fp, infl, &nargs, subprogram_name, inln, 2 ) ;
} else if ( COMPARE( inln , "subroutine " ) ) {
strcpy(in_a, "subroutine") ;
get_token_n ( inln , " (,", 1, subprogram_name ) ;
handle_subprogram ( &fp, infl, &nargs, subprogram_name, inln, 2 ) ;
} else if ( COMPARE( inln , "function " ) ) {
strcpy(in_a, "function") ;
get_token_n ( inln , " (,", 1, subprogram_name ) ;
handle_subprogram ( &fp, infl, &nargs, subprogram_name, inln, 2 ) ;
} else if ( COMPARE( inln , "recursive subroutine " ) ) {
strcpy(in_a, "recursive subroutine") ;
get_token_n ( inln , " (,", 2, subprogram_name ) ;
handle_subprogram ( &fp, infl, &nargs, subprogram_name, inln, 3 ) ;
} else if ( contains_str ( inln, "startofregistrygeneratedinclude" ) && contains_str ( inln, "i1_decl.inc" )) {
if ( strlen( subprogram_name ) > 0 ) {
fprintf(fp, "contains_i1_declarations\n" ) ;
}
} else if ( contains_str ( inln, "! begin scalar derefs" ) ) {
looking_scalar_derefs = 1 ;
} else if ( contains_str ( inln, "! end scalar derefs" ) ) {
looking_scalar_derefs = 0 ;
} else if ( contains_str ( inln, "<description>" ) && protex_state == 0 ) {
protex_state = 1 ;
sprintf(description_name,"%s/%s_descrip",DIR, subprogram_name ) ;
if ((fpdescription = fopen( description_name , "a" )) == NULL ) {
fprintf(stderr, "cannot open %s for writing\n", description_name ) ; exit(2) ;
}
protex_state = 2 ;
} else if ( contains_str ( inln, "</description>" ) ) {
protex_state = 0 ;
if ( fpdescription != NULL ) fclose( fpdescription ) ;
fpdescription = NULL ;
} else if ( COMPARE( inln , "use " ) ) {
if ( strlen( subprogram_name ) > 0 ) {
get_token_n ( inln , " ", 1, tmp ) ;
fprintf(fp, "use %s\n",tmp ) ;
}
} else if ( COMPARE( inln , "call " ) ) {
get_token_n ( inln , " (,", 1, callee ) ;
if ( ! contains_str( callee , ignore ) ) {
fprintf(fpcalls,"%s calls %s\n",subprogram_name, callee ) ;
fprintf(fp,"%s calls %s\n",subprogram_name, callee ) ;
for ( i = 0 ; get_arg_n ( inln , i, tmp ) ; i++ )
{
/* check to see if this is a dummy arg and print that info too */
strcpy(mess,"") ;
for ( j = 0 ; j < nargs ; j++ )
{
if ( !strcmp( tmp, arg[j] ) )
{
sprintf( mess, " ( dummy arg %d, type %s ) ",j,type[j] ) ;
break ;
}
}
fprintf(fp," actarg %d of callee %s is %s%s\n",i,callee, tmp,mess) ;
}
}
} else if ( COMPARE( inln , "integer " ) || COMPARE( inln , "real " ) || COMPARE( inln , "logical " ) ) {
/* look for function */
get_token_n ( inln , " ", 0, function_type ) ;
get_token_n ( inln , " ,", 1, tmp ) ;
if ( COMPARE( tmp, "function" ) )
{
strcpy(in_a,"function") ;
get_token_n ( inln, " (", 2, subprogram_name ) ;
handle_subprogram ( &fp, infl, &nargs, subprogram_name, inln, 3 ) ;
}
else if ( strlen( subprogram_name ) > 0 && nargs > 0 ) {
strcpy( typedefs[ntypedefs++], inln ) ;
}
} else if ( COMPARE( inln , "type " ) ) {
if ( strlen( subprogram_name ) > 0 && nargs > 0 ) {
strcpy( typedefs[ntypedefs++], inln ) ;
}
} else if ( COMPARE( inln , "end subroutine" ) ) {
contained-- ;
if ( contained == 0 ) {
fprintf(fp,"Module: %s , Subroutine: %s \n",module_name, subprogram_name ) ;
for ( i = 0 ; i < ntypedefs ; i++ )
{
if ( COMPARE( typedefs[i], "type" ) ) {
get_token_n ( typedefs[i], ",", 0, tmp ) ;
remove_whitespace( tmp ) ;
} else {
get_token_n ( typedefs[i], " ,", 0, tmp ) ;
}
set_attributes( typedefs[i], nargs, tmp ) ;
}
for ( i = 0 ; i < nargs ; i++ )
{
fprintf(fp,"arg %d name %s type %s intent %s from %s dimensions %s\n", i, arg[i], type[i], intent[i], from[i], dimensions[i] ) ;
}
fclose(fp) ; fp = NULL ;
strcpy( in_a, "" ) ;
strcpy( subprogram_name, "" ) ;
}
} else if ( COMPARE( inln , "end function" ) ) {
contained-- ;
if ( contained == 0 ) {
fprintf(fp,"Module: %s , Subroutine: %s \n",module_name, subprogram_name ) ;
for ( i = 0 ; i < ntypedefs ; i++ )
{
get_token_n ( typedefs[i], " ,", 0, tmp ) ;
set_attributes( typedefs[i], nargs, tmp ) ;
}
for ( i = 0 ; i < nargs ; i++ )
{
fprintf(fp,"arg %d name %s type %s intent %s from %s dimensions %s\n", i, arg[i], type[i], intent[i], from[i], dimensions[i] ) ;
}
fclose(fp) ; fp = NULL ;
strcpy( in_a, "" ) ;
strcpy( subprogram_name, "" ) ;
}
} else if ( COMPARE( inln , "end program" ) ) {
contained-- ;
if ( contained == 0 ) {
fprintf(fp,"Module: %s , Subroutine: %s \n",module_name, subprogram_name ) ;
for ( i = 0 ; i < ntypedefs ; i++ )
{
get_token_n ( typedefs[i], " ,", 0, tmp ) ;
set_attributes( typedefs[i], nargs, tmp ) ;
}
for ( i = 0 ; i < nargs ; i++ )
{
fprintf(fp,"arg %d name %s type %s intent %s from %s dimensions %s\n", i, arg[i], type[i], intent[i], from[i], dimensions[i] ) ;
}
fclose(fp) ; fp = NULL ;
strcpy( in_a, "" ) ;
strcpy( subprogram_name, "" ) ;
}
#if 1
} else if ( COMPARE( inln , "end" ) ) { /* bare end -- take a chance and hope it's a subroutine */
remove_whitespace( inln ) ; /* make sure it's not an enddo, endif, etc */
if ( COMPARE2 (inln , "end" ) ) {
contained-- ;
if ( contained == 0 ) {
fprintf(fp,"Module: %s , Subroutine: %s \n",module_name, subprogram_name ) ;
for ( i = 0 ; i < ntypedefs ; i++ )
{
if ( COMPARE( typedefs[i], "type" ) ) {
get_token_n ( typedefs[i], ",", 0, tmp ) ;
remove_whitespace( tmp ) ;
} else {
get_token_n ( typedefs[i], " ,", 0, tmp ) ;
}
set_attributes( typedefs[i], nargs, tmp ) ;
}
for ( i = 0 ; i < nargs ; i++ )
{
fprintf(fp,"arg %d name %s type %s intent %s from %s dimensions %s\n", i, arg[i], type[i], intent[i], from[i], dimensions[i] ) ;
}
fclose(fp) ; fp = NULL ;
strcpy( in_a, "" ) ;
strcpy( subprogram_name, "" ) ;
}
}
#endif
}
}
fclose( fpcalls ) ; fpcalls = NULL ;
}