forked from gap-system/gap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexprs.h
145 lines (121 loc) · 5.24 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
/****************************************************************************
**
*W exprs.h GAP source Martin Schönert
**
**
*Y Copyright (C) 1996, Lehrstuhl D für Mathematik, RWTH Aachen, Germany
*Y (C) 1998 School Math and Comp. Sci., University of St Andrews, Scotland
*Y Copyright (C) 2002 The GAP Group
**
** 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
/****************************************************************************
**
*F OBJ_REFLVAR(<expr>) . . . . . . . . . . . value of a reference to a local
**
** 'OBJ_REFLVAR' returns the value of the reference to a local variable
** <expr>.
*/
#define OBJ_REFLVAR(expr) \
(OBJ_LVAR( LVAR_REFLVAR( expr ) ) != 0 ? \
OBJ_LVAR( LVAR_REFLVAR( expr ) ) : \
ObjLVar( LVAR_REFLVAR( expr ) ) )
/****************************************************************************
**
*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.
*/
#define OBJ_INTEXPR(expr) ((Obj)(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.
*/
#define EVAL_EXPR(expr) \
(IS_REFLVAR(expr) ? OBJ_REFLVAR(expr) : \
(IS_INTEXPR(expr) ? OBJ_INTEXPR(expr) : \
(*EvalExprFuncs[ TNUM_STAT(expr) ])( 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_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').
*/
#define EVAL_BOOL_EXPR(expr) \
( (*EvalBoolFuncs[ TNUM_EXPR( 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 PrintExpr(<expr>) . . . . . . . . . . . . . . . . . . print an expression
**
** 'PrintExpr' prints the expression <expr>.
*/
extern void PrintExpr (
Expr expr );
extern 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 package * * * * * * * * * * * * * * *
*/
/****************************************************************************
**
*F InitInfoExprs() . . . . . . . . . . . . . . . . . table of init functions
*/
StructInitInfo * InitInfoExprs ( void );
#endif // GAP_EXPRS_H