-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTracer.f
executable file
·160 lines (128 loc) · 4.89 KB
/
Tracer.f
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
\ A high level Forth-tracer for Win32Forth ( ITC/STC)
\ Ported from Gem-Forth by Jos v.d.Ven
\ Still to solve:
\ - floating point numbers
\ - IO redirection when used in the future.
anew -Tracer.f cr .( Loading Tracer.f )
variable tron? \ Tracer on/off/abort
variable #traces \ Number of traces to see or not
defined n>bfa nip not [IF] \ Assumes the STC version of Win32Forth
: immediate? ( cfa - flag ) drop true ; \ Solved by >ct-exec
[THEN]
defined n>bfa nip [IF] \ Assumes the ITC version of Win32Forth
: 1+! ( adr - ) 1 swap +! ;
: immediate? ( cfa - flag ) >name n>bfa c@ 128 and ;
: >ct-exec ( cfa - ) execute ;
[THEN]
create accepted$ maxstring allot
: accept$ ( -- adr count ) \ Accept a line of input from the user
accepted$ dup maxstring accept ;
: input ( - n flag ) accept$ (number?) nip ; \ User input for a number
: (tr)
tron? @
if #traces @ 0<
if #traces 1+! #traces @ 0< \ No trace-output when #traces is < 0
if drop exit \ Drop the CFA indicator
then
else -1 #traces +!
then
tab ." \ " >name count type
\in-system-ok tab ." - " .s tab cr
#traces @ 0= \ Ask a new value when #traces = 0
if ." T>> " input over and
if #traces !
else abort \ 0 aborts tracing
then
then
else drop \ Drop the CFA indicator
then ;
: tron ( - ) cr ." TRON " 1 tron? ! ; \ Tracer ON
: troff ( - )
\in-system-ok cr ." TROFF " ." - " .s cr 0 tron? ! ; \ Tracer OFF
: tracer ( - ) \ Activates the tracer
cr .date space .time ." . Used Win32Forth:" .version cr \ To show what was used.
tron 3 spaces ." TRACING T>> " input over and
if cr #traces !
else abort
then ;
create ?; ," ;"
: FindNextWord ( - str ) \ From the sourcefile
begin bl word dup count 0=
while 2drop refill drop
repeat drop
;
: .Unnest ." ;" ; \ End of word marker
\in-system-ok : [Compile]Literal ( n - ) [compile] literal ;
\ Trace compiles the word to be executed, followed by its CFA as a literal and (tr)
\ in the definition after the word trace.
: trace ( - )
compile tracer \ Activates the tracer in run-time
begin FindNextWord dup count ?; count compare 0<>
while find \ Word defined?
if dup immediate?
if dup>r >ct-exec r> \ execute immediate words on a clean stack
else dup compile, \ compile word to execute
then
else count (number?) drop d>s [Compile]Literal \ Compile numbers
['] Literal \ To compile LITERAL as an indicator for (tr)
then
[Compile]Literal \ Compile CFA as literal as an indicator for (tr)
compile (tr) \ Compile (tr)
repeat drop
compile .Unnest \ Compile an extra indication at the end.
['] .Unnest [Compile]Literal
compile (tr)
['] ; execute \ Compiles ; and resumes normal compilation
; immediate
\s \ Test section:
((
: test trace do i . loop ;
\ see test
3 0 test abort ))
: demo-tracer ( - )
cr cr
." Enter the number trace points you like to see after the T>>." cr
." Negative input skips the number of trace points. 0 aborts." cr
trace troff
." Put trace in the definition to activate the tracer." cr
." Troff sets the tracer off, tron puts it on." cr
." i/o executed stack " cr
." | | |" cr
." \|/ \|/ \|/" cr
tron
3 0
do i .
loop
cr
." End of demo."
;
demo-tracer abort
\s
Enter the number trace points you like to see after the T>>.
Negative input skips the number of trace points. 0 aborts.
17-5-2007 14:55:24. Used Win32Forth:
Version: 6.11.10 Build: 27
TRON TRACING T>> 99
TROFF - empty
Put trace in the definition to activate the tracer.
Troff sets the tracer off, tron puts it on.
i/o executed stack
| | |
\|/ \|/ \|/
TRON \ TRON - empty
\ LITERAL - [1] 3
\ 0 - [2] 3 0
\ DO - empty
\ I - [1] 0
0 \ . - empty
\ DO - empty
\ I - [1] 1
1 \ . - empty
\ DO - empty
\ I - [1] 2
2 \ . - empty
\ LOOP - empty
\ CR - empty
End of demo. \ ." - empty
; \ .UNNEST - empty
\s