factor/basis/debugger/debugger.factor

328 lines
8.6 KiB
Factor
Raw Normal View History

2008-02-17 19:38:29 -05:00
! Copyright (C) 2004, 2008 Slava Pestov.
2007-09-20 18:09:08 -04:00
! See http://factorcode.org/license.txt for BSD license.
2008-07-02 01:20:01 -04:00
USING: slots arrays definitions generic hashtables summary io
kernel math namespaces prettyprint prettyprint.config sequences
2008-07-28 23:03:13 -04:00
assocs sequences.private strings io.styles io.files vectors
words system splitting math.parser classes.tuple continuations
continuations.private combinators generic.math classes.builtin
2008-07-30 05:12:17 -04:00
classes compiler.units generic.standard vocabs init
kernel.private io.encodings accessors math.order
destructors source-files parser classes.tuple.parser
effects.parser lexer compiler.errors generic.parser
2008-07-28 23:03:13 -04:00
strings.parser ;
2007-09-20 18:09:08 -04:00
IN: debugger
GENERIC: error. ( error -- )
GENERIC: error-help ( error -- topic )
M: object error. . ;
M: object error-help drop f ;
M: tuple error-help class ;
M: string error. print ;
: :s ( -- )
2008-08-29 17:48:43 -04:00
error-continuation get data>> stack. ;
2007-09-20 18:09:08 -04:00
: :r ( -- )
2008-08-29 17:48:43 -04:00
error-continuation get retain>> stack. ;
2007-09-20 18:09:08 -04:00
: :c ( -- )
2008-08-29 17:48:43 -04:00
error-continuation get call>> callstack. ;
2007-09-20 18:09:08 -04:00
: :get ( variable -- value )
2008-08-29 17:48:43 -04:00
error-continuation get name>> assoc-stack ;
2007-09-20 18:09:08 -04:00
2008-06-08 16:32:55 -04:00
: :res ( n -- * )
2007-09-20 18:09:08 -04:00
1- restarts get-global nth f restarts set-global restart ;
2008-06-08 16:32:55 -04:00
: :1 ( -- * ) 1 :res ;
: :2 ( -- * ) 2 :res ;
: :3 ( -- * ) 3 :res ;
2007-09-20 18:09:08 -04:00
: restart. ( restart n -- )
[
1+ dup 3 <= [ ":" % # " " % ] [ # " :res " % ] if
restart-name %
] "" make print ;
: restarts. ( -- )
restarts get dup empty? [
drop
] [
nl
"The following restarts are available:" print
nl
[ restart. ] each-index
2007-09-20 18:09:08 -04:00
] if ;
: print-error ( error -- )
[ error. flush ] curry
[ global [ "Error in print-error!" print drop ] bind ]
recover ;
2008-05-06 23:20:27 -04:00
: print-error-and-restarts ( error -- )
2008-02-27 20:23:22 -05:00
print-error
restarts.
nl
2008-05-06 23:20:27 -04:00
"Type :help for debugging help." print flush ;
2007-09-20 18:09:08 -04:00
: try ( quot -- )
2008-05-06 23:20:27 -04:00
[ print-error-and-restarts ] recover ;
2007-09-20 18:09:08 -04:00
2008-02-05 00:30:38 -05:00
M: relative-underflow summary
drop "Too many items removed from data stack" ;
M: relative-overflow summary
drop "Superfluous items pushed to data stack" ;
2007-09-20 18:09:08 -04:00
: expired-error. ( obj -- )
"Object did not survive image save/load: " write third . ;
: io-error. ( error -- )
"I/O error: " write third print ;
: type-check-error. ( obj -- )
"Type check error" print
"Object: " write dup fourth short.
"Object type: " write dup fourth class .
"Expected type: " write third type>class . ;
: divide-by-zero-error. ( obj -- )
"Division by zero" print drop ;
: signal-error. ( obj -- )
"Operating system signal " write third . ;
: array-size-error. ( obj -- )
"Invalid array size: " write dup third .
"Maximum: " write fourth 1- . ;
: c-string-error. ( obj -- )
"Cannot convert to C string: " write third . ;
: ffi-error. ( obj -- )
"FFI: " write
dup third [ write ": " write ] when*
fourth print ;
: heap-scan-error. ( obj -- )
"Cannot do next-object outside begin/end-scan" print drop ;
: undefined-symbol-error. ( obj -- )
"The image refers to a library or symbol that was not found"
" at load time" append print drop ;
: stack-underflow. ( obj name -- )
write " stack underflow" print drop ;
: stack-overflow. ( obj name -- )
write " stack overflow" print drop ;
2008-06-08 16:32:55 -04:00
: datastack-underflow. ( obj -- ) "Data" stack-underflow. ;
: datastack-overflow. ( obj -- ) "Data" stack-overflow. ;
: retainstack-underflow. ( obj -- ) "Retain" stack-underflow. ;
: retainstack-overflow. ( obj -- ) "Retain" stack-overflow. ;
2007-09-20 18:09:08 -04:00
2008-06-08 16:32:55 -04:00
: memory-error. ( error -- )
2007-09-20 18:09:08 -04:00
"Memory protection fault at address " write third .h ;
2008-06-08 16:32:55 -04:00
: primitive-error. ( error -- )
2007-09-20 18:09:08 -04:00
"Unimplemented primitive" print drop ;
2008-03-26 19:23:19 -04:00
PREDICATE: kernel-error < array
2007-09-20 18:09:08 -04:00
{
{ [ dup empty? ] [ drop f ] }
{ [ dup first "kernel-error" = not ] [ drop f ] }
2008-04-11 13:53:22 -04:00
[ second 0 15 between? ]
2007-09-20 18:09:08 -04:00
} cond ;
2008-06-08 16:32:55 -04:00
: kernel-errors ( error -- n errors )
2007-09-20 18:09:08 -04:00
second {
{ 0 [ expired-error. ] }
{ 1 [ io-error. ] }
2007-12-26 17:28:34 -05:00
{ 2 [ primitive-error. ] }
2007-09-20 18:09:08 -04:00
{ 3 [ type-check-error. ] }
{ 4 [ divide-by-zero-error. ] }
{ 5 [ signal-error. ] }
{ 6 [ array-size-error. ] }
{ 7 [ c-string-error. ] }
{ 8 [ ffi-error. ] }
{ 9 [ heap-scan-error. ] }
{ 10 [ undefined-symbol-error. ] }
{ 11 [ datastack-underflow. ] }
{ 12 [ datastack-overflow. ] }
{ 13 [ retainstack-underflow. ] }
{ 14 [ retainstack-overflow. ] }
{ 15 [ memory-error. ] }
} ; inline
M: kernel-error error. dup kernel-errors case ;
M: kernel-error error-help kernel-errors at first ;
M: no-method summary
drop "No suitable method" ;
M: no-method error.
"Generic word " write
dup generic>> pprint
2007-09-20 18:09:08 -04:00
" does not define a method for the " write
dup object>> class pprint
2007-09-20 18:09:08 -04:00
" class." print
"Dispatching on object: " write object>> short. ;
2008-06-30 02:44:58 -04:00
M: bad-slot-value summary drop "Bad store to specialized slot" ;
2007-09-20 18:09:08 -04:00
M: no-math-method summary
drop "No suitable arithmetic method" ;
2008-04-04 01:33:06 -04:00
M: no-next-method summary
drop "Executing call-next-method from least-specific method" ;
M: inconsistent-next-method summary
drop "Executing call-next-method with inconsistent parameters" ;
2007-09-20 18:09:08 -04:00
M: check-method summary
2008-03-16 03:43:00 -04:00
drop "Invalid parameters for create-method" ;
2007-09-20 18:09:08 -04:00
M: not-a-tuple summary
drop "Not a tuple" ;
M: bad-superclass summary
drop "Tuple classes can only inherit from other tuple classes" ;
2007-09-20 18:09:08 -04:00
2008-07-13 22:06:50 -04:00
M: no-initial-value summary
drop "Initial value must be provided for slots specialized to this class" ;
M: bad-initial-value summary
drop "Incompatible initial value" ;
2007-09-20 18:09:08 -04:00
M: no-cond summary
drop "Fall-through in cond" ;
M: no-case summary
drop "Fall-through in case" ;
M: slice-error error.
"Cannot create slice because " write
slice-error-reason print ;
M: bounds-error summary drop "Sequence index out of bounds" ;
2008-04-04 01:33:06 -04:00
M: condition error. error>> error. ;
M: condition summary error>> summary ;
2007-09-20 18:09:08 -04:00
2008-04-04 01:33:06 -04:00
M: condition error-help error>> error-help ;
2007-09-20 18:09:08 -04:00
M: assert summary drop "Assertion failed" ;
2008-05-05 01:13:06 -04:00
M: assert error.
"Assertion failed" print
standard-table-style [
15 length-limit set
5 line-limit set
[ expect>> [ [ "Expect:" write ] with-cell pprint-cell ] with-row ]
[ got>> [ [ "Got:" write ] with-cell pprint-cell ] with-row ] bi
] tabular-output ;
2007-09-20 18:09:08 -04:00
M: immutable summary drop "Sequence is immutable" ;
M: redefine-error error.
"Re-definition of " write
redefine-error-def . ;
2007-12-26 17:28:34 -05:00
M: undefined summary
drop "Calling a deferred word before it has been defined" ;
2007-12-30 16:09:21 -05:00
M: no-compilation-unit error.
"Attempting to define " write
no-compilation-unit-definition pprint
" outside of a compilation unit" print ;
2008-02-17 19:38:29 -05:00
M: no-vocab summary
drop "Vocabulary does not exist" ;
2008-02-27 20:23:22 -05:00
2008-03-20 15:25:08 -04:00
M: encode-error summary drop "Character encoding error" ;
M: decode-error summary drop "Character decoding error" ;
2008-04-25 04:23:56 -04:00
M: bad-create summary drop "Bad parameters to create" ;
M: attempt-all-error summary drop "Nothing to attempt" ;
2008-05-16 02:44:52 -04:00
M: already-disposed summary drop "Attempting to operate on disposed object" ;
2008-07-28 23:03:13 -04:00
M: no-current-vocab summary
drop "Not in a vocabulary; IN: form required" ;
2008-02-27 20:23:22 -05:00
2008-07-28 23:03:13 -04:00
M: no-word-error summary
drop "Word not found in current vocabulary search path" ;
M: staging-violation summary
drop
"A parsing word cannot be used in the same file it is defined in." ;
M: bad-number summary
drop "Bad number literal" ;
M: duplicate-slot-names summary
drop "Duplicate slot names" ;
M: invalid-slot-name summary
drop "Invalid slot name" ;
: file. ( file -- ) path>> <pathname> . ;
M: source-file-error error.
[ file>> file. ] [ error>> error. ] bi ;
M: source-file-error summary
error>> summary ;
M: source-file-error compute-restarts
error>> compute-restarts ;
M: source-file-error error-help
error>> error-help ;
M: not-in-a-method-error summary
drop "call-next-method can only be called in a method definition" ;
GENERIC: expected>string ( obj -- str )
M: f expected>string drop "end of input" ;
M: word expected>string name>> ;
M: string expected>string ;
M: unexpected error.
"Expected " write
dup unexpected-want expected>string write
" but got " write
unexpected-got expected>string print ;
M: lexer-error error.
[ lexer-dump ] [ error>> error. ] bi ;
M: lexer-error summary
error>> summary ;
M: lexer-error compute-restarts
error>> compute-restarts ;
M: lexer-error error-help
error>> error-help ;
M: object compiler-error. ( error word -- )
nl
"While compiling " write pprint ": " print
nl
print-error ;
M: bad-effect summary
drop "Bad stack effect declaration" ;
2008-02-27 20:23:22 -05:00
2008-07-28 23:03:13 -04:00
M: bad-escape summary drop "Bad escape code" ;