xref: /titanic_50/usr/src/lib/efcode/fcode_test/misc.fth (revision 7c478bd95313f5f23a4c958a745db2134aa03244)
1*7c478bd9Sstevel@tonic-gate\ #ident	"%Z%%M%	%I%	%E% SMI"
2*7c478bd9Sstevel@tonic-gate\ purpose:
3*7c478bd9Sstevel@tonic-gate\ copyright: Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
4*7c478bd9Sstevel@tonic-gate\ copyright: Use is subject to license terms.
5*7c478bd9Sstevel@tonic-gate\ copyright:
6*7c478bd9Sstevel@tonic-gate\ copyright: CDDL HEADER START
7*7c478bd9Sstevel@tonic-gate\ copyright:
8*7c478bd9Sstevel@tonic-gate\ copyright: The contents of this file are subject to the terms of the
9*7c478bd9Sstevel@tonic-gate\ copyright: Common Development and Distribution License, Version 1.0 only
10*7c478bd9Sstevel@tonic-gate\ copyright: (the "License").  You may not use this file except in compliance
11*7c478bd9Sstevel@tonic-gate\ copyright: with the License.
12*7c478bd9Sstevel@tonic-gate\ copyright:
13*7c478bd9Sstevel@tonic-gate\ copyright: You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14*7c478bd9Sstevel@tonic-gate\ copyright: or http://www.opensolaris.org/os/licensing.
15*7c478bd9Sstevel@tonic-gate\ copyright: See the License for the specific language governing permissions
16*7c478bd9Sstevel@tonic-gate\ copyright: and limitations under the License.
17*7c478bd9Sstevel@tonic-gate\ copyright:
18*7c478bd9Sstevel@tonic-gate\ copyright: When distributing Covered Code, include this CDDL HEADER in each
19*7c478bd9Sstevel@tonic-gate\ copyright: file and include the License file at usr/src/OPENSOLARIS.LICENSE.
20*7c478bd9Sstevel@tonic-gate\ copyright: If applicable, add the following below this CDDL HEADER, with the
21*7c478bd9Sstevel@tonic-gate\ copyright: fields enclosed by brackets "[]" replaced with your own identifying
22*7c478bd9Sstevel@tonic-gate\ copyright: information: Portions Copyright [yyyy] [name of copyright owner]
23*7c478bd9Sstevel@tonic-gate\ copyright:
24*7c478bd9Sstevel@tonic-gate\ copyright: CDDL HEADER END
25*7c478bd9Sstevel@tonic-gate\ copyright:
26*7c478bd9Sstevel@tonic-gate
27*7c478bd9Sstevel@tonic-gate." Buffer: "
28*7c478bd9Sstevel@tonic-gate h# 20 buffer: my-unit-str
29*7c478bd9Sstevel@tonic-gate " abcd" my-unit-str pack drop
30*7c478bd9Sstevel@tonic-gate " pack.1" my-unit-str     c@ 4       = .passed?
31*7c478bd9Sstevel@tonic-gate " pack.2" my-unit-str 1 + c@ ascii a = .passed?
32*7c478bd9Sstevel@tonic-gate " pack.3" my-unit-str 2 + c@ ascii b = .passed?
33*7c478bd9Sstevel@tonic-gate " pack.4" my-unit-str 3 + c@ ascii c = .passed?
34*7c478bd9Sstevel@tonic-gate " pack.5" my-unit-str 4 + c@ ascii d = .passed?
35*7c478bd9Sstevel@tonic-gate " count.1" my-unit-str count " abcd" $= .passed?
36*7c478bd9Sstevel@tonic-gatecr
37*7c478bd9Sstevel@tonic-gate
38*7c478bd9Sstevel@tonic-gate." Formatting: "
39*7c478bd9Sstevel@tonic-gate " fmt.1" 1 h# 23 <# #s #>        " 2300000001" $= .passed?
40*7c478bd9Sstevel@tonic-gate " fmt.2" 1 h# 23 <# # # #>               " 01" $= .passed?
41*7c478bd9Sstevel@tonic-gate " fmt.3" h# 123  <# u#s u#>             " 123" $= .passed?
42*7c478bd9Sstevel@tonic-gate " fmt.4" h# 123  <# u# ascii X hold u# u#> " 2X3" $= .passed?
43*7c478bd9Sstevel@tonic-gate d# 10 base !
44*7c478bd9Sstevel@tonic-gate " fmt.5" d# -123 <# dup abs u#s swap sign u#> " -123" $= .passed?
45*7c478bd9Sstevel@tonic-gate " fmt.6" d# 123  <# dup abs u#s swap sign u#>  " 123" $= .passed?
46*7c478bd9Sstevel@tonic-gate " fmt.7" " -123" $number invert swap d# -123 = and .passed?
47*7c478bd9Sstevel@tonic-gate d# 16 base !
48*7c478bd9Sstevel@tonic-gate " fmt.8" " 32a" $number invert swap h# 32a = and .passed?
49*7c478bd9Sstevel@tonic-gate " fmt.9" " xyzzy" $number                        .passed?
50*7c478bd9Sstevel@tonic-gate : dnumber   ( n -- str len )
51*7c478bd9Sstevel@tonic-gate    base @ >r d# 10 base !
52*7c478bd9Sstevel@tonic-gate    <# dup abs u#s swap sign u#>
53*7c478bd9Sstevel@tonic-gate    r> base !
54*7c478bd9Sstevel@tonic-gate ;
55*7c478bd9Sstevel@tonic-gate " fmt.10" d# 12345678 dnumber " 12345678"     $= .passed?
56*7c478bd9Sstevel@tonic-gate " fmt.11" d# -87654321 dnumber " -87654321"   $= .passed?
57*7c478bd9Sstevel@tonic-gate " fmt.12" #out @ space #out @ 1 - = .passed?
58*7c478bd9Sstevel@tonic-gate " fmt.13" #line @ cr #out @ #line @ rot 1 + = swap 0= and .passed?
59*7c478bd9Sstevel@tonic-gate " fmt.14" #line @ (cr #out @ #line @ rot = swap 0= and .passed?
60*7c478bd9Sstevel@tonic-gate " fmt.15" bs h# 8                              = .passed?
61*7c478bd9Sstevel@tonic-gate " fmt.16" bell h# 7                            = .passed?
62*7c478bd9Sstevel@tonic-gate " fmt.17" bl h# 20                             = .passed?
63*7c478bd9Sstevel@tonic-gate " fmt.18" ascii 5 d# 10 digit swap 5 = and       .passed?
64*7c478bd9Sstevel@tonic-gate " fmt.19" ascii x d# 16 digit invert swap ascii x = and .passed?
65*7c478bd9Sstevel@tonic-gatecr
66*7c478bd9Sstevel@tonic-gate
67*7c478bd9Sstevel@tonic-gate." (is-user-word): "
68*7c478bd9Sstevel@tonic-gate : xyzzy 1 2 3 ;
69*7c478bd9Sstevel@tonic-gate " xx" ' xyzzy (is-user-word)
70*7c478bd9Sstevel@tonic-gate " xx" $find if .passed space execute else .failed then
71*7c478bd9Sstevel@tonic-gate " iuw.1"  2 pick 3               = .passed?
72*7c478bd9Sstevel@tonic-gate " iuw.2"  3 pick 2               = .passed?
73*7c478bd9Sstevel@tonic-gate " iuw.3"  4 pick 1               = .passed?
74*7c478bd9Sstevel@tonic-gate drop drop drop
75*7c478bd9Sstevel@tonic-gatecr
76*7c478bd9Sstevel@tonic-gate
77*7c478bd9Sstevel@tonic-gate." Move/Fill/Upper/Lower:"
78*7c478bd9Sstevel@tonic-gate " xyzzy" my-unit-str swap move
79*7c478bd9Sstevel@tonic-gate " move.1" my-unit-str " xyzzy" comp          0= .passed?
80*7c478bd9Sstevel@tonic-gate my-unit-str 9 ascii A fill
81*7c478bd9Sstevel@tonic-gate my-unit-str 6 ascii X fill
82*7c478bd9Sstevel@tonic-gate " fill.1" my-unit-str " XXXXXXAAA" comp      0= .passed?
83*7c478bd9Sstevel@tonic-gate 9 0 do my-unit-str i + dup c@ lcc swap c! loop
84*7c478bd9Sstevel@tonic-gate " lcc.1"  my-unit-str " xxxxxxaaa" comp      0= .passed?
85*7c478bd9Sstevel@tonic-gate 9 0 do my-unit-str i + dup c@ upc swap c! loop
86*7c478bd9Sstevel@tonic-gate " upc.1"  my-unit-str " XXXXXXAAA" comp      0= .passed?
87*7c478bd9Sstevel@tonic-gatecr
88*7c478bd9Sstevel@tonic-gate
89*7c478bd9Sstevel@tonic-gate." >body/body>: "
90*7c478bd9Sstevel@tonic-gateexternal
91*7c478bd9Sstevel@tonic-gate : xx 1 2 3 ;
92*7c478bd9Sstevel@tonic-gateheaders
93*7c478bd9Sstevel@tonic-gate " >body" ' xx >body ' xx /n + = .passed?
94*7c478bd9Sstevel@tonic-gate " body>" ' xx dup >body body> = .passed?
95*7c478bd9Sstevel@tonic-gatecr
96*7c478bd9Sstevel@tonic-gate
97*7c478bd9Sstevel@tonic-gate." Fcode-revision: "
98*7c478bd9Sstevel@tonic-gate " Fcode-revision" fcode-revision h# 30000 = .passed?
99*7c478bd9Sstevel@tonic-gatecr
100*7c478bd9Sstevel@tonic-gate
101*7c478bd9Sstevel@tonic-gate." Defer/Behavior: "
102*7c478bd9Sstevel@tonic-gate defer defer-word
103*7c478bd9Sstevel@tonic-gate ' xx to defer-word
104*7c478bd9Sstevel@tonic-gate " defer.1" defer-word 3 = swap 2 = and swap 1 = and .passed?
105*7c478bd9Sstevel@tonic-gate " behavior.1" ' defer-word behavior ' xx = .passed?
106*7c478bd9Sstevel@tonic-gatecr
107*7c478bd9Sstevel@tonic-gate
108*7c478bd9Sstevel@tonic-gate." Aligned: "
109*7c478bd9Sstevel@tonic-gate variable alvar
110*7c478bd9Sstevel@tonic-gate " align.1" alvar aligned alvar = .passed?
111*7c478bd9Sstevel@tonic-gate " align.2" alvar /c - aligned alvar = .passed?
112*7c478bd9Sstevel@tonic-gate " align.3" alvar char+ aligned alvar la1+ = .passed?
113*7c478bd9Sstevel@tonic-gatecr
114*7c478bd9Sstevel@tonic-gate
115*7c478bd9Sstevel@tonic-gate." Field: "
116*7c478bd9Sstevel@tonic-gatestruct
117*7c478bd9Sstevel@tonic-gate /n field >x1
118*7c478bd9Sstevel@tonic-gate /l field >x2
119*7c478bd9Sstevel@tonic-gate /w field >x3
120*7c478bd9Sstevel@tonic-gate /c field >x4
121*7c478bd9Sstevel@tonic-gateconstant /field-test
122*7c478bd9Sstevel@tonic-gate " field.1" /field-test /n /l /w /c + + + = .passed?
123*7c478bd9Sstevel@tonic-gate " field.2" 0 >x1 0 = .passed?
124*7c478bd9Sstevel@tonic-gate " field.3" 0 >x2 /n = .passed?
125*7c478bd9Sstevel@tonic-gate " field.4" 0 >x3 /n /l + = .passed?
126*7c478bd9Sstevel@tonic-gate " field.5" 0 >x4 /n /l /w + + = .passed?
127*7c478bd9Sstevel@tonic-gatecr
128*7c478bd9Sstevel@tonic-gate
129*7c478bd9Sstevel@tonic-gate
130*7c478bd9Sstevel@tonic-gate." Properties: "
131*7c478bd9Sstevel@tonic-gate 0 value root-phandle
132*7c478bd9Sstevel@tonic-gate " use-fake-handles" $find if execute else 2drop then
133*7c478bd9Sstevel@tonic-gate " /" " (cd)" $find if execute else 2drop then
134*7c478bd9Sstevel@tonic-gate " /" find-package if to root-phandle then
135*7c478bd9Sstevel@tonic-gate 1 encode-int " int-prop" property
136*7c478bd9Sstevel@tonic-gate 1 2 encode-phys " phys-prop" property
137*7c478bd9Sstevel@tonic-gate 1 2 3 reg
138*7c478bd9Sstevel@tonic-gate " XYZZY" model
139*7c478bd9Sstevel@tonic-gate 1 encode-int 2 encode-int encode+ " 2int-prop" property
140*7c478bd9Sstevel@tonic-gate " abcd" encode-string " string-prop" property
141*7c478bd9Sstevel@tonic-gate " wxyz" encode-bytes " bytes-prop" property
142*7c478bd9Sstevel@tonic-gate " prop.1" " bytes-prop" root-phandle get-package-property if
143*7c478bd9Sstevel@tonic-gate    .failed
144*7c478bd9Sstevel@tonic-gate else
145*7c478bd9Sstevel@tonic-gate    " wxyz" $= .passed?
146*7c478bd9Sstevel@tonic-gate then
147*7c478bd9Sstevel@tonic-gate " prop.2" " string-prop" root-phandle get-package-property if
148*7c478bd9Sstevel@tonic-gate    .failed
149*7c478bd9Sstevel@tonic-gate else
150*7c478bd9Sstevel@tonic-gate   decode-string " abcd" $= nip nip .passed?
151*7c478bd9Sstevel@tonic-gate then
152*7c478bd9Sstevel@tonic-gate " prop.3" " int-prop" root-phandle get-package-property if
153*7c478bd9Sstevel@tonic-gate    .failed
154*7c478bd9Sstevel@tonic-gate else
155*7c478bd9Sstevel@tonic-gate   decode-int 1 = nip nip .passed?
156*7c478bd9Sstevel@tonic-gate then
157*7c478bd9Sstevel@tonic-gate " prop.4" " phys-prop" root-phandle get-package-property if
158*7c478bd9Sstevel@tonic-gate    .failed
159*7c478bd9Sstevel@tonic-gate else
160*7c478bd9Sstevel@tonic-gate   decode-phys 2 = swap 1 = and nip nip .passed?
161*7c478bd9Sstevel@tonic-gate then
162*7c478bd9Sstevel@tonic-gate " prop.5" 0 0 root-phandle next-property if
163*7c478bd9Sstevel@tonic-gate    " bytes-prop" $= .passed?
164*7c478bd9Sstevel@tonic-gate else
165*7c478bd9Sstevel@tonic-gate    .failed
166*7c478bd9Sstevel@tonic-gate then
167*7c478bd9Sstevel@tonic-gate " prop.6" " string-prop" root-phandle next-property if
168*7c478bd9Sstevel@tonic-gate    " 2int-prop" $= .passed?
169*7c478bd9Sstevel@tonic-gate else
170*7c478bd9Sstevel@tonic-gate    .failed
171*7c478bd9Sstevel@tonic-gate then
172*7c478bd9Sstevel@tonic-gatecr
173*7c478bd9Sstevel@tonic-gate " .properties" $find if execute else 2drop then
174*7c478bd9Sstevel@tonic-gatecr
175*7c478bd9Sstevel@tonic-gate
176*7c478bd9Sstevel@tonic-gate." Timing/Alarm: "
177*7c478bd9Sstevel@tonic-gate " ms.1" get-msecs h# 100 ms get-msecs swap - h# 80 h# 150 between .passed?
178*7c478bd9Sstevel@tonic-gate\ 0 value alarm-happened
179*7c478bd9Sstevel@tonic-gate\ : alarm-word 1 to alarm-happened ." OK " ;
180*7c478bd9Sstevel@tonic-gate\ ' alarm-word 10 alarm
181*7c478bd9Sstevel@tonic-gate\ 0
182*7c478bd9Sstevel@tonic-gate\ begin
183*7c478bd9Sstevel@tonic-gate\    1 + dup 1000000 > alarm-happened 0<> or
184*7c478bd9Sstevel@tonic-gate\ until
185*7c478bd9Sstevel@tonic-gate\ drop
186*7c478bd9Sstevel@tonic-gate\ 0 0 alarm
187*7c478bd9Sstevel@tonic-gate\ " alarm.1" alarm-happened .passed?
188*7c478bd9Sstevel@tonic-gatecr
189