File:  [gforth] / gforth / errors.fs
Revision 1.18: download - view: text, annotated - select for diffs
Mon Dec 31 18:40:24 2007 UTC (16 years, 3 months ago) by anton
Branches: MAIN
CVS tags: v0-7-0, HEAD
updated copyright notices for GPL v3

    1: \ Load in error strings
    2: 
    3: \ Copyright (C) 1995,1996,1997,1998,1999,2003,2007 Free Software Foundation, Inc.
    4: 
    5: \ This file is part of Gforth.
    6: 
    7: \ Gforth is free software; you can redistribute it and/or
    8: \ modify it under the terms of the GNU General Public License
    9: \ as published by the Free Software Foundation, either version 3
   10: \ of the License, or (at your option) any later version.
   11: 
   12: \ This program is distributed in the hope that it will be useful,
   13: \ but WITHOUT ANY WARRANTY; without even the implied warranty of
   14: \ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   15: \ GNU General Public License for more details.
   16: 
   17: \ You should have received a copy of the GNU General Public License
   18: \ along with this program. If not, see http://www.gnu.org/licenses/.
   19: 
   20: : linked ( addr -- )
   21:     here over @ a, swap ! ;
   22: 
   23: : errstring ( addr u n -- )
   24:     ErrLink linked
   25:     ,
   26:     string, align ;
   27: 
   28: decimal
   29: 
   30: -1 s" Aborted" rot errstring
   31: -3 s" Stack overflow" rot errstring
   32: -4 s" Stack underflow" rot errstring
   33: -5 s" Return stack overflow" rot errstring
   34: -6 s" Return stack underflow" rot errstring
   35: -7 s" Do-loops nested too deeply" rot errstring
   36: -8 s" Dictionary overflow" rot errstring
   37: -9 s" Invalid memory address" rot errstring
   38: -10 s" Division by zero" rot errstring
   39: -11 s" Result out of range" rot errstring
   40: -12 s" Argument type mismatch" rot errstring
   41: -13 s" Undefined word" rot errstring
   42: -14 s" Interpreting a compile-only word" rot errstring
   43: -15 s" Invalid FORGET" rot errstring
   44: -16 s" Attempt to use zero-length string as a name" rot errstring
   45: -17 s" Pictured numeric ouput string overflow" rot errstring
   46: -18 s" Parsed string overflow" rot errstring
   47: -19 s" Word name too long" rot errstring
   48: -20 s" Write to a read-only location" rot errstring
   49: -21 s" Unsupported operation" rot errstring
   50: -22 s" Control structure mismatch" rot errstring
   51: -23 s" Address alignment exception" rot errstring
   52: -24 s" Invalid numeric argument" rot errstring
   53: -25 s" Return stack imbalance" rot errstring
   54: -26 s" Loop parameters unavailable" rot errstring
   55: -27 s" Invalid recursion" rot errstring
   56: -28 s" User interrupt" rot errstring
   57: -29 s" Compiler nesting" rot errstring
   58: -30 s" Obsolescent feature" rot errstring
   59: -31 s" >BODY used on non-CREATEd definition" rot errstring
   60: -32 s" Invalid name argument" rot errstring
   61: -33 s" Block read exception" rot errstring
   62: -34 s" Block write exception" rot errstring
   63: -35 s" Invalid block number" rot errstring
   64: -36 s" Invalid file position" rot errstring
   65: -37 s" File I/O exception" rot errstring
   66: -38 s" Non-existent file" rot errstring
   67: -39 s" Unexpected end of file" rot errstring
   68: -40 s" Invalid BASE for floating point conversion" rot errstring
   69: -41 s" Loss of precision" rot errstring
   70: -42 s" Floating-point divide by zero" rot errstring
   71: -43 s" Floating-point result out of range" rot errstring
   72: -44 s" Floating-point stack overflow" rot errstring
   73: -45 s" Floating-point stack underflow" rot errstring
   74: -46 s" Floating-point invalid argument" rot errstring
   75: -47 s" Compilation word list deleted" rot errstring
   76: -48 s" invalid POSTPONE" rot errstring
   77: -49 s" Search-order overflow" rot errstring
   78: -50 s" Search-order underflow" rot errstring
   79: -51 s" Compilation word list changed" rot errstring
   80: -52 s" Control-flow stack overflow" rot errstring
   81: -53 s" Exception stack overflow" rot errstring
   82: -54 s" Floating-point underflow" rot errstring
   83: -55 s" Floating-point unidentified fault" rot errstring
   84: -56 s" QUIT" rot errstring
   85: -57 s" Error in sending or receiving a character" rot errstring
   86: -58 s" [IF], [ELSE], [THEN] error" rot errstring
   87: 
   88: \ Gforth's errors:
   89: 
   90: -2048 s" Cannot tick compile-only word (try COMP' ... DROP)" rot errstring
   91: -2049 s" Write to broken pipe" rot errstring
   92: 
   93: variable next-exception -2050 next-exception !
   94: 
   95: : exception ( addr u -- n ) \ exception- gforth
   96:     \G @var{n} is a previously unused @code{throw} value in the range
   97:     \G (-4095...-256). Consecutive calls to @code{exception} return
   98:     \G consecutive decreasing numbers. Gforth uses the string
   99:     \G @var{addr u} as an error message.
  100:     next-exception @ errstring
  101:     next-exception @
  102:     -1 next-exception +! ;
  103: 
  104: -2049 constant broken-pipe-error ( -- n ) \ gforth
  105: \G the error number for a broken pipe
  106: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>