forked from wrf-model/WRF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsym.h
91 lines (72 loc) · 3.54 KB
/
sym.h
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
/***********************************************************************
COPYRIGHT
The following is a notice of limited availability of the code and
Government license and disclaimer which must be included in the
prologue of the code and in all source listings of the code.
Copyright notice
(c) 1977 University of Chicago
Permission is hereby granted to use, reproduce, prepare
derivative works, and to redistribute to others at no charge. If
you distribute a copy or copies of the Software, or you modify a
copy or copies of the Software or any portion of it, thus forming
a work based on the Software and make and/or distribute copies of
such work, you must meet the following conditions:
a) If you make a copy of the Software (modified or verbatim)
it must include the copyright notice and Government
license and disclaimer.
b) You must cause the modified Software to carry prominent
notices stating that you changed specified portions of
the Software.
This software was authored by:
Argonne National Laboratory
J. Michalakes: (630) 252-6646; email: [email protected]
Mathematics and Computer Science Division
Argonne National Laboratory, Argonne, IL 60439
ARGONNE NATIONAL LABORATORY (ANL), WITH FACILITIES IN THE STATES
OF ILLINOIS AND IDAHO, IS OWNED BY THE UNITED STATES GOVERNMENT,
AND OPERATED BY THE UNIVERSITY OF CHICAGO UNDER PROVISION OF A
CONTRACT WITH THE DEPARTMENT OF ENERGY.
GOVERNMENT LICENSE AND DISCLAIMER
This computer code material was prepared, in part, as an account
of work sponsored by an agency of the United States Government.
The Government is granted for itself and others acting on its
behalf a paid-up, nonexclusive, irrevocable worldwide license in
this data to reproduce, prepare derivative works, distribute
copies to the public, perform publicly and display publicly, and
to permit others to do so. NEITHER THE UNITED STATES GOVERNMENT
NOR ANY AGENCY THEREOF, NOR THE UNIVERSITY OF CHICAGO, NOR ANY OF
THEIR EMPLOYEES, MAKES ANY WARRANTY, EXPRESS OR IMPLIED, OR
ASSUMES ANY LEGAL LIABILITY OR RESPONSIBILITY FOR THE ACCURACY,
COMPLETENESS, OR USEFULNESS OF ANY INFORMATION, APPARATUS,
PRODUCT, OR PROCESS DISCLOSED, OR REPRESENTS THAT ITS USE WOULD
NOT INFRINGE PRIVATELY OWNED RIGHTS.
***************************************************************************/
#ifndef SYM_H
#define SYM_H
/* file: sym.h
Header info for symbol table module.
*/
typedef struct sym_node * sym_nodeptr ;
struct sym_node
{
char * name ; /* lexeme */
sym_nodeptr next ; /* pointer to next node in symbol table */
/* fields that are associated with dimension declaration constants */
unsigned char dim ;
/* fields that are associated with arrays */
int ndims ;
int MDEX ; /* which index is the M dimension */
int NDEX ; /* which index is the N dimension */
unsigned char dims[7] ;
char dimname[7][64] ;
/* name of temporary variable associated with string. variable */
char varx[32] ;
/* fields associated with integer scalar variables */
unsigned long assigned ; /* pointer to assignment statement */
unsigned long thisif ;
int iflev ;
int marked ; /* general purpose marker */
} ;
sym_nodeptr sym_add() ;
sym_nodeptr sym_get() ;
#endif