[gforth] / gforth / Attic / main.c  

gforth: gforth/Attic/main.c


1 : anton 1.30 /* command line interpretation, image loading etc. for Gforth
2 :    
3 :    
4 :     Copyright (C) 1995 Free Software Foundation, Inc.
5 :    
6 :     This file is part of Gforth.
7 :    
8 :     Gforth is free software; you can redistribute it and/or
9 :     modify it under the terms of the GNU General Public License
10 :     as published by the Free Software Foundation; either version 2
11 :     of the License, or (at your option) any later version.
12 :    
13 :     This program is distributed in the hope that it will be useful,
14 :     but WITHOUT ANY WARRANTY; without even the implied warranty of
15 :     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 :     GNU General Public License for more details.
17 :    
18 :     You should have received a copy of the GNU General Public License
19 :     along with this program; if not, write to the Free Software
20 :     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 : anton 1.1 */
22 :    
23 : anton 1.32 #include "config.h"
24 : anton 1.35 #include <errno.h>
25 : anton 1.1 #include <ctype.h>
26 :     #include <stdio.h>
27 :     #include <string.h>
28 :     #include <math.h>
29 :     #include <sys/types.h>
30 :     #include <sys/stat.h>
31 :     #include <fcntl.h>
32 :     #include <assert.h>
33 :     #include <stdlib.h>
34 : anton 1.49 #if HAVE_SYS_MMAN_H
35 :     #include <sys/mman.h>
36 :     #endif
37 : anton 1.1 #include "forth.h"
38 : pazsan 1.5 #include "io.h"
39 : anton 1.20 #include "getopt.h"
40 : anton 1.45 #include "version.h"
41 : pazsan 1.2
42 : anton 1.52 #define PRIM_VERSION 1
43 :     /* increment this whenever the primitives change in an incompatible way */
44 :    
45 : pazsan 1.22 #ifdef MSDOS
46 :     jmp_buf throw_jmp_buf;
47 :     #endif
48 :    
49 : anton 1.54 #if defined(DIRECT_THREADED)
50 : pazsan 1.16 # define CA(n) (symbols[(n)])
51 : anton 1.1 #else
52 : pazsan 1.21 # define CA(n) ((Cell)(symbols+(n)))
53 : anton 1.1 #endif
54 :    
55 : pazsan 1.23 #define maxaligned(n) (typeof(n))((((Cell)n)+sizeof(Float)-1)&-sizeof(Float))
56 : anton 1.10
57 : anton 1.50 static UCell dictsize=0;
58 :     static UCell dsize=0;
59 :     static UCell rsize=0;
60 :     static UCell fsize=0;
61 :     static UCell lsize=0;
62 : anton 1.54 int offset_image=0;
63 : anton 1.49 static int clear_dictionary=0;
64 :     static int debug=0;
65 :     static size_t pagesize=0;
66 : anton 1.10 char *progname;
67 :    
68 : anton 1.1 /* image file format:
69 : anton 1.35 * "#! binary-path -i\n" (e.g., "#! /usr/local/bin/gforth-0.2.0 -i\n")
70 :     * padding to a multiple of 8
71 : anton 1.36 * magic: "Gforth1x" means format 0.2,
72 : anton 1.35 * where x is even for big endian and odd for little endian
73 :     * and x & ~1 is the size of the cell in bytes.
74 :     * padding to max alignment (no padding necessary on current machines)
75 :     * ImageHeader structure (see below)
76 :     * data (size in ImageHeader.image_size)
77 :     * tags ((if relocatable, 1 bit/data cell)
78 : anton 1.1 *
79 : anton 1.35 * tag==1 means that the corresponding word is an address;
80 : anton 1.1 * If the word is >=0, the address is within the image;
81 :     * addresses within the image are given relative to the start of the image.
82 : anton 1.35 * If the word =-1 (CF_NIL), the address is NIL,
83 :     * If the word is <CF_NIL and >CF(DODOES), it's a CFA (:, Create, ...)
84 :     * If the word =CF(DODOES), it's a DOES> CFA
85 :     * If the word =CF(DOESJUMP), it's a DOES JUMP (2 Cells after DOES>,
86 :     * possibly containing a jump to dodoes)
87 :     * If the word is <CF(DOESJUMP), it's a primitive
88 : anton 1.1 */
89 :    
90 : anton 1.35 typedef struct {
91 :     Address base; /* base address of image (0 if relocatable) */
92 :     UCell checksum; /* checksum of ca's to protect against some
93 :     incompatible binary/executable combinations
94 :     (0 if relocatable) */
95 :     UCell image_size; /* all sizes in bytes */
96 :     UCell dict_size;
97 :     UCell data_stack_size;
98 :     UCell fp_stack_size;
99 :     UCell return_stack_size;
100 :     UCell locals_stack_size;
101 :     Xt *boot_entry; /* initial ip for booting (in BOOT) */
102 :     Xt *throw_entry; /* ip after signal (in THROW) */
103 : anton 1.49 Cell unused1; /* possibly tib stack size */
104 :     Cell unused2;
105 :     Address data_stack_base; /* this and the following fields are initialized by the loader */
106 :     Address fp_stack_base;
107 :     Address return_stack_base;
108 :     Address locals_stack_base;
109 : anton 1.35 } ImageHeader;
110 :     /* the image-header is created in main.fs */
111 :    
112 : anton 1.10 void relocate(Cell *image, char *bitstring, int size, Label symbols[])
113 : anton 1.1 {
114 : pazsan 1.16 int i=0, j, k, steps=(size/sizeof(Cell))/8;
115 :     char bits;
116 : pazsan 1.5 /* static char bits[8]={0x80,0x40,0x20,0x10,0x08,0x04,0x02,0x01};*/
117 : pazsan 1.37
118 :     /* printf("relocating %x[%x]\n", image, size); */
119 : pazsan 1.5
120 : pazsan 1.16 for(k=0; k<=steps; k++)
121 : anton 1.55 for(j=0, bits=bitstring[k]; j<8; j++, i++, bits<<=1) {
122 :     /* fprintf(stderr,"relocate: image[%d]\n", i);*/
123 :     if(bits & 0x80) {
124 :     /* fprintf(stderr,"relocate: image[%d]=%d\n", i, image[i]);*/
125 : pazsan 1.16 if(image[i]<0)
126 :     switch(image[i])
127 :     {
128 :     case CF_NIL : image[i]=0; break;
129 : anton 1.54 #if !defined(DOUBLY_INDIRECT)
130 : pazsan 1.16 case CF(DOCOL) :
131 :     case CF(DOVAR) :
132 :     case CF(DOCON) :
133 :     case CF(DOUSER) :
134 : pazsan 1.24 case CF(DODEFER) :
135 : anton 1.28 case CF(DOFIELD) : MAKE_CF(image+i,symbols[CF(image[i])]); break;
136 : anton 1.54 case CF(DOESJUMP): MAKE_DOES_HANDLER(image+i); break;
137 :     #endif /* !defined(DOUBLY_INDIRECT) */
138 :     case CF(DODOES) :
139 :     MAKE_DOES_CF(image+i,image[i+1]+((Cell)image));
140 : pazsan 1.16 break;
141 : pazsan 1.37 default :
142 :     /* printf("Code field generation image[%x]:=CA(%x)\n",
143 : anton 1.54 i, CF(image[i])); */
144 :     image[i]=(Cell)CA(CF(image[i]));
145 : pazsan 1.16 }
146 :     else
147 :     image[i]+=(Cell)image;
148 : anton 1.55 }
149 :     }
150 : anton 1.1 }
151 :    
152 : anton 1.35 UCell checksum(Label symbols[])
153 :     {
154 : anton 1.52 UCell r=PRIM_VERSION;
155 : anton 1.35 Cell i;
156 :    
157 :     for (i=DOCOL; i<=DOESJUMP; i++) {
158 :     r ^= (UCell)(symbols[i]);
159 :     r = (r << 5) | (r >> (8*sizeof(Cell)-5));
160 :     }
161 :     #ifdef DIRECT_THREADED
162 :     /* we have to consider all the primitives */
163 :     for (; symbols[i]!=(Label)0; i++) {
164 :     r ^= (UCell)(symbols[i]);
165 :     r = (r << 5) | (r >> (8*sizeof(Cell)-5));
166 :     }
167 :     #else
168 :     /* in indirect threaded code all primitives are accessed through the
169 :     symbols table, so we just have to put the base address of symbols
170 :     in the checksum */
171 :     r ^= (UCell)symbols;
172 :     #endif
173 :     return r;
174 :     }
175 :    
176 : anton 1.49 Address my_alloc(Cell size)
177 :     {
178 :     static Address next_address=0;
179 :     Address r;
180 :    
181 : anton 1.56 /* the 256MB jump restriction on the MIPS architecture makes the
182 :     combination of direct threading and mmap unsafe. */
183 :     #if HAVE_MMAP && (!defined(mips) || defined(INDIRECT_THREADED))
184 : anton 1.54 #if defined(MAP_ANON)
185 : anton 1.49 if (debug)
186 : anton 1.54 fprintf(stderr,"try mmap($%lx, $%lx, ..., MAP_ANON, ...); ", (long)next_address, (long)size);
187 : anton 1.49 r=mmap(next_address, size, PROT_EXEC|PROT_READ|PROT_WRITE, MAP_ANON|MAP_PRIVATE, -1, 0);
188 : anton 1.54 #else /* !defined(MAP_ANON) */
189 : anton 1.55 /* Ultrix (at least does not define MAP_FILE and MAP_PRIVATE (both are
190 :     apparently defaults*/
191 :     #ifndef MAP_FILE
192 :     # define MAP_FILE 0
193 :     #endif
194 :     #ifndef MAP_PRIVATE
195 :     # define MAP_PRIVATE 0
196 :     #endif
197 : anton 1.54 static int dev_zero=-1;
198 :    
199 :     if (dev_zero == -1)
200 :     dev_zero = open("/dev/zero", O_RDONLY);
201 :     if (dev_zero == -1) {
202 :     r = (Address)-1;
203 :     if (debug)
204 :     fprintf(stderr, "open(\"/dev/zero\"...) failed (%s), no mmap; ",
205 :     strerror(errno));
206 :     } else {
207 :     if (debug)
208 :     fprintf(stderr,"try mmap($%lx, $%lx, ..., MAP_FILE, dev_zero, ...); ", (long)next_address, (long)size);
209 :     r=mmap(next_address, size, PROT_EXEC|PROT_READ|PROT_WRITE, MAP_FILE|MAP_PRIVATE, dev_zero, 0);
210 :     }
211 :     #endif /* !defined(MAP_ANON) */
212 :    
213 : anton 1.49 if (r != (Address)-1) {
214 :     if (debug)
215 :     fprintf(stderr, "success, address=$%lx\n", (long) r);
216 :     if (pagesize != 0)
217 :     next_address = (Address)(((((Cell)r)+size-1)&-pagesize)+2*pagesize); /* leave one page unmapped */
218 :     return r;
219 :     }
220 :     if (debug)
221 :     fprintf(stderr, "failed: %s\n", strerror(errno));
222 : anton 1.54 #endif /* HAVE_MMAP */
223 : anton 1.49 /* use malloc as fallback, leave a little room (64B) for stack underflows */
224 :     if ((r = malloc(size+64))==NULL) {
225 :     perror(progname);
226 :     exit(1);
227 :     }
228 : pazsan 1.53 r = (Address)((((Cell)r)+(sizeof(Float)-1))&(-sizeof(Float)));
229 : anton 1.49 if (debug)
230 :     fprintf(stderr, "malloc succeeds, address=$%lx\n", (long)r);
231 :     return r;
232 :     }
233 :    
234 : pazsan 1.39 Address loader(FILE *imagefile, char* filename)
235 : anton 1.35 /* returns the address of the image proper (after the preamble) */
236 : anton 1.10 {
237 : anton 1.35 ImageHeader header;
238 :     Address image;
239 :     Address imp; /* image+preamble */
240 : pazsan 1.53 Char magic[9];
241 : anton 1.35 Cell preamblesize=0;
242 : anton 1.54 Label *symbols = engine(0,0,0,0,0);
243 :     Cell data_offset = offset_image ? 28*sizeof(Cell) : 0;
244 :     UCell check_sum;
245 :     static char* endianstring[]= { "big","little" };
246 : pazsan 1.18
247 : anton 1.54 #ifndef DOUBLY_INDIRECT
248 :     check_sum = checksum(symbols);
249 :     #else /* defined(DOUBLY_INDIRECT) */
250 :     check_sum = (UCell)symbols;
251 :     #endif /* defined(DOUBLY_INDIRECT) */
252 : pazsan 1.25
253 : pazsan 1.18 do
254 :     {
255 :     if(fread(magic,sizeof(Char),8,imagefile) < 8) {
256 : pazsan 1.39 fprintf(stderr,"%s: image %s doesn't seem to be a Gforth (>=0.2) image.\n",
257 :     progname, filename);
258 : pazsan 1.18 exit(1);
259 :     }
260 : anton 1.35 preamblesize+=8;
261 : pazsan 1.18 }
262 : anton 1.35 while(memcmp(magic,"Gforth1",7));
263 : pazsan 1.53 if (debug) {
264 :     magic[8]='\0';
265 :     fprintf(stderr,"Magic found: %s\n", magic);
266 :     }
267 :    
268 : anton 1.35 if(magic[7] != sizeof(Cell) +
269 : pazsan 1.25 #ifdef WORDS_BIGENDIAN
270 :     '0'
271 :     #else
272 :     '1'
273 :     #endif
274 : anton 1.35 )
275 :     { fprintf(stderr,"This image is %d bit %s-endian, whereas the machine is %d bit %s-endian.\n",
276 :     ((magic[7]-'0')&~1)*8, endianstring[magic[7]&1],
277 :     sizeof(Cell)*8, endianstring[
278 : pazsan 1.25 #ifdef WORDS_BIGENDIAN
279 :     0
280 :     #else
281 :     1
282 :     #endif
283 :     ]);
284 :     exit(-2);
285 :     };
286 : pazsan 1.18
287 : anton 1.35 fread((void *)&header,sizeof(ImageHeader),1,imagefile);
288 : pazsan 1.16 if (dictsize==0)
289 : anton 1.35 dictsize = header.dict_size;
290 : pazsan 1.16 if (dsize==0)
291 : anton 1.35 dsize=header.data_stack_size;
292 : pazsan 1.16 if (rsize==0)
293 : anton 1.35 rsize=header.return_stack_size;
294 : pazsan 1.16 if (fsize==0)
295 : anton 1.35 fsize=header.fp_stack_size;
296 : pazsan 1.16 if (lsize==0)
297 : anton 1.35 lsize=header.locals_stack_size;
298 : pazsan 1.16 dictsize=maxaligned(dictsize);
299 :     dsize=maxaligned(dsize);
300 :     rsize=maxaligned(rsize);
301 :     lsize=maxaligned(lsize);
302 :     fsize=maxaligned(fsize);
303 :    
304 : anton 1.49 #if HAVE_GETPAGESIZE
305 :     pagesize=getpagesize(); /* Linux/GNU libc offers this */
306 :     #elif HAVE_SYSCONF && defined(_SC_PAGESIZE)
307 :     pagesize=sysconf(_SC_PAGESIZE); /* POSIX.4 */
308 :     #elif PAGESIZE
309 : anton 1.54 pagesize=PAGESIZE; /* in limits.h according to Gallmeister's POSIX.4 book */
310 : anton 1.49 #endif
311 :     if (debug)
312 :     fprintf(stderr,"pagesize=%d\n",pagesize);
313 :    
314 : anton 1.54 image = my_alloc(preamblesize+dictsize+data_offset)+data_offset;
315 : anton 1.35 rewind(imagefile); /* fseek(imagefile,0L,SEEK_SET); */
316 : anton 1.49 if (clear_dictionary)
317 :     memset(image,0,dictsize);
318 :     fread(image,1,preamblesize+header.image_size,imagefile);
319 : anton 1.35 imp=image+preamblesize;
320 :     if(header.base==0) {
321 : anton 1.49 Cell reloc_size=((header.image_size-1)/sizeof(Cell))/8+1;
322 :     char reloc_bits[reloc_size];
323 :     fread(reloc_bits,1,reloc_size,imagefile);
324 :     relocate((Cell *)imp,reloc_bits,header.image_size,symbols);
325 : anton 1.48 #if 0
326 :     { /* let's see what the relocator did */
327 :     FILE *snapshot=fopen("snapshot.fi","wb");
328 :     fwrite(image,1,imagesize,snapshot);
329 :     fclose(snapshot);
330 :     }
331 :     #endif
332 : pazsan 1.16 }
333 : anton 1.35 else if(header.base!=imp) {
334 : anton 1.51 fprintf(stderr,"%s: Cannot load nonrelocatable image (compiled for address $%lx) at address $%lx\n",
335 : anton 1.35 progname, (unsigned long)header.base, (unsigned long)imp);
336 :     exit(1);
337 : anton 1.48 }
338 :     if (header.checksum==0)
339 :     ((ImageHeader *)imp)->checksum=check_sum;
340 :     else if (header.checksum != check_sum) {
341 : anton 1.36 fprintf(stderr,"%s: Checksum of image ($%lx) does not match the executable ($%lx)\nThe Gforth installer should look into the INSTALL file\n",
342 : anton 1.35 progname, (unsigned long)(header.checksum),(unsigned long)check_sum);
343 : pazsan 1.16 exit(1);
344 :     }
345 : anton 1.49 fclose(imagefile);
346 : anton 1.1
347 : anton 1.35 ((ImageHeader *)imp)->dict_size=dictsize;
348 :     ((ImageHeader *)imp)->data_stack_size=dsize;
349 : anton 1.49 ((ImageHeader *)imp)->fp_stack_size=fsize;
350 : anton 1.35 ((ImageHeader *)imp)->return_stack_size=rsize;
351 :     ((ImageHeader *)imp)->locals_stack_size=lsize;
352 :    
353 : anton 1.49 ((ImageHeader *)imp)->data_stack_base=my_alloc(dsize);
354 :     ((ImageHeader *)imp)->fp_stack_base=my_alloc(fsize);
355 :     ((ImageHeader *)imp)->return_stack_base=my_alloc(rsize);
356 :     ((ImageHeader *)imp)->locals_stack_base=my_alloc(lsize);
357 :    
358 : anton 1.38 CACHE_FLUSH(imp, header.image_size);
359 : anton 1.35
360 :     return imp;
361 : anton 1.1 }
362 :    
363 : anton 1.35 int go_forth(Address image, int stack, Cell *entries)
364 : anton 1.1 {
365 : anton 1.49 Cell *sp=(Cell*)(((ImageHeader *)image)->data_stack_base + dsize);
366 :     Float *fp=(Float *)(((ImageHeader *)image)->fp_stack_base + fsize);
367 :     Cell *rp=(Cell *)(((ImageHeader *)image)->return_stack_base + rsize);
368 :     Address lp=((ImageHeader *)image)->locals_stack_base + lsize;
369 : anton 1.35 Xt *ip=(Xt *)(((ImageHeader *)image)->boot_entry);
370 : anton 1.15 int throw_code;
371 : anton 1.49
372 :     /* ensure that the cached elements (if any) are accessible */
373 :     IF_TOS(sp--);
374 :     IF_FTOS(fp--);
375 : anton 1.15
376 :     for(;stack>0;stack--)
377 :     *--sp=entries[stack-1];
378 : pazsan 1.39
379 : pazsan 1.44 #if !defined(MSDOS) && !defined(_WIN32) && !defined(__EMX__)
380 : anton 1.33 get_winsize();
381 : pazsan 1.39 #endif
382 :    
383 : anton 1.15 install_signal_handlers(); /* right place? */
384 :    
385 :     if ((throw_code=setjmp(throw_jmp_buf))) {
386 :     static Cell signal_data_stack[8];
387 :     static Cell signal_return_stack[8];
388 :     static Float signal_fp_stack[1];
389 :    
390 :     signal_data_stack[7]=throw_code;
391 :    
392 : anton 1.35 return((int)engine(((ImageHeader *)image)->throw_entry,signal_data_stack+7,
393 : anton 1.15 signal_return_stack+8,signal_fp_stack,0));
394 :     }
395 : anton 1.35
396 : anton 1.15 return((int)engine(ip,sp,rp,fp,lp));
397 : anton 1.1 }
398 :    
399 : anton 1.50 UCell convsize(char *s, UCell elemsize)
400 : anton 1.54 /* converts s of the format [0-9]+[bekM]? (e.g. 25k) into the number
401 :     of bytes. the letter at the end indicates the unit, where e stands
402 :     for the element size. default is e */
403 : anton 1.10 {
404 :     char *endp;
405 : anton 1.50 UCell n,m;
406 : anton 1.10
407 :     m = elemsize;
408 :     n = strtoul(s,&endp,0);
409 :     if (endp!=NULL) {
410 :     if (strcmp(endp,"b")==0)
411 :     m=1;
412 :     else if (strcmp(endp,"k")==0)
413 :     m=1024;
414 :     else if (strcmp(endp,"M")==0)
415 :     m=1024*1024;
416 : anton 1.31 else if (strcmp(endp,"e")!=0 && strcmp(endp,"")!=0) {
417 :     fprintf(stderr,"%s: cannot grok size specification %s: invalid unit \"%s\"\n", progname, s, endp);
418 : anton 1.10 exit(1);
419 :     }
420 :     }
421 :     return n*m;
422 :     }
423 :    
424 : anton 1.1 int main(int argc, char **argv, char **env)
425 :     {
426 : anton 1.43 char *path, *path1;
427 : pazsan 1.16 char *imagename="gforth.fi";
428 :     FILE *image_file;
429 :     int c, retvalue;
430 : anton 1.10
431 : anton 1.14 #if defined(i386) && defined(ALIGNMENT_CHECK) && !defined(DIRECT_THREADED)
432 : anton 1.30 /* turn on alignment checks on the 486.
433 :     * on the 386 this should have no effect. */
434 :     __asm__("pushfl; popl %eax; orl $0x40000, %eax; pushl %eax; popfl;");
435 :     /* this is unusable with Linux' libc.4.6.27, because this library is
436 :     not alignment-clean; we would have to replace some library
437 :     functions (e.g., memcpy) to make it work */
438 : anton 1.6 #endif
439 : pazsan 1.2
440 : pazsan 1.16 progname = argv[0];
441 : pazsan 1.44 if ((path1=getenv("GFORTHPATH"))==NULL)
442 :     path1 = DEFAULTPATH;
443 :    
444 : pazsan 1.16 opterr=0;
445 :     while (1) {
446 :     int option_index=0;
447 :     static struct option opts[] = {
448 :     {"image-file", required_argument, NULL, 'i'},
449 :     {"dictionary-size", required_argument, NULL, 'm'},
450 :     {"data-stack-size", required_argument, NULL, 'd'},
451 :     {"return-stack-size", required_argument, NULL, 'r'},
452 :     {"fp-stack-size", required_argument, NULL, 'f'},
453 :     {"locals-stack-size", required_argument, NULL, 'l'},
454 :     {"path", required_argument, NULL, 'p'},
455 : anton 1.45 {"version", no_argument, NULL, 'v'},
456 :     {"help", no_argument, NULL, 'h'},
457 : anton 1.54 /* put something != 0 into offset_image */
458 :     {"offset-image", no_argument, &offset_image, 1},
459 : anton 1.55 {"no-offset-im", no_argument, &offset_image, 0},
460 : anton 1.54 {"clear-dictionary", no_argument, &clear_dictionary, 1},
461 : anton 1.49 {"debug", no_argument, &debug, 1},
462 : pazsan 1.16 {0,0,0,0}
463 :     /* no-init-file, no-rc? */
464 :     };
465 : pazsan 1.44
466 : anton 1.54 c = getopt_long(argc, argv, "+i:m:d:r:f:l:p:vh", opts, &option_index);
467 : pazsan 1.44
468 : pazsan 1.16 if (c==EOF)
469 :     break;
470 :     if (c=='?') {
471 :     optind--;
472 :     break;
473 :     }
474 :     switch (c) {
475 :     case 'i': imagename = optarg; break;
476 :     case 'm': dictsize = convsize(optarg,sizeof(Cell)); break;
477 :     case 'd': dsize = convsize(optarg,sizeof(Cell)); break;
478 :     case 'r': rsize = convsize(optarg,sizeof(Cell)); break;
479 :     case 'f': fsize = convsize(optarg,sizeof(Float)); break;
480 :     case 'l': lsize = convsize(optarg,sizeof(Cell)); break;
481 : pazsan 1.44 case 'p': path1 = optarg; break;
482 : anton 1.45 case 'v': fprintf(stderr, "gforth %s\n", gforth_version); exit(0);
483 :     case 'h':
484 :     fprintf(stderr, "Usage: %s [engine options] [image arguments]\n\
485 :     Engine Options:\n\
486 : pazsan 1.53 -c, --clear-dictionary Initialize the dictionary with 0 bytes\n\
487 : anton 1.45 -d SIZE, --data-stack-size=SIZE Specify data stack size\n\
488 : anton 1.49 --debug Print debugging information during startup\n\
489 : anton 1.45 -f SIZE, --fp-stack-size=SIZE Specify floating point stack size\n\
490 :     -h, --help Print this message and exit\n\
491 :     -i FILE, --image-file=FILE Use image FILE instead of `gforth.fi'\n\
492 :     -l SIZE, --locals-stack-size=SIZE Specify locals stack size\n\
493 :     -m SIZE, --dictionary-size=SIZE Specify Forth dictionary size\n\
494 : anton 1.49 --offset-image Load image at a different position\n\
495 : anton 1.45 -p PATH, --path=PATH Search path for finding image and sources\n\
496 :     -r SIZE, --return-stack-size=SIZE Specify return stack size\n\
497 :     -v, --version Print version and exit\n\
498 : anton 1.54 SIZE arguments consist of an integer followed by a unit. The unit can be\n\
499 : anton 1.45 `b' (bytes), `e' (elements), `k' (kilobytes), or `M' (Megabytes).\n\
500 :     \n\
501 :     Arguments of default image `gforth.fi':\n\
502 :     FILE load FILE (with `require')\n\
503 :     -e STRING, --evaluate STRING interpret STRING (with `EVALUATE')\n",
504 :     argv[0]); exit(0);
505 : pazsan 1.16 }
506 :     }
507 : pazsan 1.44 path=path1;
508 :    
509 : pazsan 1.29 if(strchr(imagename, '/')==NULL)
510 :     {
511 :     do {
512 : anton 1.43 char *pend=strchr(path, PATHSEP);
513 : pazsan 1.29 if (pend==NULL)
514 :     pend=path+strlen(path);
515 :     if (strlen(path)==0) {
516 :     fprintf(stderr,"%s: cannot open image file %s in path %s for reading\n",
517 : anton 1.47 progname, imagename, path1);
518 : pazsan 1.29 exit(1);
519 :     }
520 :     {
521 :     int dirlen=pend-path;
522 :     char fullfilename[dirlen+strlen(imagename)+2];
523 :     memcpy(fullfilename, path, dirlen);
524 :     if (fullfilename[dirlen-1]!='/')
525 :     fullfilename[dirlen++]='/';
526 :     strcpy(fullfilename+dirlen,imagename);
527 :     image_file=fopen(fullfilename,"rb");
528 : anton 1.54 if (image_file!=NULL && debug)
529 :     fprintf(stderr, "Opened image file: %s\n", fullfilename);
530 : pazsan 1.29 }
531 : anton 1.43 path=pend+(*pend==PATHSEP);
532 : pazsan 1.29 } while (image_file==NULL);
533 : pazsan 1.16 }
534 : pazsan 1.29 else
535 : pazsan 1.16 {
536 : pazsan 1.29 image_file=fopen(imagename,"rb");
537 : pazsan 1.16 }
538 : pazsan 1.29
539 : pazsan 1.16 {
540 : anton 1.45 char path2[strlen(path1)+1];
541 : anton 1.43 char *p1, *p2;
542 : pazsan 1.16 Cell environ[]= {
543 :     (Cell)argc-(optind-1),
544 :     (Cell)(argv+(optind-1)),
545 : anton 1.42 (Cell)strlen(path1),
546 : anton 1.43 (Cell)path2};
547 : pazsan 1.16 argv[optind-1] = progname;
548 :     /*
549 :     for (i=0; i<environ[0]; i++)
550 :     printf("%s\n", ((char **)(environ[1]))[i]);
551 :     */
552 : anton 1.42 /* make path OS-independent by replacing path separators with NUL */
553 : anton 1.43 for (p1=path1, p2=path2; *p1!='\0'; p1++, p2++)
554 :     if (*p1==PATHSEP)
555 :     *p2 = '\0';
556 :     else
557 :     *p2 = *p1;
558 :     *p2='\0';
559 : anton 1.42 retvalue=go_forth(loader(image_file, imagename),4,environ);
560 : pazsan 1.16 deprep_terminal();
561 :     exit(retvalue);
562 :     }
563 : anton 1.1 }

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help