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 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
|
\ Convert image to C include file
\ Copyright (C) 1998,1999,2002,2003,2007 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 string.fs
0 Value image
0 Value bitmap
Create magicbuf 8 allot
Create groups 32 0 [DO] 512 cells allocate throw dup 512 cells erase , [LOOP]
\ we define it ans like...
wordlist Constant target-environment
\ save information of current dictionary to restore with environ>
Variable env-current
: >ENVIRON get-current env-current ! target-environment set-current
also target-environment context ! ;
: ENVIRON> previous env-current @ set-current ;
: t-env? ( addr len -- [ x ] true | false )
\G returns the content of environment variable and true or
\G false if not present
target-environment search-wordlist
IF EXECUTE true ELSE false THEN ;
: $has? ( addr u -- x | false )
\G returns the content of environment variable
\G or false if not present
t-env? dup IF drop THEN ;
' Value Alias DefaultValue
' Value Alias SetValue
: kb 1024 * ;
' noop alias T
' noop alias H
: has? parse-name 2drop true ;
include machpc.fs
ENVIRON>
: prefix? ( string u1 prefix u2 -- flag )
tuck 2>r umin 2r> str= ;
s" NULL" groups @ cell+ $!
: scan-ifs ( fd -- ) >r 1
BEGIN pad $100 r@ read-line throw WHILE
pad swap
2dup s" #ifdef HAS_" prefix? >r
2dup s" #else" prefix? >r
s" #endif" prefix? r> or r> - +
dup 0= UNTIL THEN rdrop drop ;
: read-groups ( addr u -- )
r/o open-file throw >r 0 2
BEGIN pad $100 r@ read-line throw WHILE
pad swap
2dup s" #ifdef HAS_" prefix?
IF
11 /string $has? 0= IF r@ scan-ifs THEN
ELSE 2dup s" #else" prefix?
IF 2drop r@ scan-ifs
ELSE 2dup s" GROUP(" prefix?
IF 2drop drop 1+ 0 ELSE
2dup s" INST_ADDR(" prefix?
IF &10 /string 2dup ') scan nip -
2over cells swap cells groups + @ + $!
1+
ELSE 2drop THEN THEN THEN THEN
REPEAT
2drop r> close-file throw ;
s" prim_lab.i" read-groups
Variable bswap?
Variable endian
Variable tchars
Variable tcell
Variable au
: t@ ( addr -- x )
endian @ IF
0 swap tcell @ bounds ?DO
8 lshift I c@ or
LOOP
ELSE
0 swap tcell @ bounds ?DO
8 rshift I c@ 8 tcell @ 1- * lshift or
LOOP
THEN
dup 1 8 tcell @ * 1- lshift and negate or ;
: search-magic ( fd -- ) >r
BEGIN magicbuf 8 r@ read-file throw 8 = WHILE
magicbuf s" Gforth3" tuck str= UNTIL
ELSE true abort" No magic found" THEN
1 magicbuf 7 + c@ 5 rshift 3 and lshift tchars !
1 magicbuf 7 + c@ 1 rshift 3 and lshift tcell !
1 magicbuf 7 + c@ 3 rshift 3 and lshift au !
magicbuf 7 + c@ 1 and 0= dup endian !
[ pad off 1 pad ! pad c@ 1 = ] Literal = bswap? !
." /* Image with " tcell @ . ." bytes cell, " tchars @ . ." bytes per char and " au @ . ." bytes per address unit */" cr
rdrop ;
Create image-header 4 cells allot
Variable image-cells
Variable bitmap-chars
: read-header ( fd -- )
image-header 4 tcell @ * rot read-file throw drop
image-header 2 tcell @ * + t@ tchars @ * tcell @ / au @ /
dup image-cells ! 1- 8 / tchars @ / 1+ bitmap-chars !
image-cells @ tcell @ * allocate throw to image
bitmap-chars @ allocate throw to bitmap ;
: read-dictionary ( fd -- ) >r
image image-cells @ tcell @ * r> read-file throw drop ;
: read-bitmap ( fd -- ) >r
bitmap bitmap-chars @ tchars @ * r> read-file throw drop ;
: .08x ( n -- ) 0 <# tcell @ 0 ?DO # # LOOP 'x hold '0 hold #> type ;
: .02x ( n -- ) 0 <# tchars @ 0 ?DO # # LOOP 'x hold '0 hold #> type ;
: bit@ ( addr n -- flag )
dup 7 and $80 swap rshift >r 3 rshift + c@ r> and
0<> ;
: .image ( -- )
image-cells @ 0 ?DO
I 1 + I' min I ?DO space image I tcell @ * + t@
bitmap I bit@ IF
dup 0< IF
dup -1 = IF
drop ." NULL"
ELSE
negate dup $3E00 and 9 rshift swap $1FF and
over cells groups + @ over $1FF and cells +
dup @ 0= IF drop
2dup 0 8 d= IF 2drop s" doesjump"
ELSE
<# '] hold 0 #S 2drop '[ hold '] hold
0 #S '[ hold #>
THEN
ELSE
>r 2drop r> $@
THEN
." INST_ADDR(" type ." )"
THEN
ELSE
dup IF ." ((void*)image)+" THEN .08x
THEN
ELSE
." (void*)" .08x
THEN ." ,"
LOOP cr
1 +LOOP ;
: .reloc ( -- )
bitmap-chars @ tchars @ * 0 ?DO
I $10 + I' min I ?DO space
0 I tchars @ bounds ?DO 8 lshift bitmap I + c@ + LOOP
.02x ." ," tchars @ +LOOP cr
$10 +LOOP ;
: read-image ( addr u -- )
r/o bin open-file throw >r
r@ search-magic
r@ file-position throw r@ read-header r@ reposition-file throw
r@ read-dictionary r@ read-bitmap r> close-file throw ;
: .imagesize ( -- )
image-header 3 tcell @ * + t@ tchars @ * tcell @ / au @ / .08x ;
: .relocsize ( -- )
bitmap-chars @ .08x ;
: fi2c ( addr u -- ) base @ >r hex
read-image
\ .\" const static __attribute__ ((__section__ (\".rodata\"))) void* image[" .imagesize ." ] = {" cr .image ." };" cr
.\" static void* image[" .imagesize ." ] = {" cr .image ." };" cr
." #ifdef USE_RELOC" cr
." const char reloc_bits[" .relocsize ." ] = {" cr .reloc ." };" cr
." #endif" cr
r> base ! ;
|