forked from vermaseren/form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbugtool.c
76 lines (69 loc) · 2.13 KB
/
bugtool.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
/** @file bugtool.c
*
* Low level routines for debugging
*/
/* #[ License : */
/*
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
* for by FOM the Dutch physics granting agency and we would like to
* be able to track its scientific use to convince FOM of its value
* for the community.
*
* This file is part of FORM.
*
* FORM is free software: you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* FORM is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along
* with FORM. If not, see <http://www.gnu.org/licenses/>.
*/
/* #] License : */
/*
#[ Includes :
*/
#include "form3.h"
/*
#] Includes :
#[ ExprStatus :
*/
static UBYTE *statusexpr[] = {
(UBYTE *)"LOCALEXPRESSION"
,(UBYTE *)"SKIPLEXPRESSION"
,(UBYTE *)"DROPLEXPRESSION"
,(UBYTE *)"DROPPEDEXPRESSION"
,(UBYTE *)"GLOBALEXPRESSION"
,(UBYTE *)"SKIPGEXPRESSION"
,(UBYTE *)"DROPGEXPRESSION"
,(UBYTE *)"UNKNOWN"
,(UBYTE *)"STOREDEXPRESSION"
,(UBYTE *)"HIDDENLEXPRESSION"
,(UBYTE *)"HIDELEXPRESSION"
,(UBYTE *)"DROPHLEXPRESSION"
,(UBYTE *)"UNHIDELEXPRESSION"
,(UBYTE *)"HIDDENGEXPRESSION"
,(UBYTE *)"HIDEGEXPRESSION"
,(UBYTE *)"DROPHGEXPRESSION"
,(UBYTE *)"UNHIDEGEXPRESSION"
,(UBYTE *)"INTOHIDELEXPRESSION"
,(UBYTE *)"INTOHIDEGEXPRESSION"
};
void ExprStatus(EXPRESSIONS e)
{
MesPrint("Expression %s(%d) has status %s(%d,%d). Buffer: %d, Position: %15p",
AC.exprnames->namebuffer+e->name,(WORD)(e-Expressions),
statusexpr[e->status],e->status,e->hidelevel,
e->whichbuffer,&(e->onfile));
}
/*
#] ExprStatus :
*/