-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathexprs.h
168 lines (143 loc) · 5.25 KB
/
exprs.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
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
/****************************************************************************
**
** This file is part of GAP, a system for computational discrete algebra.
**
** Copyright of GAP belongs to its developers, whose names are too numerous
** to list here. Please refer to the COPYRIGHT file for details.
**
** SPDX-License-Identifier: GPL-2.0-or-later
**
** This file declares the functions of the expressions package.
**
** The expressions package is the part of the interpreter that evaluates
** expressions to their values and prints expressions.
*/
#ifndef GAP_EXPRS_H
#define GAP_EXPRS_H
#include "code.h"
#include "common.h"
#include "vars.h"
/****************************************************************************
**
*F OBJ_REF_LVAR(<expr>) . . . . . . . . . . .value of a reference to a local
**
** 'OBJ_REF_LVAR' returns the value of the reference to a local variable
** <expr>.
*/
EXPORT_INLINE Obj OBJ_REF_LVAR(Expr expr)
{
Int lvar = LVAR_REF_LVAR(expr);
if (OBJ_LVAR(lvar) != 0) {
return OBJ_LVAR(lvar);
}
else {
return ObjLVar(lvar);
}
}
/****************************************************************************
**
*F OBJ_INTEXPR(<expr>) . . . . . . . . . . . value of an integer expression
**
** 'OBJ_INTEXPR' returns the (immediate) integer value of the (immediate)
** integer expression <expr>.
**
** 'OBJ_INTEXPR(<expr>)' should be 'INTOBJ_INT(INT_INTEXPR(<expr>))', but
** for performance reasons we implement it as '(Obj)(<expr>)'. This is of
** course highly dependent on (immediate) integer expressions and
** (immediate) integer values having the same representation.
*/
EXPORT_INLINE Obj OBJ_INTEXPR(Expr expr)
{
GAP_ASSERT(IS_INTOBJ((Obj)expr));
return (Obj)expr;
}
/****************************************************************************
**
*V EvalExprFuncs[<type>] . . . . . evaluator for expressions of type <type>
**
** 'EvalExprFuncs' is the dispatch table that contains for every type of
** expressions a pointer to the evaluator for expressions of this type,
** i.e., the function that should be called to evaluate expressions of this
** type.
*/
extern Obj (*EvalExprFuncs[256])(Expr expr);
/****************************************************************************
**
*F EVAL_EXPR(<expr>) . . . . . . . . . . . . . . . . evaluate an expression
**
** 'EVAL_EXPR' evaluates the expression <expr>.
**
** 'EVAL_EXPR' returns the value of <expr>.
**
** 'EVAL_EXPR' causes the evaluation of <expr> by dispatching to the
** evaluator, i.e., to the function that evaluates expressions of the type
** of <expr>.
**
** Note that 'EVAL_EXPR' does not use 'TNUM_EXPR', since it also handles the
** two special cases that 'TNUM_EXPR' handles.
*/
EXPORT_INLINE Obj EVAL_EXPR(Expr expr)
{
if (IS_REF_LVAR(expr)) {
return OBJ_REF_LVAR(expr);
}
else if (IS_INTEXPR(expr)) {
return OBJ_INTEXPR(expr);
}
else {
return (*EvalExprFuncs[TNUM_STAT(expr)])(expr);
}
}
/****************************************************************************
**
*V EvalBoolFuncs[<type>] . . boolean evaluator for expression of type <type>
**
** 'EvalBoolFuncs' is the dispatch table that contains for every type of
** expression a pointer to a boolean evaluator for expressions of this type,
** i.e., a pointer to a function which is guaranteed to return a boolean
** value that should be called to evaluate expressions of this type.
*/
extern Obj (*EvalBoolFuncs[256])(Expr expr);
/****************************************************************************
**
*F EVAL_BOOL_EXPR(<expr>) . . . . evaluate an expression to a boolean value
**
** 'EVAL_BOOL_EXPR' evaluates the expression <expr> and checks that the
** value is either 'true' or 'false'. If the expression does not evaluate
** to 'true' or 'false', then an error is signalled.
**
** 'EVAL_BOOL_EXPR' returns the value of <expr> (which is either 'true' or
** 'false').
*/
EXPORT_INLINE Obj EVAL_BOOL_EXPR(Expr expr)
{
return (*EvalBoolFuncs[TNUM_EXPR(expr)])(expr);
}
/****************************************************************************
**
*F PrintExpr(<expr>) . . . . . . . . . . . . . . . . . . print an expression
**
** 'PrintExpr' prints the expression <expr>.
*/
void PrintExpr(Expr expr);
void PrintRecExpr1(Expr expr); /* needed for printing
function calls with options */
/****************************************************************************
**
*V PrintExprFuncs[<type>] . . printing function for objects of type <type>
**
** 'PrintExprFuncs' is the dispatching table that contains for every type of
** expressions a pointer to the printer for expressions of this type, i.e.,
** the function that should be called to print expressions of this type.
*/
extern void (* PrintExprFuncs [256] ) ( Expr expr );
/****************************************************************************
**
*F * * * * * * * * * * * * * initialize module * * * * * * * * * * * * * * *
*/
/****************************************************************************
**
*F InitInfoExprs() . . . . . . . . . . . . . . . . . table of init functions
*/
StructInitInfo * InitInfoExprs ( void );
#endif // GAP_EXPRS_H