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
|
/* Global definitions of limits and constants */
#define MAX_LINE_LENGTH 1024
#define MAX_LINE_TOKENS 1024
typedef enum
{
ArrayTag,
FunctionTag,
HybridTag,
MonadicOpTag,
DyadicOpTag,
BoundFunctionTag, /* Function with left arg bound */
LParTag,
RParTag,
LCurlTag,
RCurlTag,
LBracketTag,
RBracketTag,
ArrowTag,
AssignmentTag,
NameTag,
} datumTag;
typedef enum
{
AtypeInt,
AtypeArray,
} arrayDataType;
/* Data types */
typedef struct Array Array;
typedef struct Statement Statement;
typedef struct Function Function;
typedef struct Datum Datum;
typedef struct Symbol Symbol;
typedef struct Symtab Symtab;
struct Array
{
arrayDataType type;
int rank;
int *shape;
int size;
int stranded; /* 1 if build directly by stranding */
union {
char *rawdata;
vlong *intdata;
Array **arraydata;
};
};
struct Statement
{
int ntoks;
Datum *toks;
Statement *next;
};
struct Function
{
union {
int code;
Statement *dfn;
};
Array *left;
};
struct Datum
{
datumTag tag;
union {
Array *array;
Statement stmt;
Function func;
Symbol *symbol;
};
};
struct Symbol
{
int undefined;
Rune *name;
Datum value;
};
struct Symtab
{
int nsyms;
Symbol **syms;
};
typedef Array* (*fnmonad)(Array*);
typedef Array* (*fndyad)(Array*, Array*);
/* Function prototypes for the different source files */
/* print.c */
Rune *ppdatum(Datum);
Rune *ppdatums(Datum *, int);
Rune *pparray(Array *);
/* lexer.c */
Statement *lexline(Rune *, Symtab *);
/* array.c */
Array *mkarray(int, int, int);
Array *mkscalarint(vlong);
Array *duparray(Array *);
int simplearray(Array *);
int simplescalar(Array *);
/* eval.c */
Datum *eval(Statement *);
/* symbol.c */
Symbol *getsym(Symtab *, Rune *);
Symtab *newsymtab(void);
vlong globalIO(void);
/* Monadic functions from functions.h */
Array *fnSame(Array *);
Array *fnTally(Array *);
Array *fnEnclose(Array *);
Array *fnNest(Array *);
Array *fnIndexGenerator(Array *);
Array *fnRavel(Array *);
Array *fnShape(Array *);
/* Dyadic functions from functions.h */
Array *fnLeft(Array *, Array *);
Array *fnRight(Array *, Array *);
Array *fnCatenateFirst(Array *, Array *);
Array *fnReshape(Array *, Array *);
/* Global variables */
extern int traceeval; /* eval.c */
extern Rune *errormsg; /* eval.c */
extern int datasizes[]; /* array.c */
extern Rune primfuncnames[]; /* function.c */
extern Rune primmonopnames[]; /* lexer.c */
extern Rune primdyadopnames[]; /* lexer.c */
extern Rune primhybridnames[]; /* lexer.c */
extern fnmonad monadfunctiondefs[]; /* function.c */
extern fndyad dyadfunctiondefs[]; /* function.c */
extern Symtab *globalsymtab; /* symbol.c */
extern Symtab *currentsymtab; /* symbol.c */
|