-
Notifications
You must be signed in to change notification settings - Fork 2
/
assert.fs
143 lines (113 loc) · 4.19 KB
/
assert.fs
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
\ assertions
\ Authors: Anton Ertl, Bernd Paysan, Gerald Wodni, Neal Crook
\ Copyright (C) 1995,1996,1997,1999,2002,2003,2007,2010,2012,2013,2014,2015,2016,2017,2018,2019,2022 Free Software Foundation, Inc.
\ This file is part of Gforth.
\ Gforth 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.
\ This program 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 this program. If not, see http://www.gnu.org/licenses/.
require source.fs
variable assert-level ( -- a-addr ) \ gforth
\G All assertions above this level are turned off.
1 assert-level !
: (end-assert) ( flag view -- ) \ gforth-internal
swap if
drop
else
.sourceview ." : failed assertion"
true abort" assertion failed" \ !! or use a new throw code?
then ;
: assert) ( -- )
compile-sourcepos POSTPONE (end-assert) ;
6 Constant assert-canary
: assertn ( n -- ) \ gforth assert-n
\ this is internal (it is not immediate)
assert-level @ >
if
POSTPONE (
else
['] assert) assert-canary
then ;
: ) ( -- ) \ gforth close-paren
\G End an assertion. Generic end, can be used for other similar purposes
assert-canary <> abort" unmatched assertion"
execute ; immediate
: assert0( ( -- ) \ gforth assert-zero
\G Important assertions that should always be turned on.
0 assertn ; immediate compile-only
: assert1( ( -- ) \ gforth assert-one
\G Normal assertions; turned on by default.
1 assertn ; immediate compile-only
: assert2( ( -- ) \ gforth assert-two
\G Debugging assertions.
2 assertn ; immediate compile-only
: assert3( ( -- ) \ gforth assert-three
\G Slow assertions that you may not want to turn on in normal debugging;
\G you would turn them on mainly for thorough checking.
3 assertn ; immediate compile-only
: assert( ( -- ) \ gforth
\G Equivalent to @code{assert1(}
POSTPONE assert1( ; immediate compile-only
\ conditionally executed debug code, not necessarily assertions
: debug-does> DOES>
]] Literal @ IF [[ [: postpone THEN ;] assert-canary ;
: debug: ( -- )
Create false , immediate debug-does> ;
: )else( ( -- ) 2>r postpone ELSE 2r> ; immediate compile-only
: +db ( "word" -- ) (') >body on ;
: -db ( "word" -- ) (') >body off ;
: ~db ( "word" -- ) (') >body dup @ 0= swap ! ;
Variable debug-eval
: +-? ( addr u -- flag )
0<> swap c@ ',' - abs 1 = and ; \ ',' is in the middle between '+' and '-'
: set-debug ( addr u -- )
debug-eval $!
s" db " debug-eval 1 $ins
s" (" debug-eval $+!
debug-eval $@ evaluate ;
: +debug ( -- )
BEGIN argc @ 1 > WHILE
1 arg +-? WHILE
1 arg set-debug
shift-args
REPEAT THEN ;
\ timing for profiling
debug: profile(
+db profile(
2Variable timer-tick
2Variable last-tick
: 2+! ( d addr -- ) dup >r 2@ d+ r> 2! ;
: +t ( addr -- )
ntime 2dup last-tick dup 2@ 2>r 2! 2r> d- rot 2+! ;
Variable timer-list
: timer: Create 0. , , here timer-list !@ ,
DOES> profile( +t )else( drop ) ;
: map-timer { xt -- }
timer-list BEGIN @ dup WHILE dup >r
cell- cell- xt execute r> REPEAT drop ;
: init-timer ( -- )
ntime last-tick 2! [: 0. rot 2! ;] map-timer ;
: .times ( -- )
[: dup body> >name name>string 1 /string
tuck type 8 swap - spaces ." : "
2@ d>f 1n f* f. cr ;] map-timer ;
: !time ( -- ) ntime timer-tick 2! ;
: @time ( -- delta-f ) ntime timer-tick 2@ d- d>f 1n f* ;
: (.time) ( delta-f -- )
fdup 1e f>= IF 13 9 0 f.rdp ." s " EXIT THEN 1000 fm*
fdup 1e f>= IF 10 6 0 f.rdp ." ms " EXIT THEN 1000 fm*
fdup 1e f>= IF 7 3 0 f.rdp ." µs " EXIT THEN 1000 fm*
f>s 3 .r ." ns " ;
: .time ( -- )
@time (.time) ;
: !@time ( -- delta-f ) ntime timer-tick 2@ 2over timer-tick 2! d- d>f 1n f* ;
: .!time ( -- ) !@time (.time) ;
\ words present in iforth and win32forth
synonym timer-reset !time ( -- )
synonym .elapsed .time ( -- )