Context.st
author Claus Gittinger <cg@exept.de>
Tue, 11 Nov 2008 22:30:16 +0100
changeset 11340 ceae06796c52
parent 11337 aa51a2332343
child 11473 4f7cef3800cf
permissions -rw-r--r--
unwinding fixed for on:do:ensure: (unwound-context is itself marked)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     1
"
5
67342904af11 *** empty log message ***
claus
parents: 3
diff changeset
     2
 COPYRIGHT (c) 1988 by Claus Gittinger
154
d4236ec280a6 *** empty log message ***
claus
parents: 141
diff changeset
     3
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     4
a27a279701f8 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
"
5422
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
    12
"{ Package: 'stx:libbasic' }"
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
    13
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    14
Object variableSubclass:#Context
2646
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
    15
	instanceVariableNames:'flags sender* home receiver selector searchClass lineNr
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
    16
		retvalTemp handle*'
1334
8b21c5f67b15 allow different implementations of singleStep (JAVA support)
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
    17
	classVariableNames:'InvalidReturnSignal SingleStepInterruptRequest'
749
be57bbb9ad3d commentary
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
    18
	poolDictionaries:''
be57bbb9ad3d commentary
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
    19
	category:'Kernel-Methods'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    20
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    21
1810
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
    22
!Context class methodsFor:'documentation'!
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
    23
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    24
copyright
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    25
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    26
 COPYRIGHT (c) 1988 by Claus Gittinger
154
d4236ec280a6 *** empty log message ***
claus
parents: 141
diff changeset
    27
	      All Rights Reserved
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    28
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    29
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    30
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    32
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    33
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    34
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    35
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    36
!
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    37
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
    38
documentation
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
    39
"
402
claus
parents: 384
diff changeset
    40
    Contexts represent the stack frame objects, which keep the processing
claus
parents: 384
diff changeset
    41
    state of a method or block (i.e. its local variables, temporaries etc.)
claus
parents: 384
diff changeset
    42
    Every message send adds a context to a chain, which can be traced back via 
claus
parents: 384
diff changeset
    43
    the sender field. The context of the currently active method is always
claus
parents: 384
diff changeset
    44
    accessable via the pseuodoVariable called 'thisContext'.
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
    45
    (The actual implementation uses the machines stack for this, building real 
402
claus
parents: 384
diff changeset
    46
     contexts on demand only).
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
    47
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
    48
    For both method- and block-contexts, the layout is the same. 
402
claus
parents: 384
diff changeset
    49
    For method contexts, the home-field is nil, while for block contexts the home-
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
    50
    field is either the context of its surrounding block (i.e. the context of the
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
    51
    block, in which the receiving block was created, if its a nested block) or of
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
    52
    its home method. 
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
    53
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
    54
    Contexts of cheap blocks do not have a home context - their home field is 
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
    55
    also nil.
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
    56
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
    57
    Currently, contexts do not contain a reference to the method or block which
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
    58
    created it - this is not needed for program execution, but could get the debugger
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
    59
    somewhat into trouble: it has to search the class hierarchy for receiver/selector
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
    60
    combinations to find the method. This usually works, but fails in case of methods
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
    61
    which are not anchored in any class - especially leading to problems with wrapper-
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
    62
    and lazy methods. Also, Method>>valueWithReceiver - type of invocations cannot
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
    63
    be easily debugged.
402
claus
parents: 384
diff changeset
    64
    Therefore, the implementation may be changed in the near future, to include a
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
    65
    field for the method/block, and set it in the VM during program execution.
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
    66
    (there may be some small performance penalty for this, though).
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
    67
402
claus
parents: 384
diff changeset
    68
    LineNumbers vs. program counter:
claus
parents: 384
diff changeset
    69
claus
parents: 384
diff changeset
    70
    Due to the compilation to machine code, methods and/or block do not
216
a8abff749575 *** empty log message ***
claus
parents: 212
diff changeset
    71
    always (actually: do seldom) contain bytecodes. Thus, there is no such concept
a8abff749575 *** empty log message ***
claus
parents: 212
diff changeset
    72
    as a bytecode p-counter. To support debugging, the linenumber within the
a8abff749575 *** empty log message ***
claus
parents: 212
diff changeset
    73
    original source is instead remembered when a send or loop entry is performed.
a8abff749575 *** empty log message ***
claus
parents: 212
diff changeset
    74
    Since linenumbers are not always sufficient for debugging (multiple sends in one
402
claus
parents: 384
diff changeset
    75
    line), this may be changed in future versions to a character offset, giving
216
a8abff749575 *** empty log message ***
claus
parents: 212
diff changeset
    76
    the position of the selector in the source.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    77
402
claus
parents: 384
diff changeset
    78
    Restartable / Returnable contexts:
claus
parents: 384
diff changeset
    79
claus
parents: 384
diff changeset
    80
    In previous versions (up to ST/X 2.10.5), every method stored enough
claus
parents: 384
diff changeset
    81
    information in the context for that one to be restartable later (for example,
claus
parents: 384
diff changeset
    82
    via the debuggers restart button). With 2.10.6, this is now an stc-compiler
claus
parents: 384
diff changeset
    83
    option, and the system as delivered is compiled to only create restartable
claus
parents: 384
diff changeset
    84
    contexts for those which contain blocks. This resulted in an overall speedup of
claus
parents: 384
diff changeset
    85
    roughly 10-20% percent, depending on the type of CPU. However, it makes most
claus
parents: 384
diff changeset
    86
    methods non-restartable (however, abort, signal handling and unwind blocks work
claus
parents: 384
diff changeset
    87
    as usual).
claus
parents: 384
diff changeset
    88
    In practice, this was reported to be not a severe limitation and all users were happy
claus
parents: 384
diff changeset
    89
    to trade the increased performance for that slight inconvenience.
claus
parents: 384
diff changeset
    90
    (during development, this is seldom a problem, since interpreted methods are always
claus
parents: 384
diff changeset
    91
     returnable and restartable)
claus
parents: 384
diff changeset
    92
    If you do not like this (and you are a happy owner of the full distribution), you
claus
parents: 384
diff changeset
    93
    should recompile all classes with stc's '-optContext' flag.
claus
parents: 384
diff changeset
    94
claus
parents: 384
diff changeset
    95
    Resuming contexts:
claus
parents: 384
diff changeset
    96
claus
parents: 384
diff changeset
    97
    Strictly speaking, ST/X does not support a context to be resumed. However,
claus
parents: 384
diff changeset
    98
    it does support a forced return (i.e. non-local-return) from a context.
claus
parents: 384
diff changeset
    99
    Thus, resume of a context is implemented by forcing a return from the context
claus
parents: 384
diff changeset
   100
    which was created by the method called from the first one. The effect is the same.
claus
parents: 384
diff changeset
   101
claus
parents: 384
diff changeset
   102
    Returning from a dead method:
claus
parents: 384
diff changeset
   103
claus
parents: 384
diff changeset
   104
    Blocksreturn from an outlived context (i.e. its home method has already returned)
claus
parents: 384
diff changeset
   105
    is now rewarded by an invalidReturn exception - it used to be a noop in previous
claus
parents: 384
diff changeset
   106
    releases (The blue book described this to be a noop, but other smalltalk implementations
claus
parents: 384
diff changeset
   107
    changed this to be an invalid operation -  good decision)
claus
parents: 384
diff changeset
   108
claus
parents: 384
diff changeset
   109
1282
3f5eda57c516 commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   110
    [instance variables:]
6003
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   111
        flags       <SmallInteger>          used by the VM; never touch.
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   112
                                            contains info about number of args, 
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   113
                                            locals and temporaries.
216
a8abff749575 *** empty log message ***
claus
parents: 212
diff changeset
   114
6003
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   115
        sender      <Context>               the 'calling / sending' context
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   116
                                            This is not directly accessable, since it may
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   117
                                            be a lazy context (i.e. an empty frame).
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   118
                                            The #sender method cares for this.
216
a8abff749575 *** empty log message ***
claus
parents: 212
diff changeset
   119
6003
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   120
        home        <Context>               the context, where this block was 
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   121
                                            created, or nil if its a method context
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   122
                                            There are also cheap blocks, which do
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   123
                                            not need a reference to the home context,
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   124
                                            for those, its nil too.
216
a8abff749575 *** empty log message ***
claus
parents: 212
diff changeset
   125
6003
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   126
        receiver    <Object>                the receiver of this message
216
a8abff749575 *** empty log message ***
claus
parents: 212
diff changeset
   127
6003
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   128
        selector    <Symbol>                the selector of this message
216
a8abff749575 *** empty log message ***
claus
parents: 212
diff changeset
   129
6003
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   130
        searchClass <Class>                 the class, where the message lookup started
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   131
                                            (for super sends) or nil, for regular sends.
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
   132
6003
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   133
        lineNr      <SmallInteger>          the position where the context left off
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   134
                                            (kind of p-counter). Only the low 16bits
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   135
                                             are valid.
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
   136
6003
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   137
        retValTemp  nil                     temporary - always nil, when you see the context
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   138
                                            (used in the VM as temporary)
216
a8abff749575 *** empty log message ***
claus
parents: 212
diff changeset
   139
6003
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   140
        handle      *noObject*              used by the VM; not accessable, not an object
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
   141
6003
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   142
        <indexed>                           arguments of the send followed by
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   143
                                            locals of the method/block followed by
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   144
                                            temporaries.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   145
6003
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   146
    [errors:]
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   147
        CannotReturnError                   raised when a block tries
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   148
                                            to return ('^') from a method context
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   149
                                            which itself has already returned
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   150
                                            (i.e. there is no place to return to)
216
a8abff749575 *** empty log message ***
claus
parents: 212
diff changeset
   151
        
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
   152
    WARNING: layout and size known by the compiler and runtime system - do not change.
1282
3f5eda57c516 commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   153
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
   154
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
   155
    [author:]
6003
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   156
        Claus Gittinger
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
   157
1282
3f5eda57c516 commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   158
    [see also:]
6003
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   159
        Block Process Method
9bfa2051faeb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6002
diff changeset
   160
        ( contexts, stacks & unwinding : programming/contexts.html)
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
   161
"
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
   162
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   163
1810
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   164
!Context class methodsFor:'initialization'!
105
7fe3d60db5e1 invalid return now raises a signal
claus
parents: 92
diff changeset
   165
7fe3d60db5e1 invalid return now raises a signal
claus
parents: 92
diff changeset
   166
initialize
6000
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   167
"/    InvalidReturnSignal isNil ifTrue:[
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   168
"/        InvalidReturnSignal := ErrorSignal newSignalMayProceed:true.
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   169
"/        InvalidReturnSignal nameClass:self message:#invalidReturnSignal.
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   170
"/        InvalidReturnSignal notifierString:'invalid return; method cannot return twice'.
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   171
"/
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   172
    CannotReturnError notifierString:'invalid return; method cannot return twice'.
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   173
    CannotResumeError notifierString:'invalid resume'.
1334
8b21c5f67b15 allow different implementations of singleStep (JAVA support)
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   174
6000
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   175
    SingleStepInterruptRequest isNil ifTrue:[
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   176
        SingleStepInterruptRequest := QuerySignal new.
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   177
        SingleStepInterruptRequest nameClass:self message:#singleStepInterruptRequest.
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   178
        SingleStepInterruptRequest notifierString:'single step'.
105
7fe3d60db5e1 invalid return now raises a signal
claus
parents: 92
diff changeset
   179
    ]
1334
8b21c5f67b15 allow different implementations of singleStep (JAVA support)
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   180
8b21c5f67b15 allow different implementations of singleStep (JAVA support)
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   181
    "Modified: 6.5.1996 / 16:46:03 / cg"
105
7fe3d60db5e1 invalid return now raises a signal
claus
parents: 92
diff changeset
   182
! !
7fe3d60db5e1 invalid return now raises a signal
claus
parents: 92
diff changeset
   183
1810
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   184
!Context class methodsFor:'Signal constants'!
105
7fe3d60db5e1 invalid return now raises a signal
claus
parents: 92
diff changeset
   185
6000
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   186
cannotResumeSignal
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   187
    "return the signal used when a method is tried to be resumed, which cannot"
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   188
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   189
    ^ CannotResumeError
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   190
!
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   191
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   192
cannotReturnSignal
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   193
    "return the signal used when a method is tried to be returned twice
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   194
     or, when some dead context is unwound or restarted."
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   195
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   196
    ^ CannotReturnError
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   197
!
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   198
105
7fe3d60db5e1 invalid return now raises a signal
claus
parents: 92
diff changeset
   199
invalidReturnSignal
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
   200
    "return the signal used when a method is tried to be returned twice
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
   201
     or, when some dead context is unwound or restarted."
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
   202
8357
64be78ef1e77 Mark obsolete methods
Stefan Vogel <sv@exept.de>
parents: 8284
diff changeset
   203
    <resource: #obsolete>
6000
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   204
    self obsoleteMethodWarning:'use #cannotReturnSignal'.
d6fbafc5879e more class based exceptions
Claus Gittinger <cg@exept.de>
parents: 5983
diff changeset
   205
    ^ self cannotReturnSignal.
1334
8b21c5f67b15 allow different implementations of singleStep (JAVA support)
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   206
!
8b21c5f67b15 allow different implementations of singleStep (JAVA support)
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   207
8b21c5f67b15 allow different implementations of singleStep (JAVA support)
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   208
singleStepInterruptRequest
8b21c5f67b15 allow different implementations of singleStep (JAVA support)
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   209
    "return the dummy query signal to ask for single stepping"
8b21c5f67b15 allow different implementations of singleStep (JAVA support)
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   210
8b21c5f67b15 allow different implementations of singleStep (JAVA support)
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   211
    ^ SingleStepInterruptRequest
8b21c5f67b15 allow different implementations of singleStep (JAVA support)
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   212
8b21c5f67b15 allow different implementations of singleStep (JAVA support)
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   213
    "Created: 6.5.1996 / 16:46:32 / cg"
105
7fe3d60db5e1 invalid return now raises a signal
claus
parents: 92
diff changeset
   214
! !
7fe3d60db5e1 invalid return now raises a signal
claus
parents: 92
diff changeset
   215
1810
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   216
!Context class methodsFor:'queries'!
3
24d81bf47225 *** empty log message ***
claus
parents: 1
diff changeset
   217
24d81bf47225 *** empty log message ***
claus
parents: 1
diff changeset
   218
isBuiltInClass
1264
8d916aa63bce commentary
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   219
    "return true if this class is known by the run-time-system.
8d916aa63bce commentary
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   220
     Here, true is returned."
3
24d81bf47225 *** empty log message ***
claus
parents: 1
diff changeset
   221
24d81bf47225 *** empty log message ***
claus
parents: 1
diff changeset
   222
    ^ true
1264
8d916aa63bce commentary
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   223
8d916aa63bce commentary
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   224
    "Modified: 23.4.1996 / 15:58:00 / cg"
3
24d81bf47225 *** empty log message ***
claus
parents: 1
diff changeset
   225
! !
24d81bf47225 *** empty log message ***
claus
parents: 1
diff changeset
   226
4485
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
   227
!Context class methodsFor:'special searching'!
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
   228
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
   229
findFirstSpecialHandle:searchForHandle raise:searchForRaise
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
   230
    |c|
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
   231
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
   232
%{
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
   233
    OBJ __c__;
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
   234
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
   235
    __c__ = __ContextInstPtr(__thisContext)->c_sender;
10537
9ebc87dd0738 Better check for nil sender...
Stefan Vogel <sv@exept.de>
parents: 10136
diff changeset
   236
    if (!__isNonNilObject(__c__)) {
9ebc87dd0738 Better check for nil sender...
Stefan Vogel <sv@exept.de>
parents: 10136
diff changeset
   237
        RETURN(nil)
9ebc87dd0738 Better check for nil sender...
Stefan Vogel <sv@exept.de>
parents: 10136
diff changeset
   238
    }
4485
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
   239
    if (__isLazy(__c__)) {
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
   240
        __PATCHUPCONTEXT(__c__);
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
   241
    }
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
   242
    c = __c__;
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
   243
%}.
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
   244
    ^ c findSpecialHandle:searchForHandle raise:searchForRaise
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
   245
! !
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
   246
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7257
diff changeset
   247
!Context methodsFor:'Compatibility-VW'!
5983
79d6b249c899 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5911
diff changeset
   248
79d6b249c899 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5911
diff changeset
   249
resumeWith:value
79d6b249c899 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5911
diff changeset
   250
    "same as #resume: - visualWorks compatibility"
79d6b249c899 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5911
diff changeset
   251
79d6b249c899 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5911
diff changeset
   252
    self resume:value
79d6b249c899 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5911
diff changeset
   253
! !
79d6b249c899 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5911
diff changeset
   254
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   255
!Context methodsFor:'accessing'!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   256
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   257
argAt:n
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   258
    "return the n'th argument"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   259
1726
de533c7f3172 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1668
diff changeset
   260
    n > self numArgs ifTrue:[
3143
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   261
	^ self error:'invalid arg access'
1726
de533c7f3172 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1668
diff changeset
   262
    ].
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   263
    ^ self at:n
1726
de533c7f3172 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1668
diff changeset
   264
de533c7f3172 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1668
diff changeset
   265
    "Modified: 12.10.1996 / 21:44:28 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   266
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   267
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   268
argAt:n put:value
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   269
    "set the n'th argument - useful when the receiver should be restarted"
154
d4236ec280a6 *** empty log message ***
claus
parents: 141
diff changeset
   270
1726
de533c7f3172 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1668
diff changeset
   271
    n > self numArgs ifTrue:[
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   272
        ^ self error:'invalid arg access'
1726
de533c7f3172 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1668
diff changeset
   273
    ].
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   274
    self at:n put:value.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   275
    ^ value
1726
de533c7f3172 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1668
diff changeset
   276
de533c7f3172 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1668
diff changeset
   277
    "Modified: 12.10.1996 / 21:44:32 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   278
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   279
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   280
args
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   281
    "return an array filled with the arguments of this context"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   282
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   283
    |n|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   284
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   285
    n := self numArgs.
3130
6cef19640207 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   286
    n == 0 ifTrue:[
6cef19640207 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   287
	"/ little optimization here - avaoid creating empty containers
6cef19640207 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   288
	^ #()
6cef19640207 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   289
    ].
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   290
    ^ (Array new:n) replaceFrom:1 to:n with:self.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   291
!
154
d4236ec280a6 *** empty log message ***
claus
parents: 141
diff changeset
   292
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   293
argsAndVars
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   294
    "return an array filled with the arguments and variables of this context"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   295
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   296
    |n|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   297
1810
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   298
    n := self numArgs + self numVars.
3130
6cef19640207 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   299
    n == 0 ifTrue:[
3143
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   300
	"/ little optimization here - avoid creating empty containers
3130
6cef19640207 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   301
	^ #()
6cef19640207 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   302
    ].
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   303
    ^ (Array new:n) replaceFrom:1 to:n with:self.
1810
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   304
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   305
    "Modified: 23.10.1996 / 16:19:41 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   306
!
154
d4236ec280a6 *** empty log message ***
claus
parents: 141
diff changeset
   307
8687
d6e6e2c0c27c Define #argumentCount as ANSI alias for #numArgs
Stefan Vogel <sv@exept.de>
parents: 8578
diff changeset
   308
argumentCount
d6e6e2c0c27c Define #argumentCount as ANSI alias for #numArgs
Stefan Vogel <sv@exept.de>
parents: 8578
diff changeset
   309
    "ANSI alias for numArgs: return the number of arguments to the Block/Method"
d6e6e2c0c27c Define #argumentCount as ANSI alias for #numArgs
Stefan Vogel <sv@exept.de>
parents: 8578
diff changeset
   310
d6e6e2c0c27c Define #argumentCount as ANSI alias for #numArgs
Stefan Vogel <sv@exept.de>
parents: 8578
diff changeset
   311
%{  /* NOCONTEXT */
d6e6e2c0c27c Define #argumentCount as ANSI alias for #numArgs
Stefan Vogel <sv@exept.de>
parents: 8578
diff changeset
   312
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8910
diff changeset
   313
    RETURN ( __mkSmallInteger( (__intVal(__INST(flags)) >> __NARG_SHIFT) & __NARG_MASK) );
8687
d6e6e2c0c27c Define #argumentCount as ANSI alias for #numArgs
Stefan Vogel <sv@exept.de>
parents: 8578
diff changeset
   314
%}
d6e6e2c0c27c Define #argumentCount as ANSI alias for #numArgs
Stefan Vogel <sv@exept.de>
parents: 8578
diff changeset
   315
!
d6e6e2c0c27c Define #argumentCount as ANSI alias for #numArgs
Stefan Vogel <sv@exept.de>
parents: 8578
diff changeset
   316
7324
9e145a7ae670 need unfix, when changed via at:put:
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
   317
at:n put:value
9e145a7ae670 need unfix, when changed via at:put:
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
   318
    super at:n put:value.
9e145a7ae670 need unfix, when changed via at:put:
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
   319
9e145a7ae670 need unfix, when changed via at:put:
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
   320
    "/ need some aid for optimized code -
9e145a7ae670 need unfix, when changed via at:put:
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
   321
    "/ some machines have the arguments/receiver etc. kept in register vars ...
9e145a7ae670 need unfix, when changed via at:put:
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
   322
    "/ the unfix updates the machine-stack version of the receiver.
9e145a7ae670 need unfix, when changed via at:put:
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
   323
%{
9e145a7ae670 need unfix, when changed via at:put:
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
   324
    __UNFIXCONTEXT(self, 0);
9e145a7ae670 need unfix, when changed via at:put:
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
   325
%}.
9e145a7ae670 need unfix, when changed via at:put:
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
   326
    ^ value
9e145a7ae670 need unfix, when changed via at:put:
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
   327
!
9e145a7ae670 need unfix, when changed via at:put:
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
   328
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   329
home
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   330
    "return the immediate home of the receiver.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   331
     for block contexts, this is the methodcontext, where the block was created,
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   332
     for nested block contexts, its the surrounding blocks context.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   333
     for method-contexts this is nil."
25
e34a6267c79b *** empty log message ***
claus
parents: 12
diff changeset
   334
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   335
    ^ nil "home"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   336
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   337
3324
0295f7b3b208 Add #homeReceiver (as in ST80).
Stefan Vogel <sv@exept.de>
parents: 3258
diff changeset
   338
homeReceiver
0295f7b3b208 Add #homeReceiver (as in ST80).
Stefan Vogel <sv@exept.de>
parents: 3258
diff changeset
   339
    "return the receiver from the context, where the receiver was defined"
0295f7b3b208 Add #homeReceiver (as in ST80).
Stefan Vogel <sv@exept.de>
parents: 3258
diff changeset
   340
0295f7b3b208 Add #homeReceiver (as in ST80).
Stefan Vogel <sv@exept.de>
parents: 3258
diff changeset
   341
    ^ receiver
0295f7b3b208 Add #homeReceiver (as in ST80).
Stefan Vogel <sv@exept.de>
parents: 3258
diff changeset
   342
0295f7b3b208 Add #homeReceiver (as in ST80).
Stefan Vogel <sv@exept.de>
parents: 3258
diff changeset
   343
    "Created: / 5.3.1998 / 16:18:26 / stefan"
0295f7b3b208 Add #homeReceiver (as in ST80).
Stefan Vogel <sv@exept.de>
parents: 3258
diff changeset
   344
!
0295f7b3b208 Add #homeReceiver (as in ST80).
Stefan Vogel <sv@exept.de>
parents: 3258
diff changeset
   345
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   346
instVarAt:index
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
   347
    "have to catch instVar access to retVal and handle - they are invalid.
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
   348
     Notice, that one of the next ST/X versions will get some syntactic
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
   349
     extension to get this automatically)."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   350
3508
4b45b39011c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
   351
    (index == 2) ifTrue:[^ self sender]."/ sender - must be accessed specially
3182
2526de1e5030 dont allow setting of the sender via instVarAt:put:
Claus Gittinger <cg@exept.de>
parents: 3143
diff changeset
   352
    (index == 8) ifTrue:[^ nil].	"/ retvalTemp - invisible
2526de1e5030 dont allow setting of the sender via instVarAt:put:
Claus Gittinger <cg@exept.de>
parents: 3143
diff changeset
   353
    (index == 9) ifTrue:[^ nil].	"/ handle to machine stack - invisible
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   354
    ^ super instVarAt:index
a27a279701f8 Initial revision
claus
parents:
diff changeset
   355
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   356
a27a279701f8 Initial revision
claus
parents:
diff changeset
   357
instVarAt:index put:value
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
   358
    "have to catch instVar access to retVal and handle - they are invalid.
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
   359
     Notice, that one of the next ST/X versions will get some syntactic
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
   360
     extension to get this automatically)."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   361
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   362
    (index == 2) ifTrue:[^ nil].        "/ sender - not allowed to change
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   363
    (index == 8) ifTrue:[^ nil].        "/ retvalTemp - not allowed to change
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   364
    (index == 9) ifTrue:[^ nil].        "/ handle to machine stack - not allowed to change
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   365
    super instVarAt:index put:value.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   366
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   367
    "/ need some aid for optimized code -
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   368
    "/ some machines have the arguments kept in register vars ...
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   369
    "/ the unfix updates the machine-stack version of the receiver.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   370
%{
4570
b229413c40f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4560
diff changeset
   371
    __UNFIXCONTEXT(self, 0);
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   372
%}.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   373
    ^ value
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   374
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   375
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   376
4328
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   377
javaLineNumber
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   378
    |nr pc|
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   379
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   380
    lineNr notNil ifTrue:[
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   381
        pc := lineNr bitAnd:16rFFFF.
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   382
    ].
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   383
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   384
"/ 'ask line for pc:' print. pc printCR.
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   385
    pc isNil ifTrue:[
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   386
        nr := self lineNumberFromMethod.
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   387
        nr notNil ifTrue:[
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   388
            ^ nr
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   389
        ].
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   390
        " '-> 0 [a]' printCR. " 
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   391
        ^0
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   392
    ].
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   393
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   394
    nr := self method lineNumberForPC:pc.
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   395
    nr isNil ifTrue:[
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   396
        nr := self lineNumberFromMethod.
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   397
        nr notNil ifTrue:[
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   398
            ^ nr
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   399
        ].
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   400
        " '-> 0 [b]' printCR. " 
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   401
        ^ 0
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   402
    ].
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   403
"/ '-> ' print. nr printCR.
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   404
     ^ nr.
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   405
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   406
!
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   407
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   408
lineNumber
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   409
    "this returns the lineNumber within the methods source, where the context was
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   410
     interrupted or called another method. (currently, sometimes this information
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   411
     is not available - in this case 0 is returned)"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   412
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
   413
    |l|
3923
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   414
4328
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   415
    receiver isJavaObject ifTrue:[
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   416
        "/ chances are good that I am a javContext ...
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   417
        self method isJavaMethod ifTrue:[
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   418
            ^ self javaLineNumber
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   419
        ]
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   420
    ].
9cc10bae2f98 care for contexts which really ought to be java contexts
Claus Gittinger <cg@exept.de>
parents: 3923
diff changeset
   421
3923
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   422
    lineNr notNil ifTrue:[
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   423
        l := lineNr bitAnd:16rFFFF.
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   424
    ].
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   425
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
   426
"/    self isJavaContext ifTrue:[ |nr m|
3923
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   427
"/        m := self method.
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   428
"/        l isNil ifTrue:[
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   429
"/            m notNil ifTrue:[
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   430
"/                nr := m lineNumber
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   431
"/            ].
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   432
"/            nr notNil ifTrue:[
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   433
"/                ^ nr
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   434
"/            ].
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   435
"/            ^0
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   436
"/        ].
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   437
"/        nr := self method lineNumberForPC:l.
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   438
"/        nr isNil ifTrue:[
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   439
"/            m notNil ifTrue:[
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   440
"/                nr := m lineNumber
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   441
"/            ].
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   442
"/            nr notNil ifTrue:[
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   443
"/                ^ nr
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   444
"/            ].
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   445
"/            ^ 0
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   446
"/        ].
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   447
"/         ^ nr.
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   448
"/    ].
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   449
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   450
    ^ l
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   451
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   452
    "Modified: / 10.11.1998 / 13:19:48 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   453
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   454
4450
5a8cc3958be2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4393
diff changeset
   455
lineNumberFromMethod
5a8cc3958be2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4393
diff changeset
   456
   ^ 1
5a8cc3958be2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4393
diff changeset
   457
!
5a8cc3958be2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4393
diff changeset
   458
8488
9ee7c782f48e New: #message
Stefan Vogel <sv@exept.de>
parents: 8357
diff changeset
   459
message
9ee7c782f48e New: #message
Stefan Vogel <sv@exept.de>
parents: 8357
diff changeset
   460
    ^ Message selector:selector arguments:self args
9ee7c782f48e New: #message
Stefan Vogel <sv@exept.de>
parents: 8357
diff changeset
   461
9ee7c782f48e New: #message
Stefan Vogel <sv@exept.de>
parents: 8357
diff changeset
   462
    "
9355
860d76b815aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
   463
     thisContext methodHome message
860d76b815aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
   464
     thisContext message
8488
9ee7c782f48e New: #message
Stefan Vogel <sv@exept.de>
parents: 8357
diff changeset
   465
    "
9ee7c782f48e New: #message
Stefan Vogel <sv@exept.de>
parents: 8357
diff changeset
   466
!
9ee7c782f48e New: #message
Stefan Vogel <sv@exept.de>
parents: 8357
diff changeset
   467
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   468
method
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
   469
    "return the method for which the receiver was created.
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
   470
     To save time during normal execution, this information is not held in the
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
   471
     context, but computed here on request."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   472
3508
4b45b39011c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
   473
    |c sender sendersSelector m|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   474
325
claus
parents: 308
diff changeset
   475
    c := self searchClass.
claus
parents: 308
diff changeset
   476
    "
claus
parents: 308
diff changeset
   477
     the below cannot happen in normal circumstances
claus
parents: 308
diff changeset
   478
     (added to avoid recursive errors in case of a broken sender chain)
claus
parents: 308
diff changeset
   479
    "
claus
parents: 308
diff changeset
   480
    c isBehavior ifFalse:[
3143
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   481
	'Context [error]: non class in searchClass' errorPrintCR.
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   482
	'      selector: ' errorPrint. selector errorPrint.
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   483
	' receiver: ' errorPrint. receiver errorPrintCR.
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   484
	^ nil
325
claus
parents: 308
diff changeset
   485
    ].
claus
parents: 308
diff changeset
   486
328
claus
parents: 326
diff changeset
   487
    c := c whichClassIncludesSelector:selector.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   488
    c notNil ifTrue:[
3143
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   489
	^ c compiledMethodAt:selector
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   490
    ].
216
a8abff749575 *** empty log message ***
claus
parents: 212
diff changeset
   491
3508
4b45b39011c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
   492
    "mhmh - seems to be a context for an unbound method (as generated by doIt);
216
a8abff749575 *** empty log message ***
claus
parents: 212
diff changeset
   493
     look in the senders context. Consider this a kludge.
3143
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   494
     (maybe it was not too good of an idea to NOT keep the current
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   495
      method in the context ...)
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   496
     Future versions of ST/X's message lookup may store the method in
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   497
     the context.
216
a8abff749575 *** empty log message ***
claus
parents: 212
diff changeset
   498
    "
2368
f13bc879cb45 dont allow direct access to sender
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   499
    sender := self sender.
3143
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   500
    sender notNil ifTrue:[
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   501
	sendersSelector := sender selector.
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   502
	sendersSelector notNil ifTrue:[
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   503
	    (sendersSelector startsWith:'valueWithReceiver:') ifTrue:[
3508
4b45b39011c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
   504
		m := sender receiver.
4b45b39011c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
   505
		m isMethod ifTrue:[
4b45b39011c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
   506
		    ^ m
4b45b39011c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
   507
		]
3143
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   508
	    ]
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   509
	]
216
a8abff749575 *** empty log message ***
claus
parents: 212
diff changeset
   510
    ].
a8abff749575 *** empty log message ***
claus
parents: 212
diff changeset
   511
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   512
    ^ nil
2135
6bd144c1c358 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 1853
diff changeset
   513
3143
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   514
    "Modified: / 4.1.1998 / 21:15:32 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   515
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   516
212
3edd10edefaf *** empty log message ***
claus
parents: 202
diff changeset
   517
methodClass
3edd10edefaf *** empty log message ***
claus
parents: 202
diff changeset
   518
    "return the class in which the method for which the receiver was created is."
3edd10edefaf *** empty log message ***
claus
parents: 202
diff changeset
   519
1456
a544a722ec32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1426
diff changeset
   520
    |cls m|
a544a722ec32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1426
diff changeset
   521
a544a722ec32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1426
diff changeset
   522
    cls := self searchClass.
3923
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   523
    (cls isMeta
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   524
     and:[cls soleInstance isJavaClass]) ifTrue:[
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   525
        cls := cls soleInstance
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   526
    ].
1456
a544a722ec32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1426
diff changeset
   527
3923
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   528
    [cls notNil] whileTrue:[
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   529
        cls := cls whichClassIncludesSelector:selector.
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   530
        cls isNil ifTrue:[^ nil].
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   531
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   532
        m := cls compiledMethodAt:selector.
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   533
        m notNil ifTrue:[
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   534
            m isIgnored ifFalse:[^ cls].
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   535
        ].
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   536
        cls := cls superclass
1456
a544a722ec32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1426
diff changeset
   537
    ].
a544a722ec32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1426
diff changeset
   538
    ^ cls
a544a722ec32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1426
diff changeset
   539
3923
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
   540
    "Modified: / 5.11.1998 / 19:07:43 / cg"
212
3edd10edefaf *** empty log message ***
claus
parents: 202
diff changeset
   541
!
3edd10edefaf *** empty log message ***
claus
parents: 202
diff changeset
   542
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   543
methodHome
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   544
    "return the method-home - for method contexts this is the receiver"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   545
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   546
    ^ self
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   547
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   548
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   549
ntemp
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   550
    "return the number of temporary variables of the Block/Method.
1810
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   551
     (for debugging only).
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   552
     I dont like the name of this method; its here for compatibility."
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   553
1810
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   554
    ^ self numTemps
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   555
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   556
    "Modified: 23.10.1996 / 16:19:06 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   557
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   558
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   559
numArgs
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   560
    "return the number of arguments to the Block/Method"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   561
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   562
%{  /* NOCONTEXT */
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   563
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8910
diff changeset
   564
    RETURN ( __mkSmallInteger( (__intVal(__INST(flags)) >> __NARG_SHIFT) & __NARG_MASK) );
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   565
%}
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   566
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   567
1810
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   568
numTemps
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   569
    "return the number of temporary variables of the Block/Method.
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   570
     (for debugging only)"
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   571
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   572
    ^ self size - self numArgs - self numVars
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   573
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   574
    "Created: 23.10.1996 / 16:19:10 / cg"
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   575
    "Modified: 23.10.1996 / 16:19:48 / cg"
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   576
!
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   577
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   578
numVars
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   579
    "return the number of local variables of the Block/Method"
536
dcffd1753902 be safe, when accessing a contexts sender.
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   580
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   581
%{  /* NOCONTEXT */
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   582
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8910
diff changeset
   583
    RETURN ( __mkSmallInteger( (__intVal(__INST(flags)) >> __NVAR_SHIFT) & __NVAR_MASK) );
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   584
%}
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   585
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   586
1810
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   587
nvars
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   588
    "return the number of local variables of the Block/Method.
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   589
     I dont like the name of this method; its here for compatibility."
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   590
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   591
    ^ self numVars
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   592
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   593
    "Modified: 23.10.1996 / 16:18:44 / cg"
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   594
!
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   595
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   596
receiver
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   597
    "return the receiver of the context"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   598
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   599
    ^ receiver
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   600
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   601
4543
0f7eab60dea4 Add #receiver:
Stefan Vogel <sv@exept.de>
parents: 4505
diff changeset
   602
receiver:aCompiledCode
0f7eab60dea4 Add #receiver:
Stefan Vogel <sv@exept.de>
parents: 4505
diff changeset
   603
    "set the receiver of the message"
0f7eab60dea4 Add #receiver:
Stefan Vogel <sv@exept.de>
parents: 4505
diff changeset
   604
4560
618151751813 Need _UNFIXCONTEXT() when changing receiver.
Stefan Vogel <sv@exept.de>
parents: 4557
diff changeset
   605
    receiver := aCompiledCode.
4543
0f7eab60dea4 Add #receiver:
Stefan Vogel <sv@exept.de>
parents: 4505
diff changeset
   606
4560
618151751813 Need _UNFIXCONTEXT() when changing receiver.
Stefan Vogel <sv@exept.de>
parents: 4557
diff changeset
   607
    "/ need some aid for optimized code -
618151751813 Need _UNFIXCONTEXT() when changing receiver.
Stefan Vogel <sv@exept.de>
parents: 4557
diff changeset
   608
    "/ some machines have the arguments kept in register vars ...
618151751813 Need _UNFIXCONTEXT() when changing receiver.
Stefan Vogel <sv@exept.de>
parents: 4557
diff changeset
   609
    "/ the unfix updates the machine-stack version of the receiver.
618151751813 Need _UNFIXCONTEXT() when changing receiver.
Stefan Vogel <sv@exept.de>
parents: 4557
diff changeset
   610
%{
4570
b229413c40f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4560
diff changeset
   611
    __UNFIXCONTEXT(self, 0);
4560
618151751813 Need _UNFIXCONTEXT() when changing receiver.
Stefan Vogel <sv@exept.de>
parents: 4557
diff changeset
   612
%}.
4543
0f7eab60dea4 Add #receiver:
Stefan Vogel <sv@exept.de>
parents: 4505
diff changeset
   613
0f7eab60dea4 Add #receiver:
Stefan Vogel <sv@exept.de>
parents: 4505
diff changeset
   614
!
0f7eab60dea4 Add #receiver:
Stefan Vogel <sv@exept.de>
parents: 4505
diff changeset
   615
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   616
searchClass
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   617
    "this is the class where the method-lookup started;
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   618
     for normal sends, it is nil (or sometimes the receivers class).
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   619
     For supersends, its the superclass of the one, in which the
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   620
     caller was defined."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   621
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   622
    searchClass notNil ifTrue:[^ searchClass].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   623
    ^ receiver class
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   624
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   625
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   626
selector
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   627
    "return the selector of the method for which the context was created"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   628
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   629
    ^ selector
536
dcffd1753902 be safe, when accessing a contexts sender.
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   630
!
dcffd1753902 be safe, when accessing a contexts sender.
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   631
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   632
sender
a27a279701f8 Initial revision
claus
parents:
diff changeset
   633
    "return the sender of the context"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   634
536
dcffd1753902 be safe, when accessing a contexts sender.
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   635
%{  /* NOCONTEXT */
1668
41db5950f9ea oops - con local variables are now renamed (last change in stc)
Claus Gittinger <cg@exept.de>
parents: 1492
diff changeset
   636
    OBJ theContext;
536
dcffd1753902 be safe, when accessing a contexts sender.
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   637
3508
4b45b39011c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
   638
    theContext = __INST(sender_);
949
3816e831f5f3 commentary
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   639
    /*
3816e831f5f3 commentary
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   640
     * this special nil test is for the very first context (startup-context);
3816e831f5f3 commentary
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   641
     * actually, its cosmetics, to avoid a visible nil>>nil context in the debugger.
3816e831f5f3 commentary
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   642
     */
2205
ef9bf05e4bc8 faster search support
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   643
    if (__isNonNilObject(theContext)) {
949
3816e831f5f3 commentary
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   644
1668
41db5950f9ea oops - con local variables are now renamed (last change in stc)
Claus Gittinger <cg@exept.de>
parents: 1492
diff changeset
   645
	if (__isLazy(theContext)) {
536
dcffd1753902 be safe, when accessing a contexts sender.
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   646
	    /*
dcffd1753902 be safe, when accessing a contexts sender.
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   647
	     * this cannot happen
dcffd1753902 be safe, when accessing a contexts sender.
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   648
	     */
2212
be31fd0cea4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2205
diff changeset
   649
	    __PATCHUPCONTEXT(theContext);
536
dcffd1753902 be safe, when accessing a contexts sender.
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   650
	}
3508
4b45b39011c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
   651
	if (! __isNonLIFO(theContext)) {
4b45b39011c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
   652
	    /* 
4b45b39011c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
   653
	     * to be prepared for the worst situation 
4b45b39011c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
   654
	     * (the sender is not stored, so the trap wont catch it)
4b45b39011c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
   655
	     * make the writeBarrier trigger manually.
4b45b39011c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
   656
	     * We'll see, if this is really required.
4b45b39011c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
   657
	     */
4b45b39011c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
   658
	    theContext->o_space |= CATCHMARK;
4b45b39011c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
   659
	    _markNonLIFO(theContext);
4b45b39011c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
   660
	}
536
dcffd1753902 be safe, when accessing a contexts sender.
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   661
    }
2368
f13bc879cb45 dont allow direct access to sender
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   662
    RETURN (theContext);
f13bc879cb45 dont allow direct access to sender
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   663
%}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   664
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   665
2510
393a51424d60 avoid marking context as nonLifo (in unwind:)
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   666
senderIsNil
393a51424d60 avoid marking context as nonLifo (in unwind:)
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   667
    "return true, if I have no sender"
393a51424d60 avoid marking context as nonLifo (in unwind:)
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   668
393a51424d60 avoid marking context as nonLifo (in unwind:)
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   669
%{  /* NOCONTEXT */
393a51424d60 avoid marking context as nonLifo (in unwind:)
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   670
    if ( __INST(sender_) == nil ) {
5422
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
   671
        RETURN (true);
2510
393a51424d60 avoid marking context as nonLifo (in unwind:)
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   672
    }
393a51424d60 avoid marking context as nonLifo (in unwind:)
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   673
    RETURN (false);
5422
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
   674
%}.
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
   675
    ^ self sender isNil
2510
393a51424d60 avoid marking context as nonLifo (in unwind:)
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   676
!
393a51424d60 avoid marking context as nonLifo (in unwind:)
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   677
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   678
setLineNumber:aNumber
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   679
    "private entry for uncompiledCodeObject ..."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   680
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   681
    lineNr := aNumber
340
claus
parents: 339
diff changeset
   682
!
claus
parents: 339
diff changeset
   683
5749
8e3e388d1dee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   684
setNumArgs:nA numVars:nV
8e3e388d1dee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   685
    "set the number of arguments and variables"
8e3e388d1dee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   686
8e3e388d1dee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   687
%{  /* NOCONTEXT */
8910
ab8803abd335 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8772
diff changeset
   688
    INT flg;
5749
8e3e388d1dee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   689
8e3e388d1dee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   690
    flg = __intVal(__INST(flags));
8e3e388d1dee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   691
    flg = flg & ~(__NARG_MASK << __NARG_SHIFT);
8e3e388d1dee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   692
    flg = flg & ~(__NVAR_MASK << __NVAR_SHIFT);
8e3e388d1dee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   693
    flg = flg | __intVal(nA) << __NARG_SHIFT;
8e3e388d1dee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   694
    flg = flg | __intVal(nV) << __NVAR_SHIFT;
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8910
diff changeset
   695
    __INST(flags) = __mkSmallInteger(flg);
5749
8e3e388d1dee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   696
%}
8e3e388d1dee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   697
!
8e3e388d1dee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   698
8578
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
   699
tempAt:index 
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
   700
    "return the n'th stack-temporary variable"
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
   701
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
   702
    ^ self at:index
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
   703
!
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
   704
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 170
diff changeset
   705
temporaries 
40ca7cc6fb9c *** empty log message ***
claus
parents: 170
diff changeset
   706
    "return an array filled with the temporaries of this context"
40ca7cc6fb9c *** empty log message ***
claus
parents: 170
diff changeset
   707
308
f04744ef7b5d *** empty log message ***
claus
parents: 302
diff changeset
   708
    |nonTemps mySize|
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 170
diff changeset
   709
1810
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   710
    nonTemps := self numArgs + self numVars.
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   711
    mySize := self numTemps.
3130
6cef19640207 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   712
    mySize == 0 ifTrue:[
6cef19640207 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   713
	"/ little optimization here - avaoid creating empty containers
6cef19640207 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   714
	^ #()
6cef19640207 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   715
    ].
308
f04744ef7b5d *** empty log message ***
claus
parents: 302
diff changeset
   716
    ^ (Array new:mySize) replaceFrom:1 to:mySize with:self startingAt:nonTemps+1
1810
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   717
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   718
    "Modified: 23.10.1996 / 16:20:00 / cg"
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 170
diff changeset
   719
!
40ca7cc6fb9c *** empty log message ***
claus
parents: 170
diff changeset
   720
10
claus
parents: 5
diff changeset
   721
varAt:n
claus
parents: 5
diff changeset
   722
    "return the n'th local variable"
claus
parents: 5
diff changeset
   723
154
d4236ec280a6 *** empty log message ***
claus
parents: 141
diff changeset
   724
    ^ self at:(n + self numArgs)
10
claus
parents: 5
diff changeset
   725
!
claus
parents: 5
diff changeset
   726
claus
parents: 5
diff changeset
   727
varAt:n put:value
claus
parents: 5
diff changeset
   728
    "set the n'th local variable - useful when the receiver should be restarted
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
   729
     or continued"
10
claus
parents: 5
diff changeset
   730
154
d4236ec280a6 *** empty log message ***
claus
parents: 141
diff changeset
   731
    self at:(n + self numArgs) put:value
10
claus
parents: 5
diff changeset
   732
!
claus
parents: 5
diff changeset
   733
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   734
vars 
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   735
    "return an array filled with the local variables of this context"
375
claus
parents: 360
diff changeset
   736
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   737
    |nonVars mySize|
360
claus
parents: 345
diff changeset
   738
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   739
    nonVars := self numArgs.
1810
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   740
    mySize := self numVars.
3130
6cef19640207 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   741
    mySize == 0 ifTrue:[
6cef19640207 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   742
	"/ little optimization here - avaoid creating empty containers
6cef19640207 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   743
	^ #()
6cef19640207 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   744
    ].
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   745
    ^ (Array new:mySize) replaceFrom:1 to:mySize with:self startingAt:nonVars+1
1810
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   746
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
   747
    "Modified: 23.10.1996 / 16:20:06 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   748
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   749
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   750
!Context methodsFor:'copying'!
415
claus
parents: 406
diff changeset
   751
10943
bedcd1e5d31a deepCopy change
ab
parents: 10804
diff changeset
   752
deepCopyUsing:aDictionary postCopySelector:postCopySelector
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   753
    "raise an error - deepCopy is not allowed for contexts"
37
d9a302eaa3ef *** empty log message ***
claus
parents: 25
diff changeset
   754
10136
5e82e27705cc partial support for copying (but not resumable)
fm
parents: 9355
diff changeset
   755
    |copyOfMe|
3350
40dc4807a6d4 must catch #deppCopyUsing: instead of #deepCopy.
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
   756
10136
5e82e27705cc partial support for copying (but not resumable)
fm
parents: 9355
diff changeset
   757
    copyOfMe := self shallowCopy.
5e82e27705cc partial support for copying (but not resumable)
fm
parents: 9355
diff changeset
   758
    copyOfMe setSender:nil.
10943
bedcd1e5d31a deepCopy change
ab
parents: 10804
diff changeset
   759
    copyOfMe perform:postCopySelector with:self.
10136
5e82e27705cc partial support for copying (but not resumable)
fm
parents: 9355
diff changeset
   760
    ^ copyOfMe
5e82e27705cc partial support for copying (but not resumable)
fm
parents: 9355
diff changeset
   761
5e82e27705cc partial support for copying (but not resumable)
fm
parents: 9355
diff changeset
   762
    "Created: / 31-03-1998 / 15:51:14 / cg"
5e82e27705cc partial support for copying (but not resumable)
fm
parents: 9355
diff changeset
   763
    "Modified: / 20-10-2006 / 14:54:12 / User"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   764
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   765
77
6c38ca59927f *** empty log message ***
claus
parents: 69
diff changeset
   766
!Context methodsFor:'error handling'!
6c38ca59927f *** empty log message ***
claus
parents: 69
diff changeset
   767
6c38ca59927f *** empty log message ***
claus
parents: 69
diff changeset
   768
invalidReturn:returnValue
6c38ca59927f *** empty log message ***
claus
parents: 69
diff changeset
   769
    "this message is sent by the VM, when a methods context
6c38ca59927f *** empty log message ***
claus
parents: 69
diff changeset
   770
     which has already returned is about to return again.
6c38ca59927f *** empty log message ***
claus
parents: 69
diff changeset
   771
     (i.e. about to execute a return from an already returned
105
7fe3d60db5e1 invalid return now raises a signal
claus
parents: 92
diff changeset
   772
      method in a block).
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
   773
    We raise a signal here, to allow catching of that situation."
77
6c38ca59927f *** empty log message ***
claus
parents: 69
diff changeset
   774
406
claus
parents: 402
diff changeset
   775
    "
claus
parents: 402
diff changeset
   776
     in previous versions of ST/X and ST-80, this was no error;
claus
parents: 402
diff changeset
   777
     (instead, a normal blockreturn was performed to the value-sender).
claus
parents: 402
diff changeset
   778
     From a note in comp.lang.smalltalk, I conclude that new ST-80 versions
claus
parents: 402
diff changeset
   779
     now raise an error if this happens.
claus
parents: 402
diff changeset
   780
     Comment out the raise below to get that (old) behavior
claus
parents: 402
diff changeset
   781
     BETTER REWRITE YOUR APPLICATION
claus
parents: 402
diff changeset
   782
    " 
3258
2d96bba62ff1 use another error message if attempting to
Claus Gittinger <cg@exept.de>
parents: 3182
diff changeset
   783
"/ old behavior:
2d96bba62ff1 use another error message if attempting to
Claus Gittinger <cg@exept.de>
parents: 3182
diff changeset
   784
"/  ^ returnValue
2d96bba62ff1 use another error message if attempting to
Claus Gittinger <cg@exept.de>
parents: 3182
diff changeset
   785
282
94f5c3a6230d *** empty log message ***
claus
parents: 216
diff changeset
   786
"/ new behavior:
94f5c3a6230d *** empty log message ***
claus
parents: 216
diff changeset
   787
3258
2d96bba62ff1 use another error message if attempting to
Claus Gittinger <cg@exept.de>
parents: 3182
diff changeset
   788
    "/ if this context is one of another process,
2d96bba62ff1 use another error message if attempting to
Claus Gittinger <cg@exept.de>
parents: 3182
diff changeset
   789
    "/ use another error message.
2d96bba62ff1 use another error message if attempting to
Claus Gittinger <cg@exept.de>
parents: 3182
diff changeset
   790
2d96bba62ff1 use another error message if attempting to
Claus Gittinger <cg@exept.de>
parents: 3182
diff changeset
   791
    (home notNil and:[home sender notNil]) ifTrue:[
6002
b20b4778e07d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6000
diff changeset
   792
        ^ CannotReturnError 
3258
2d96bba62ff1 use another error message if attempting to
Claus Gittinger <cg@exept.de>
parents: 3182
diff changeset
   793
            raiseRequestWith:returnValue
2d96bba62ff1 use another error message if attempting to
Claus Gittinger <cg@exept.de>
parents: 3182
diff changeset
   794
            errorString:'cannot return from another process''s context'.
2d96bba62ff1 use another error message if attempting to
Claus Gittinger <cg@exept.de>
parents: 3182
diff changeset
   795
    ].
2d96bba62ff1 use another error message if attempting to
Claus Gittinger <cg@exept.de>
parents: 3182
diff changeset
   796
6002
b20b4778e07d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6000
diff changeset
   797
    ^ CannotReturnError 
3258
2d96bba62ff1 use another error message if attempting to
Claus Gittinger <cg@exept.de>
parents: 3182
diff changeset
   798
        raiseRequestWith:returnValue.
282
94f5c3a6230d *** empty log message ***
claus
parents: 216
diff changeset
   799
3258
2d96bba62ff1 use another error message if attempting to
Claus Gittinger <cg@exept.de>
parents: 3182
diff changeset
   800
    "Modified: / 2.2.1998 / 15:19:52 / cg"
406
claus
parents: 402
diff changeset
   801
!
claus
parents: 402
diff changeset
   802
claus
parents: 402
diff changeset
   803
invalidReturnOrRestart:returnValue
claus
parents: 402
diff changeset
   804
    "this message is sent by the VM, when a methods context
claus
parents: 402
diff changeset
   805
     which was compiled non-returnable is about to return again.
claus
parents: 402
diff changeset
   806
     We raise a signal here, to allow catching of that situation."
claus
parents: 402
diff changeset
   807
6002
b20b4778e07d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6000
diff changeset
   808
    ^ CannotReturnError
b20b4778e07d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6000
diff changeset
   809
        raiseRequestWith:returnValue
b20b4778e07d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6000
diff changeset
   810
        errorString:'method was compiled non-resumable'
360
claus
parents: 345
diff changeset
   811
!
claus
parents: 345
diff changeset
   812
claus
parents: 345
diff changeset
   813
invalidReturnOrRestartError:how with:value
claus
parents: 345
diff changeset
   814
    "common error reporter for restart/return errors"
claus
parents: 345
diff changeset
   815
    
claus
parents: 345
diff changeset
   816
    self canReturn ifTrue:[
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   817
        "
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   818
         tried to return from/restart a context which is already dead
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   819
         (i.e. the method/block has already executed a return)
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   820
        "
6002
b20b4778e07d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6000
diff changeset
   821
        ^ CannotReturnError 
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   822
              raiseRequestWith:value
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   823
              errorString:(how , ' context not on calling chain')
360
claus
parents: 345
diff changeset
   824
    ].
claus
parents: 345
diff changeset
   825
    "
claus
parents: 345
diff changeset
   826
     tried to return from/restart a context of a method which was compiled
claus
parents: 345
diff changeset
   827
     unrestartable or of a block (which is never restartable)
claus
parents: 345
diff changeset
   828
    "
6002
b20b4778e07d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6000
diff changeset
   829
    ^ CannotReturnError 
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   830
          raiseRequestWith:value
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   831
          errorString:(how , ' context cannot be restarted/returned from')
77
6c38ca59927f *** empty log message ***
claus
parents: 69
diff changeset
   832
! !
6c38ca59927f *** empty log message ***
claus
parents: 69
diff changeset
   833
6404
8829851ad93f lineNumbers (kludge)
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   834
!Context methodsFor:'fixups'!
8829851ad93f lineNumbers (kludge)
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   835
8829851ad93f lineNumbers (kludge)
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   836
fixAllLineNumbers
8829851ad93f lineNumbers (kludge)
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   837
%{
8829851ad93f lineNumbers (kludge)
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   838
    __PATCHUPCONTEXTS(__thisContext);
6424
d9277542f026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   839
    __CONTEXTLINENOS(self);
6404
8829851ad93f lineNumbers (kludge)
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   840
%}
8829851ad93f lineNumbers (kludge)
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   841
! !
8829851ad93f lineNumbers (kludge)
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   842
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   843
!Context methodsFor:'minidebugger printing'!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   844
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   845
fullPrint
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   846
    "print the receiver, selector and args of the context 
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   847
     - used only for MiniDebuggers walkback print"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   848
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   849
    self receiverPrintString print. ' ' print. selector print.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   850
    self size ~~ 0 ifTrue: [
3143
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   851
	' ' print. self argsDisplayString print
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   852
    ].
1426
3b565d5d0791 printNL -> printCR
Claus Gittinger <cg@exept.de>
parents: 1334
diff changeset
   853
    ' [' print. self lineNumber print. ']' printCR
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   854
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   855
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   856
     thisContext fullPrint
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   857
    "
1426
3b565d5d0791 printNL -> printCR
Claus Gittinger <cg@exept.de>
parents: 1334
diff changeset
   858
3b565d5d0791 printNL -> printCR
Claus Gittinger <cg@exept.de>
parents: 1334
diff changeset
   859
    "Modified: 20.5.1996 / 10:27:14 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   860
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   861
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   862
fullPrintAll
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   863
    "print a full walkback starting at the receiver
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   864
     - used only for MiniDebuggers walkback print"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   865
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   866
    |context|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   867
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   868
    context := self.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   869
    [context notNil] whileTrue: [
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   870
	context fullPrint.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   871
	context := context sender
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   872
    ]
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   873
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   874
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   875
     thisContext fullPrintAll
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   876
    "
2173
01ad5ffe0c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
   877
!
01ad5ffe0c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
   878
4674
7d0587e2d6a1 *** empty log message ***
ps
parents: 4635
diff changeset
   879
fullPrintAllLevels:nOrNil
7d0587e2d6a1 *** empty log message ***
ps
parents: 4635
diff changeset
   880
    "print a full walkback starting at the receiver, only print n levels
7d0587e2d6a1 *** empty log message ***
ps
parents: 4635
diff changeset
   881
     - used only for MiniDebuggers walkback print"
7d0587e2d6a1 *** empty log message ***
ps
parents: 4635
diff changeset
   882
7d0587e2d6a1 *** empty log message ***
ps
parents: 4635
diff changeset
   883
    |context count|
7d0587e2d6a1 *** empty log message ***
ps
parents: 4635
diff changeset
   884
7d0587e2d6a1 *** empty log message ***
ps
parents: 4635
diff changeset
   885
    count := 0.
7d0587e2d6a1 *** empty log message ***
ps
parents: 4635
diff changeset
   886
    context := self.
7d0587e2d6a1 *** empty log message ***
ps
parents: 4635
diff changeset
   887
    [context notNil] whileTrue: [
7d0587e2d6a1 *** empty log message ***
ps
parents: 4635
diff changeset
   888
        context fullPrint.
7d0587e2d6a1 *** empty log message ***
ps
parents: 4635
diff changeset
   889
        context := context sender.
5911
b9b601514f13 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5780
diff changeset
   890
        nOrNil notNil ifTrue:[
4674
7d0587e2d6a1 *** empty log message ***
ps
parents: 4635
diff changeset
   891
            (count := count+1) > nOrNil ifTrue:[^self].
7d0587e2d6a1 *** empty log message ***
ps
parents: 4635
diff changeset
   892
        ]
7d0587e2d6a1 *** empty log message ***
ps
parents: 4635
diff changeset
   893
    ]
7d0587e2d6a1 *** empty log message ***
ps
parents: 4635
diff changeset
   894
7d0587e2d6a1 *** empty log message ***
ps
parents: 4635
diff changeset
   895
    "
6648
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
   896
     thisContext fullPrintAllLevels:5
4674
7d0587e2d6a1 *** empty log message ***
ps
parents: 4635
diff changeset
   897
    "
7d0587e2d6a1 *** empty log message ***
ps
parents: 4635
diff changeset
   898
7d0587e2d6a1 *** empty log message ***
ps
parents: 4635
diff changeset
   899
    "Created: / 3.9.1999 / 14:02:38 / ps"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   900
! !
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   901
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   902
!Context methodsFor:'non local control flow'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   903
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   904
evaluateUnwindActionsUpTo:aContext
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   905
    "walk up the calling chain, looking for unwind-cleanup actions to
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   906
     be performed. This depends upon those contexts being specially
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   907
     marked using #markForUnwind.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   908
     Returns the argument (i.e. non-nil), if all went well,
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   909
     nil if aContext is not on the caller chain (definitely an error)"
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   910
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   911
    |con unwindBlock|
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   912
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   913
    "
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   914
     start with this context, moving up, looking for unwind actions
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   915
    "
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   916
    con := self findNextUnwindContextOr:aContext.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   917
    [con notNil and:[con ~~ aContext]] whileTrue:[
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   918
        unwindBlock := con receiver unwindHandlerInContext:con.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   919
        con unmarkForUnwind.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   920
        unwindBlock value.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   921
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   922
        con := con findNextUnwindContextOr:aContext.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   923
    ].
11340
ceae06796c52 unwinding fixed for on:do:ensure:
Claus Gittinger <cg@exept.de>
parents: 11337
diff changeset
   924
    "/ mhmh - the just unwound context could itself be markedForUnwind
ceae06796c52 unwinding fixed for on:do:ensure:
Claus Gittinger <cg@exept.de>
parents: 11337
diff changeset
   925
    (con notNil and:[con isMarkedForUnwind]) ifTrue:[
ceae06796c52 unwinding fixed for on:do:ensure:
Claus Gittinger <cg@exept.de>
parents: 11337
diff changeset
   926
        unwindBlock := con receiver unwindHandlerInContext:con.
ceae06796c52 unwinding fixed for on:do:ensure:
Claus Gittinger <cg@exept.de>
parents: 11337
diff changeset
   927
        con unmarkForUnwind.
ceae06796c52 unwinding fixed for on:do:ensure:
Claus Gittinger <cg@exept.de>
parents: 11337
diff changeset
   928
        unwindBlock value.
ceae06796c52 unwinding fixed for on:do:ensure:
Claus Gittinger <cg@exept.de>
parents: 11337
diff changeset
   929
    ].
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   930
    ^ con
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   931
!
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   932
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   933
restart
a27a279701f8 Initial revision
claus
parents:
diff changeset
   934
    "restart the receiver - i.e. the method is evaluated again.
402
claus
parents: 384
diff changeset
   935
     if the context to restart already died, trigger an error.
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
   936
     This is a low level helper for unwindAndRestart.
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
   937
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
   938
     NOTICE: 
154
d4236ec280a6 *** empty log message ***
claus
parents: 141
diff changeset
   939
	 NO unwind actions are performed - this is usually not
d4236ec280a6 *** empty log message ***
claus
parents: 141
diff changeset
   940
	 what you want (see Context>>unwindAndRestart).
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
   941
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
   942
     LIMITATION: 
154
d4236ec280a6 *** empty log message ***
claus
parents: 141
diff changeset
   943
	 currently a context can only be restarted by
928
1cfc7a947c29 commentary
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
   944
	 the owning process - not from outside.
1cfc7a947c29 commentary
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
   945
	 Also, the compiler has an option (+optcontext) to create
1cfc7a947c29 commentary
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
   946
	 non-restartable contexts (which are faster).
1cfc7a947c29 commentary
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
   947
	 If such a context is restarted, a runtime error is raised."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   948
2368
f13bc879cb45 dont allow direct access to sender
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   949
%{  /* NOCONTEXT */
f13bc879cb45 dont allow direct access to sender
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   950
    if (__INST(sender_) != nil) {
3143
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   951
	__RESUMECONTEXT__(self, RESTART_VALUE, 0);
2368
f13bc879cb45 dont allow direct access to sender
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   952
    }
360
claus
parents: 345
diff changeset
   953
%}.
2368
f13bc879cb45 dont allow direct access to sender
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   954
    self sender isNil ifTrue:[^ nil].
f13bc879cb45 dont allow direct access to sender
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   955
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
   956
    "
360
claus
parents: 345
diff changeset
   957
     when we arrive here, something went wrong.
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
   958
     debugging ...
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
   959
    "
360
claus
parents: 345
diff changeset
   960
    ^ self invalidReturnOrRestartError:#restart with:nil
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   961
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   962
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   963
resume
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   964
    "resume execution in this context. I.e. as if the method called
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   965
     last by the receiver did a ^ nil.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   966
     If the context has already returned, report an error.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   967
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   968
     NOTICE:
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   969
	 NO unwind actions are performed (see Context>>unwind).
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   970
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   971
     LIMITATION: 
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   972
	 currently a context can only be resumed by
928
1cfc7a947c29 commentary
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
   973
	 the owning process - not from outside.
1cfc7a947c29 commentary
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
   974
	 Also, the compiler has an option (+optcontext) to create
1cfc7a947c29 commentary
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
   975
	 non-resumable contexts (which are faster).
1cfc7a947c29 commentary
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
   976
	 If such a context is restarted, a runtime error is raised."
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   977
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   978
    ^ self resume:nil
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   979
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   980
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   981
resume:value
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   982
    "resume the receiver - as if it got 'value' from whatever
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   983
     it called. This continues execution in the receivers method
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   984
     after the point where it did its last send.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   985
     If the context has already returned - report an error. 
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   986
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   987
     NOTICE:
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   988
         NO unwind actions are performed (see Context>>unwind:).
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   989
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   990
     LIMITATION: 
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   991
         currently a context can only be resumed by
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   992
         the owning process - not from outside.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   993
         Also, the compiler has an option (+optcontext) to create
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   994
         non-resumable contexts (which are faster).
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
   995
         If such a context is restarted, a runtime error is raised."
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   996
1668
41db5950f9ea oops - con local variables are now renamed (last change in stc)
Claus Gittinger <cg@exept.de>
parents: 1492
diff changeset
   997
    |theContext|
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   998
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
   999
    "
2510
393a51424d60 avoid marking context as nonLifo (in unwind:)
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
  1000
     starting with this context, find the one below
393a51424d60 avoid marking context as nonLifo (in unwind:)
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
  1001
     (i.e. the one that I have called) and return from it.
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1002
    "
2368
f13bc879cb45 dont allow direct access to sender
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
  1003
2510
393a51424d60 avoid marking context as nonLifo (in unwind:)
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
  1004
%{
4557
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1005
    OBJ sndr;
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1006
2510
393a51424d60 avoid marking context as nonLifo (in unwind:)
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
  1007
    theContext = __thisContext;
4557
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1008
    while (theContext != nil) {
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1009
        sndr = __ContextInstPtr(theContext)->c_sender;
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1010
        if (sndr == self) break;
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1011
        theContext = sndr;
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1012
    }
3508
4b45b39011c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
  1013
    if (theContext != nil) {
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1014
        if (__isLazy(theContext)) {
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1015
            __PATCHUPCONTEXT(theContext);
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1016
        }
2368
f13bc879cb45 dont allow direct access to sender
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
  1017
    }
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1018
%}.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1019
1668
41db5950f9ea oops - con local variables are now renamed (last change in stc)
Claus Gittinger <cg@exept.de>
parents: 1492
diff changeset
  1020
    theContext isNil ifTrue:[
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1021
        "
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1022
         tried to resume in context which is already dead
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1023
         (i.e. the method/block has already executed a return)
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1024
        "
4557
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1025
        ^ thisContext invalidReturnOrRestartError:#'resume:' with:value
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1026
    ].
1668
41db5950f9ea oops - con local variables are now renamed (last change in stc)
Claus Gittinger <cg@exept.de>
parents: 1492
diff changeset
  1027
    ^ theContext return:value
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1028
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1029
4557
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1030
resumeIgnoringErrors:value
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1031
    "resume the receiver - as if it got 'value' from whatever
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1032
     it called. This continues execution in the receivers method
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1033
     after the point where it did its last send.
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1034
     If the context has already returned - simply return. 
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1035
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1036
     NOTICE:
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1037
         NO unwind actions are performed (see Context>>unwind:).
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1038
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1039
     LIMITATION: 
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1040
         currently a context can only be resumed by
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1041
         the owning process - not from outside.
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1042
         Also, the compiler has an option (+optcontext) to create
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1043
         non-resumable contexts (which are faster).
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1044
         If such a context is restarted, a runtime error is raised."
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1045
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1046
    "
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1047
     starting with this context, find the one below
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1048
     (i.e. the one that I have called) and return from it.
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1049
    "
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1050
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1051
%{
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1052
    OBJ theContext, sndr;
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1053
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1054
    theContext = __thisContext;
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1055
    while (theContext != nil) {
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1056
        sndr = __ContextInstPtr(theContext)->c_sender;
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1057
        if (sndr == self) break;
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1058
        theContext = sndr;
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1059
    }
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1060
    if (theContext != nil) {
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1061
        if (__ContextInstPtr(theContext)->c_sender) {
4635
cbbbb9d70f63 oops - error in resume
Claus Gittinger <cg@exept.de>
parents: 4570
diff changeset
  1062
            if (!((INT)(__ContextInstPtr(theContext)->c_flags) & __MASKSMALLINT(__CANNOT_RETURN))) {
cbbbb9d70f63 oops - error in resume
Claus Gittinger <cg@exept.de>
parents: 4570
diff changeset
  1063
                __RESUMECONTEXT__(theContext, value, 0);
cbbbb9d70f63 oops - error in resume
Claus Gittinger <cg@exept.de>
parents: 4570
diff changeset
  1064
            }
4557
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1065
        }
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1066
    }
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1067
%}.
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1068
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1069
    "/ no error reporting
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1070
!
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1071
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1072
resumeOnErrorProceed:value
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1073
    "resume the receiver - as if it got 'value' from whatever
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1074
     it called. This continues execution in the receivers method
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1075
     after the point where it did its last send.
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1076
     If the context has already returned - simply return. 
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1077
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1078
     NOTICE:
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1079
         NO unwind actions are performed (see Context>>unwind:).
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1080
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1081
     LIMITATION: 
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1082
         currently a context can only be resumed by
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1083
         the owning process - not from outside.
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1084
         Also, the compiler has an option (+optcontext) to create
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1085
         non-resumable contexts (which are faster).
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1086
         If such a context is restarted, a runtime error is raised."
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1087
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1088
    "
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1089
     starting with this context, find the one below
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1090
     (i.e. the one that I have called) and return from it.
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1091
    "
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1092
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1093
%{
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1094
    OBJ theContext, sndr;
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1095
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1096
    theContext = __thisContext;
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1097
    while (theContext != nil) {
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1098
        sndr = __ContextInstPtr(theContext)->c_sender;
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1099
        if (sndr == self) break;
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1100
        theContext = sndr;
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1101
    }
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1102
    if (theContext != nil) {
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1103
        if (__ContextInstPtr(theContext)->c_sender) {
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1104
            __RESUMECONTEXT__(theContext, value, 0);
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1105
        }
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1106
    }
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1107
%}.
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1108
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1109
    "/ no error reporting
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1110
!
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1111
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1112
return
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1113
    "return from this context with nil. I.e. as if it did a ^ nil.
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1114
     NOTICE:
154
d4236ec280a6 *** empty log message ***
claus
parents: 141
diff changeset
  1115
	 NO unwind actions are performed - this is usually not
d4236ec280a6 *** empty log message ***
claus
parents: 141
diff changeset
  1116
	 what you want (See Context>>unwind).
d4236ec280a6 *** empty log message ***
claus
parents: 141
diff changeset
  1117
	 This is a low level method - a helper for unwind.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1118
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1119
     LIMITATION: 
154
d4236ec280a6 *** empty log message ***
claus
parents: 141
diff changeset
  1120
	 currently a context can only be returned by
928
1cfc7a947c29 commentary
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
  1121
	 the owning process - not from outside.
1cfc7a947c29 commentary
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
  1122
	 Also, the compiler has an option (+optcontext) to create
1cfc7a947c29 commentary
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
  1123
	 non-returnable contexts (which are faster).
1cfc7a947c29 commentary
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
  1124
	 If such a context is restarted, a runtime error is raised."
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1125
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1126
    ^ self return:nil
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1127
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1128
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1129
return:value
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1130
    "return from this context as if it did a '^ value'.
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1131
     NOTICE:
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1132
         NO unwind actions are performed - this is usually not
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1133
         what you want (See Context>>unwind:).
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1134
         This is a low level method - a helper for unwind.
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1135
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1136
     LIMITATION: 
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1137
         currently a context can only be returned by
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1138
         the owning process - not from outside.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1139
         Also, the compiler has an option (+optcontext) to create
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1140
         non-returnable contexts (which are faster).
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1141
         If such a context is restarted, a runtime error is raised."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1142
2368
f13bc879cb45 dont allow direct access to sender
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
  1143
%{  /* NOCONTEXT */
f13bc879cb45 dont allow direct access to sender
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
  1144
    if (__INST(sender_) != nil) {
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1145
        __RESUMECONTEXT__(self, value, 0);
2368
f13bc879cb45 dont allow direct access to sender
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
  1146
    }
f13bc879cb45 dont allow direct access to sender
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
  1147
%}.
f13bc879cb45 dont allow direct access to sender
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
  1148
    self sender isNil ifTrue:[^ nil].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1149
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1150
    "
360
claus
parents: 345
diff changeset
  1151
     when we arrive here, something went wrong.
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1152
     debugging ...
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1153
    "
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1154
    ^ self invalidReturnOrRestartError:#'return' with:value
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1155
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1156
328
claus
parents: 326
diff changeset
  1157
returnDoing:aBlock
claus
parents: 326
diff changeset
  1158
    "return from this context as if it did a '^ aBlock value'.
claus
parents: 326
diff changeset
  1159
     The block is evaluated as if called by the receiver context;
claus
parents: 326
diff changeset
  1160
     NOT the true executing context.
claus
parents: 326
diff changeset
  1161
     NOTICE:
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1162
         NO unwind actions are performed - this is usually not
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1163
         what you want (See Context>>unwindThenDo:).
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1164
         This is a low level method - a helper for unwind.
328
claus
parents: 326
diff changeset
  1165
claus
parents: 326
diff changeset
  1166
     LIMITATION:
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1167
         currently a context can only be returned by
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1168
         the owning process - not from outside.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1169
         Also, the compiler has an option (+optcontext) to create
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1170
         non-returnable contexts (which are faster).
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1171
         If such a context is restarted, a runtime error is raised."
328
claus
parents: 326
diff changeset
  1172
4557
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  1173
%{  
2368
f13bc879cb45 dont allow direct access to sender
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
  1174
    if (__INST(sender_) != nil) {
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1175
        __RESUMECONTEXT__(self, aBlock, 2);
2368
f13bc879cb45 dont allow direct access to sender
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
  1176
    }
360
claus
parents: 345
diff changeset
  1177
%}.
2368
f13bc879cb45 dont allow direct access to sender
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
  1178
    self sender isNil ifTrue:[^ nil].
f13bc879cb45 dont allow direct access to sender
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
  1179
328
claus
parents: 326
diff changeset
  1180
    "
360
claus
parents: 345
diff changeset
  1181
     when we arrive here, something went wrong.
328
claus
parents: 326
diff changeset
  1182
     debugging ...
claus
parents: 326
diff changeset
  1183
    "
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1184
    ^ self invalidReturnOrRestartError:#'returnDoing' with:aBlock
328
claus
parents: 326
diff changeset
  1185
!
claus
parents: 326
diff changeset
  1186
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1187
unwind
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1188
    "return nil from the receiver - i.e. simulate a '^ nil'.
11337
aa51a2332343 typo in comment
Claus Gittinger <cg@exept.de>
parents: 11312
diff changeset
  1189
     If the context has already returned, report an error.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1190
     Evaluate all unwind-blocks as specified in Block>>valueNowOrOnUnwind:
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1191
     and Block>>valueOnUnwindDo: on the way.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1192
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1193
     LIMITATION: 
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1194
         currently a context can only be unwound by
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1195
         the owning process - not from outside.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1196
         i.e. it is not possible for one thread to unwind
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1197
         another threads context - which does not make sense anyway.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1198
         However, you can force another thread to do this in its own process
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1199
         context, by giving it an interrupt action - this does make sense.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1200
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1201
         Also, the compiler has an option (+optcontext) to create
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1202
         non-returnable contexts (which are faster).
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1203
         If such a context is restarted, a runtime error is raised."
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1204
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1205
    ^ self unwind:nil
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1206
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1207
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1208
unwind:value
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1209
    "return value from the receiver - i.e. simulate a '^ value'.
360
claus
parents: 345
diff changeset
  1210
     If the context has already returned , report an error.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1211
     Evaluate all unwind-blocks as specified in Block>>valueNowOrOnUnwind:
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1212
     and Block>>valueOnUnwindDo: on the way.
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1213
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1214
     LIMITATION: 
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1215
         currently a context can only be unwound by
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1216
         the owning process - not from outside.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1217
         i.e. it is not possible for one thread to unwind
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1218
         another threads context - which does not make sense anyway.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1219
         However, you can force another thread to do this in its own process
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1220
         context, by giving it an interrupt action - this does make sense.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1221
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1222
         Also, the compiler has an option (+optcontext) to create
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1223
         non-returnable contexts (which are faster).
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1224
         If such a context is restarted, a runtime error is raised."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1225
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1226
    |con|
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1227
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1228
    self senderIsNil ifFalse:[
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1229
        con := thisContext evaluateUnwindActionsUpTo:self.
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1230
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1231
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1232
    "oops, if nil, I am not on the calling chain;
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1233
     (bad bad, unwind action have already been performed.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1234
      should we check for this situation first and NOT evaluate
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1235
      the unwind actions in this case ?)
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1236
    "
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1237
    con isNil ifTrue:[
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1238
        "
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1239
         tried to return to a context which is already dead
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1240
         (i.e. the method/block has already executed a return)
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1241
        "
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1242
        ^ self invalidReturnOrRestartError:#'unwind:' with:value
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1243
    ].
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1244
    "
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1245
     now, that all unwind-actions are done, I can use the
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1246
     low-level return ...
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1247
    "
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1248
    ^ self return:value
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1249
!
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1250
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1251
unwindAndRestart
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1252
    "restart the receiver - i.e. the method is evaluated again.
402
claus
parents: 384
diff changeset
  1253
     if the context to restart already died report an error.
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1254
     Evaluate all unwind-blocks as specified in Block>>valueNowOrOnUnwind:
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1255
     and Block>>valueOnUnwindDo: before restarting.
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1256
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1257
     LIMITATION: 
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1258
         a context can only be restarted by
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1259
         the owning process - not from outside.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1260
         i.e. it is not possible for one thread to unwindAndRestart
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1261
         another threads context - which does not make sense anyway.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1262
         However, you can force another thread to do this in its own process
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1263
         context, by giving it an interrupt action - this does make sense.
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1264
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1265
         Also, the compiler has an option (+optcontext) to create
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1266
         non-restartable contexts (which are faster).
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1267
         If such a context is restarted, a runtime error is raised."
552
694ecccaa1a0 only evaluate unwind blocks once
Claus Gittinger <cg@exept.de>
parents: 536
diff changeset
  1268
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1269
    |con|
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1270
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1271
    self senderIsNil ifFalse:[
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1272
        con := thisContext evaluateUnwindActionsUpTo:self.
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1273
    ].
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1274
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1275
    "oops, if nil, I am not on the calling chain;
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1276
     (bad bad, unwind action have already been performed.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1277
      should we check for this situation first and NOT evaluate
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1278
      the unwind actions in this case ?)
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1279
    "
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1280
    con isNil ifTrue:[
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1281
        "
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1282
         tried to return to a context which is already dead
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1283
         (i.e. the method/block has already executed a return)
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1284
        "
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1285
        ^ self invalidReturnOrRestartError:#'unwindAndRestart:' with:nil
141
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1286
    ].
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1287
    "
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1288
     now, that all unwind-actions are done, I can use the
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1289
     low-level restart ...
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1290
    "
b530e69052e4 better unwind & new unwindAndRestart
claus
parents: 105
diff changeset
  1291
    ^ self restart
328
claus
parents: 326
diff changeset
  1292
!
claus
parents: 326
diff changeset
  1293
4485
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1294
unwindAndResume:value
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1295
    "resume execution in the the receiver - i.e. simulate a '^ value'
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1296
     from whatever it called last.
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1297
     If the context has already returned , report an error.
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1298
     Evaluate all unwind-blocks as specified in Block>>valueNowOrOnUnwind:
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1299
     and Block>>valueOnUnwindDo: on the way.
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1300
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1301
     LIMITATION: 
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1302
         currently a context can only be unwound by
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1303
         the owning process - not from outside.
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1304
         i.e. it is not possible for one thread to unwind
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1305
         another threads context - which does not make sense anyway.
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1306
         However, you can force another thread to do this in its own process
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1307
         context, by giving it an interrupt action - this does make sense.
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1308
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1309
         Also, the compiler has an option (+optcontext) to create
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1310
         non-returnable contexts (which are faster).
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1311
         If such a context is restarted, a runtime error is raised."
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1312
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1313
    |con|
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1314
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1315
    self senderIsNil ifFalse:[
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1316
        con := thisContext evaluateUnwindActionsUpTo:self.
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1317
    ].
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1318
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1319
    "oops, if nil, I am not on the calling chain;
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1320
     (bad bad, unwind action have already been performed.
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1321
      should we check for this situation first and NOT evaluate
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1322
      the unwind actions in this case ?)
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1323
    "
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1324
    con isNil ifTrue:[
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1325
        "
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1326
         tried to return to a context which is already dead
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1327
         (i.e. the method/block has already executed a return)
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1328
        "
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1329
        ^ self invalidReturnOrRestartError:#'unwindAndResume:' with:value
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1330
    ].
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1331
    "
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1332
     now, that all unwind-actions are done, I can use the
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1333
     low-level resume ...
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1334
    "
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1335
    ^ self resume:value
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1336
!
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1337
328
claus
parents: 326
diff changeset
  1338
unwindThenDo:aBlock 
claus
parents: 326
diff changeset
  1339
    "return the value of aBlock from the receiver - i.e. simulate a '^ aBlock value'.
360
claus
parents: 345
diff changeset
  1340
     If the context has already returned , report an error.
328
claus
parents: 326
diff changeset
  1341
     Evaluate all unwind-blocks as specified in Block>>valueNowOrOnUnwind:
claus
parents: 326
diff changeset
  1342
     and Block>>valueOnUnwindDo: on the way.
claus
parents: 326
diff changeset
  1343
     The block is evaluated AFTER all unwind actions are performed
claus
parents: 326
diff changeset
  1344
     (i.e. the blocks sender will be the receiving context, not the
402
claus
parents: 384
diff changeset
  1345
      currently executing context)
328
claus
parents: 326
diff changeset
  1346
claus
parents: 326
diff changeset
  1347
     LIMITATION: 
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1348
         currently a context can only be unwound by
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1349
         the owning process - not from outside
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1350
         i.e. it is not possible for one thread to unwindThenDo
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1351
         another threads context - which does not make sense anyway.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1352
         However, you can force another thread to do this in its own process
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1353
         context, by giving it an interrupt action - this does make sense.
328
claus
parents: 326
diff changeset
  1354
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1355
         Also, the compiler has an option (+optcontext) to create
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1356
         non-returnable contexts (which are faster).
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1357
         If such a context is restarted, a runtime error is raised."
328
claus
parents: 326
diff changeset
  1358
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1359
    |con|
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1360
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1361
    self senderIsNil ifFalse:[
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1362
        con := thisContext evaluateUnwindActionsUpTo:self.
328
claus
parents: 326
diff changeset
  1363
    ].
claus
parents: 326
diff changeset
  1364
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1365
    "oops, if nil, I am not on the calling chain;
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1366
     (bad bad, unwind action have already been performed.
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1367
      should we check for this situation first and NOT evaluate
328
claus
parents: 326
diff changeset
  1368
      the unwind actions in this case ?)
claus
parents: 326
diff changeset
  1369
    "
claus
parents: 326
diff changeset
  1370
    con isNil ifTrue:[
4477
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1371
        "
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1372
         tried to return to a context which is already dead
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1373
         (i.e. the method/block has already executed a return)
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1374
        "
ef99343d6756 better #unwind - ask receiver for handler block
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1375
        ^ self invalidReturnOrRestartError:#'unwindThenDo:' with:aBlock
328
claus
parents: 326
diff changeset
  1376
    ].
claus
parents: 326
diff changeset
  1377
    "
claus
parents: 326
diff changeset
  1378
     now, that all unwind-actions are done, I can use the
claus
parents: 326
diff changeset
  1379
     low-level return ...
claus
parents: 326
diff changeset
  1380
    "
claus
parents: 326
diff changeset
  1381
    ^ self returnDoing:aBlock 
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1382
! !
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1383
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1384
!Context methodsFor:'printing & storing'!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1385
1070
cf35b237612d in argPrint: handle invalid objects (avoids crash in MiniDebugger when debugging bad primitives)
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  1386
argStringFor:someObject
cf35b237612d in argPrint: handle invalid objects (avoids crash in MiniDebugger when debugging bad primitives)
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  1387
cf35b237612d in argPrint: handle invalid objects (avoids crash in MiniDebugger when debugging bad primitives)
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  1388
    |name|
cf35b237612d in argPrint: handle invalid objects (avoids crash in MiniDebugger when debugging bad primitives)
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  1389
%{
cf35b237612d in argPrint: handle invalid objects (avoids crash in MiniDebugger when debugging bad primitives)
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  1390
    /*
cf35b237612d in argPrint: handle invalid objects (avoids crash in MiniDebugger when debugging bad primitives)
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  1391
     * special handling for (invalid) free objects.
cf35b237612d in argPrint: handle invalid objects (avoids crash in MiniDebugger when debugging bad primitives)
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  1392
     * these only appear if some primitiveCode does not correctly use SEND macros,
cf35b237612d in argPrint: handle invalid objects (avoids crash in MiniDebugger when debugging bad primitives)
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  1393
     * which may lead to sends to free objects. In normal operation, this 'cannot' happen.
cf35b237612d in argPrint: handle invalid objects (avoids crash in MiniDebugger when debugging bad primitives)
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  1394
     */ 
cf35b237612d in argPrint: handle invalid objects (avoids crash in MiniDebugger when debugging bad primitives)
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  1395
    if (__isNonNilObject(someObject) && (__qClass(someObject)==nil)) {
cf35b237612d in argPrint: handle invalid objects (avoids crash in MiniDebugger when debugging bad primitives)
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  1396
	name = __MKSTRING("FreeObject");
cf35b237612d in argPrint: handle invalid objects (avoids crash in MiniDebugger when debugging bad primitives)
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  1397
    }
cf35b237612d in argPrint: handle invalid objects (avoids crash in MiniDebugger when debugging bad primitives)
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  1398
%}.
cf35b237612d in argPrint: handle invalid objects (avoids crash in MiniDebugger when debugging bad primitives)
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  1399
    name notNil ifTrue:[^ name].
cf35b237612d in argPrint: handle invalid objects (avoids crash in MiniDebugger when debugging bad primitives)
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  1400
    ^ someObject displayString
cf35b237612d in argPrint: handle invalid objects (avoids crash in MiniDebugger when debugging bad primitives)
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  1401
!
cf35b237612d in argPrint: handle invalid objects (avoids crash in MiniDebugger when debugging bad primitives)
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  1402
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1403
argsDisplayString
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1404
    |fullString n "{ Class: SmallInteger }" |
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1405
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1406
    fullString := ''.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1407
    n := self numArgs.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1408
    1 to:n do:[:index |
1070
cf35b237612d in argPrint: handle invalid objects (avoids crash in MiniDebugger when debugging bad primitives)
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  1409
	fullString := fullString , ' ' , (self argStringFor:(self at:index))
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1410
    ].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1411
    ^ fullString
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1412
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1413
6648
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1414
displayArgsOn:aStream
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1415
    | n "{ Class: SmallInteger }" |
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1416
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1417
    n := self numArgs.
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1418
    1 to:n do:[:index |
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1419
        aStream nextPutAll:(self argStringFor:(self at:index)).
8578
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
  1420
        aStream nextPutAll:' '.
6648
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1421
    ].
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1422
!
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1423
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1424
displayString
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1425
    "return a string describing the context - for display in Inspector" 
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1426
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1427
    ^ self class name , '(' , self printString , ')'
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1428
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1429
6648
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1430
fullPrintAllOn:aStream
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1431
    "print a full walkback starting at the receiver"
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1432
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1433
    |context|
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1434
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1435
    context := self.
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1436
    [context notNil] whileTrue: [
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1437
        context fullPrintOn:aStream.
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1438
        aStream cr.
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1439
        context := context sender
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1440
    ]
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1441
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1442
    "
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1443
     thisContext fullPrintAllOn:Transcript
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1444
    "
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1445
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1446
    "Created: 15.1.1997 / 18:09:05 / cg"
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1447
!
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1448
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1449
fullPrintOn:aStream
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1450
    "print the receiver, selector and args of the context"
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1451
8578
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
  1452
    self receiverPrintString printOn:aStream. 
11306
c0c5c6a7054a Print methods: Show message sends as Class >> #selector (with the #),
Stefan Vogel <sv@exept.de>
parents: 10943
diff changeset
  1453
    aStream nextPutAll:' >> '. 
11311
c1c7c71fecc7 printing
Claus Gittinger <cg@exept.de>
parents: 11310
diff changeset
  1454
    self selector printOn:aStream.    "show as string (as symbol looks too ugly in browser ...)"
c1c7c71fecc7 printing
Claus Gittinger <cg@exept.de>
parents: 11310
diff changeset
  1455
    "/ self selector storeOn:aStream.    "show as symbol"
8578
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
  1456
6648
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1457
    self size ~~ 0 ifTrue: [
8578
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
  1458
        aStream nextPutAll:' '. 
6648
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1459
        self displayArgsOn:aStream
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1460
    ].
10804
b8243fc0fd8b changed #fullPrintOn:
Stefan Vogel <sv@exept.de>
parents: 10549
diff changeset
  1461
    aStream nextPutAll:' {'. 
b8243fc0fd8b changed #fullPrintOn:
Stefan Vogel <sv@exept.de>
parents: 10549
diff changeset
  1462
    self identityHash printOn:aStream. 
b8243fc0fd8b changed #fullPrintOn:
Stefan Vogel <sv@exept.de>
parents: 10549
diff changeset
  1463
    aStream nextPutAll:'}'. 
b8243fc0fd8b changed #fullPrintOn:
Stefan Vogel <sv@exept.de>
parents: 10549
diff changeset
  1464
6648
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1465
    aStream nextPutAll:' ['. 
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1466
    self lineNumber printOn:aStream.
8578
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
  1467
    aStream nextPutAll:']'.
6648
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1468
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1469
    "
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1470
     thisContext fullPrintOn:Transcript
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1471
    "
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1472
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1473
    "Modified: 20.5.1996 / 10:27:14 / cg"
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1474
    "Created: 15.1.1997 / 18:09:06 / cg"
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1475
!
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1476
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1477
fullPrintString
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1478
    "return a string describing the context - this includes the linenumber,
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1479
     receiver printString and argument printString"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1480
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1481
    |s|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1482
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1483
    s := WriteStream on:String new.
6648
651b8f111a95 printing
Stefan Vogel <sv@exept.de>
parents: 6424
diff changeset
  1484
    self fullPrintOn:s.
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1485
    ^ s contents
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1486
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1487
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1488
     thisContext fullPrintString
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1489
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1490
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1491
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1492
methodPrintString
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1493
    "return a string describing the contexts method as 'implementorClass>>selector'" 
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1494
1853
09cd1e8df9a2 use new Method>>who interface
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  1495
    |mthd who|
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1496
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1497
    mthd := self method.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1498
    mthd notNil ifTrue:[
11306
c0c5c6a7054a Print methods: Show message sends as Class >> #selector (with the #),
Stefan Vogel <sv@exept.de>
parents: 10943
diff changeset
  1499
        who := mthd who.
c0c5c6a7054a Print methods: Show message sends as Class >> #selector (with the #),
Stefan Vogel <sv@exept.de>
parents: 10943
diff changeset
  1500
        who notNil ifTrue:[
c0c5c6a7054a Print methods: Show message sends as Class >> #selector (with the #),
Stefan Vogel <sv@exept.de>
parents: 10943
diff changeset
  1501
            ^ who methodClass name , ' >> #' , who methodSelector
c0c5c6a7054a Print methods: Show message sends as Class >> #selector (with the #),
Stefan Vogel <sv@exept.de>
parents: 10943
diff changeset
  1502
        ]
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1503
    ].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1504
    ^ mthd displayString.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1505
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1506
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1507
     thisContext methodPrintString 
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1508
     thisContext sender methodPrintString  
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1509
    "
1853
09cd1e8df9a2 use new Method>>who interface
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  1510
09cd1e8df9a2 use new Method>>who interface
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  1511
    "Modified: 1.11.1996 / 16:21:49 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1512
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1513
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1514
printOn:aStream
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1515
    "append a printed description of the receiver onto aStream"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1516
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1517
    aStream nextPutAll:(self receiverPrintString).
10549
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1518
    "/ aStream nextPutAll:' '.
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1519
    aStream nextPutAll:' >> '.
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1520
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1521
    aStream bold.
11310
830490e3ac43 dont use storeString of selector in #printOn:
Claus Gittinger <cg@exept.de>
parents: 11306
diff changeset
  1522
    self selector printOn:aStream.    "show as string (as symbol looks too ugly in browser ...)"
830490e3ac43 dont use storeString of selector in #printOn:
Claus Gittinger <cg@exept.de>
parents: 11306
diff changeset
  1523
    "/ self selector storeOn:aStream.    "show as symbol"
10549
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1524
    aStream normal.
4393
8f05a1ba2b10 print with lineNumber
Claus Gittinger <cg@exept.de>
parents: 4328
diff changeset
  1525
    aStream space.
8f05a1ba2b10 print with lineNumber
Claus Gittinger <cg@exept.de>
parents: 4328
diff changeset
  1526
    aStream nextPutAll:' ['; nextPutAll:self lineNumber printString; nextPutAll:']' .
8f05a1ba2b10 print with lineNumber
Claus Gittinger <cg@exept.de>
parents: 4328
diff changeset
  1527
10549
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1528
    "Modified: / 21-05-2007 / 13:29:21 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1529
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1530
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1531
receiverPrintString
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1532
    "return a string describing the receiver of the context" 
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1533
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1534
    |receiverClass receiverClassName newString implementorClass|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1535
10549
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1536
    receiverClassName := self saveReceiverClassName.
1070
cf35b237612d in argPrint: handle invalid objects (avoids crash in MiniDebugger when debugging bad primitives)
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  1537
    receiverClassName notNil ifTrue:[^ receiverClassName].
cf35b237612d in argPrint: handle invalid objects (avoids crash in MiniDebugger when debugging bad primitives)
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  1538
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1539
    receiverClass := receiver class.
3923
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1540
    receiverClass isJavaClass ifTrue:[
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1541
        receiverClassName := receiverClass displayString
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1542
    ] ifFalse:[
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1543
        (receiverClass isBehavior
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1544
        and:[receiverClass isMeta 
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1545
        and:[receiverClass soleInstance isJavaClass]]) ifTrue:[
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1546
"/            receiverClassName := receiverClass soleInstance fullName.
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1547
            receiverClassName := receiverClass name.
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1548
        ] ifFalse:[
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1549
            receiverClassName := receiverClass name.
11311
c1c7c71fecc7 printing
Claus Gittinger <cg@exept.de>
parents: 11310
diff changeset
  1550
        ].
c1c7c71fecc7 printing
Claus Gittinger <cg@exept.de>
parents: 11310
diff changeset
  1551
        [
c1c7c71fecc7 printing
Claus Gittinger <cg@exept.de>
parents: 11310
diff changeset
  1552
            receiverClassName := receiverClass name.
c1c7c71fecc7 printing
Claus Gittinger <cg@exept.de>
parents: 11310
diff changeset
  1553
        ]. [].
3923
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1554
    ].
6197
ee862dfb9da7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  1555
    (receiverClass == SmallInteger
ee862dfb9da7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  1556
    or:[receiverClass == Float]) ifTrue:[
3923
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1557
        newString := '(' , receiver printString , ') ' , receiverClassName
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1558
    ] ifFalse:[
3923
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1559
        newString := receiverClassName
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1560
    ].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1561
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1562
    selector notNil ifTrue:[
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1563
"/        implementorClass := self searchClass whichClassIncludesSelector:selector.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1564
3923
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1565
        "
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1566
         kludge to avoid slow search for containing class
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1567
        "
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1568
        (selector ~~ #doIt and:[selector ~~ #doIt:]) ifTrue:[
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1569
            implementorClass := self methodClass. 
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1570
        ].
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1571
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1572
        implementorClass notNil ifTrue: [
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1573
            (implementorClass ~~ receiverClass) ifTrue: [
10549
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1574
                "/ newString := newString , '>>>', implementorClass name printString
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1575
                newString := newString,'(',implementorClass name printString,')'
3923
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1576
            ]
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1577
        ] ifFalse:[
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1578
            self searchClass ~~ receiverClass ifTrue:[
10549
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1579
                "/ newString := newString , '>>>' , self searchClass name
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1580
                newString := newString,'(',self searchClass name,')'
3923
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1581
            ].
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1582
            "
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1583
             kludge for doIt - these unbound methods are not
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1584
             found in the classes methodDictionary
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1585
            "
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1586
            (selector ~~ #doIt and:[selector ~~ #doIt:]) ifTrue:[
10549
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1587
                "/ newString := newString , '>>>**NONE**'
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1588
                newString := newString , '(**NONE**)'
3923
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1589
            ]
c66385c00a0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3508
diff changeset
  1590
        ]
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1591
    ].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1592
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1593
    ^ newString
6197
ee862dfb9da7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  1594
10549
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1595
    "Modified: / 21-05-2007 / 13:21:24 / cg"
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1596
!
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1597
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1598
saveReceiverClassName
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1599
    "return the receivers class-name string or nil, if the receiver is invalid.
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1600
     This cares for invalid (free) objects which may appear with bad primitive code,
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1601
     and prevents a crash in such a case."
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1602
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1603
    |receiverClassName|
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1604
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1605
%{
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1606
    /*
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1607
     * special handling for (invalid) free objects.
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1608
     * these only appear if some primitiveCode does not correctly use SEND macros,
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1609
     * which may lead to sends to free objects. In normal operation, this 'cannot' happen.
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1610
     */ 
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1611
    if (__isNonNilObject(__INST(receiver)) && (__qClass(__INST(receiver))==nil)) {
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1612
        receiverClassName = __MKSTRING("FreeObject");
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1613
    }
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1614
%}.
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1615
    ^ receiverClassName
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1616
e5a55b8ae41f nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 10537
diff changeset
  1617
    "Created: / 21-05-2007 / 13:19:37 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1618
! !
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1619
7257
b9f0fb923c72 method category rename
Claus Gittinger <cg@exept.de>
parents: 6648
diff changeset
  1620
!Context methodsFor:'private-accessing'!
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1621
11340
ceae06796c52 unwinding fixed for on:do:ensure:
Claus Gittinger <cg@exept.de>
parents: 11337
diff changeset
  1622
isMarkedForUnwind
ceae06796c52 unwinding fixed for on:do:ensure:
Claus Gittinger <cg@exept.de>
parents: 11337
diff changeset
  1623
    "true if the mark for unwind flag is set in the receiver.
ceae06796c52 unwinding fixed for on:do:ensure:
Claus Gittinger <cg@exept.de>
parents: 11337
diff changeset
  1624
     The VM needs this to know that some special action is to be performed with
ceae06796c52 unwinding fixed for on:do:ensure:
Claus Gittinger <cg@exept.de>
parents: 11337
diff changeset
  1625
     this context - a highly internal mechanism and not for public use."
ceae06796c52 unwinding fixed for on:do:ensure:
Claus Gittinger <cg@exept.de>
parents: 11337
diff changeset
  1626
ceae06796c52 unwinding fixed for on:do:ensure:
Claus Gittinger <cg@exept.de>
parents: 11337
diff changeset
  1627
%{  /* NOCONTEXT */
ceae06796c52 unwinding fixed for on:do:ensure:
Claus Gittinger <cg@exept.de>
parents: 11337
diff changeset
  1628
     RETURN ( ((INT)__INST(flags) & __MASKSMALLINT(__UNWIND_MARK)) ? true : false );
ceae06796c52 unwinding fixed for on:do:ensure:
Claus Gittinger <cg@exept.de>
parents: 11337
diff changeset
  1629
%}
ceae06796c52 unwinding fixed for on:do:ensure:
Claus Gittinger <cg@exept.de>
parents: 11337
diff changeset
  1630
    "
ceae06796c52 unwinding fixed for on:do:ensure:
Claus Gittinger <cg@exept.de>
parents: 11337
diff changeset
  1631
     thisContext isMarkedForUnwind
ceae06796c52 unwinding fixed for on:do:ensure:
Claus Gittinger <cg@exept.de>
parents: 11337
diff changeset
  1632
    "
ceae06796c52 unwinding fixed for on:do:ensure:
Claus Gittinger <cg@exept.de>
parents: 11337
diff changeset
  1633
!
ceae06796c52 unwinding fixed for on:do:ensure:
Claus Gittinger <cg@exept.de>
parents: 11337
diff changeset
  1634
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1635
markForHandle
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1636
    "set the mark for exception handle flag in the receiver.
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1637
     The VM needs this to know that some special action is to be performed with
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1638
     this context - a highly internal mechanism and not for public use."
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1639
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1640
%{  /* NOCONTEXT */
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1641
     __INST(flags) = (OBJ)((INT)__INST(flags) | __MASKSMALLINT(__HANDLE_MARK));
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1642
%}
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1643
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1644
    "Modified: 13.12.1995 / 19:05:22 / cg"
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1645
!
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1646
753
81d54fc53a18 added mechanism to force a stepInterrupt whenever a context returns or unwinds
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  1647
markForInterrupt
81d54fc53a18 added mechanism to force a stepInterrupt whenever a context returns or unwinds
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  1648
    "set the interrupt flag.
81d54fc53a18 added mechanism to force a stepInterrupt whenever a context returns or unwinds
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  1649
     The VM needs this to know that some special action is to be performed with
81d54fc53a18 added mechanism to force a stepInterrupt whenever a context returns or unwinds
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  1650
     this context upon return - a highly internal mechanism and not for public use."
81d54fc53a18 added mechanism to force a stepInterrupt whenever a context returns or unwinds
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  1651
81d54fc53a18 added mechanism to force a stepInterrupt whenever a context returns or unwinds
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  1652
%{  /* NOCONTEXT */
81d54fc53a18 added mechanism to force a stepInterrupt whenever a context returns or unwinds
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  1653
     __markInterrupted(__ContextInstPtr(self));
81d54fc53a18 added mechanism to force a stepInterrupt whenever a context returns or unwinds
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  1654
%}
81d54fc53a18 added mechanism to force a stepInterrupt whenever a context returns or unwinds
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  1655
!
81d54fc53a18 added mechanism to force a stepInterrupt whenever a context returns or unwinds
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  1656
1727
362977e02372 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1726
diff changeset
  1657
markForInterruptOnUnwind
362977e02372 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1726
diff changeset
  1658
    "set the interrupt-on-unwind flag in the receiver.
362977e02372 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1726
diff changeset
  1659
     The VM will generate a stepInterrupt, when this context returns or
362977e02372 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1726
diff changeset
  1660
     is unwound. This is used by the debugger for faster single-stepping;
362977e02372 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1726
diff changeset
  1661
     - a highly internal mechanism and not for public use."
362977e02372 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1726
diff changeset
  1662
362977e02372 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1726
diff changeset
  1663
%{  /* NOCONTEXT */
3508
4b45b39011c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
  1664
     __INST(flags) = (OBJ)((INT)__INST(flags) | __MASKSMALLINT(__IRQ_ON_UNWIND));
1727
362977e02372 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1726
diff changeset
  1665
%}
362977e02372 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1726
diff changeset
  1666
!
362977e02372 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1726
diff changeset
  1667
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1668
markForRaise
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1669
    "set the mark for exception raise flag in the receiver.
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1670
     The VM needs this to know that some special action is to be performed with
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1671
     this context - a highly internal mechanism and not for public use."
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1672
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1673
%{  /* NOCONTEXT */
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1674
     __INST(flags) = (OBJ)((INT)__INST(flags) | __MASKSMALLINT(__RAISE_MARK));
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1675
%}
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1676
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1677
    "Modified: 13.12.1995 / 19:05:22 / cg"
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1678
!
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1679
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1680
markForUnwind
749
be57bbb9ad3d commentary
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
  1681
    "set the mark for unwind flag in the receiver.
be57bbb9ad3d commentary
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
  1682
     The VM needs this to know that some special action is to be performed with
be57bbb9ad3d commentary
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
  1683
     this context - a highly internal mechanism and not for public use."
be57bbb9ad3d commentary
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
  1684
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1685
%{  /* NOCONTEXT */
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  1686
     __INST(flags) = (OBJ)((INT)__INST(flags) | __MASKSMALLINT(__UNWIND_MARK));
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1687
%}
749
be57bbb9ad3d commentary
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
  1688
be57bbb9ad3d commentary
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
  1689
    "Modified: 13.12.1995 / 19:05:22 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1690
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1691
5780
6851b6dcbefa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5749
diff changeset
  1692
setHome:aContext
6851b6dcbefa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5749
diff changeset
  1693
    "set the homeContext.
6851b6dcbefa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5749
diff changeset
  1694
     DANGER: this is for experimental, internal use only (byteCode interpreters)"
6851b6dcbefa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5749
diff changeset
  1695
6851b6dcbefa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5749
diff changeset
  1696
    home := aContext.
6851b6dcbefa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5749
diff changeset
  1697
!
6851b6dcbefa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5749
diff changeset
  1698
6851b6dcbefa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5749
diff changeset
  1699
setSender:aContext
6851b6dcbefa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5749
diff changeset
  1700
    "set the sender of the context.
6851b6dcbefa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5749
diff changeset
  1701
     DANGER: this is for experimental, internal use only (byteCode interpreters)"
6851b6dcbefa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5749
diff changeset
  1702
6851b6dcbefa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5749
diff changeset
  1703
%{  /* NOCONTEXT */
6851b6dcbefa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5749
diff changeset
  1704
    __INST(sender_) = aContext;
6851b6dcbefa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5749
diff changeset
  1705
%}
6851b6dcbefa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5749
diff changeset
  1706
!
6851b6dcbefa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5749
diff changeset
  1707
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1708
unmarkForUnwind
749
be57bbb9ad3d commentary
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
  1709
    "clear the mark for unwind flag in the receiver.
be57bbb9ad3d commentary
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
  1710
     The VM needs this to know that some special action is to be performed with
be57bbb9ad3d commentary
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
  1711
     this context - a highly internal mechanism and not for public use."
be57bbb9ad3d commentary
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
  1712
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1713
%{  /* NOCONTEXT */
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  1714
    __INST(flags) = (OBJ)((INT)__INST(flags) & ~__MASKSMALLINT(__UNWIND_MARK));
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1715
%}
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1716
! !
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1717
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1718
!Context methodsFor:'searching'!
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1719
8284
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1720
findExceptional
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1721
    "walk along the sender chain (starting with the sender), 
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1722
     for a context which is marked as handle or raise context.
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1723
     This non-standard interface is only to be used by exception"
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1724
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1725
    "/ this could have been (actually: was) implemented as:
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1726
    "/
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1727
    "/  |con|
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1728
    "/
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1729
    "/  con := self.
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1730
    "/  [con notNil] whileTrue:[
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1731
    "/      [con isHandleContext] ifTrue:[^con].
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1732
    "/      [con isRaiseContext] ifTrue:[^con].
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1733
    "/      con := con sender.
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1734
    "/  ].
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1735
    "/  ^ nil
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1736
    "/
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1737
    "/ and the code below does exactly this (somewhat faster, though).
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1738
    "/
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1739
    "/ (it avoids referencing all intermediate contexts, which would mark them special,
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1740
    "/  although they aren't really - this is expert knowledge, no need to understand that ...)
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1741
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1742
%{  /* NOCONTEXT */
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1743
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1744
    OBJ theContext;
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1745
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1746
    theContext = self;
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1747
    while (__isNonNilObject(theContext)) {
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1748
        if ((INT)(__ContextInstPtr(theContext)->c_flags) & __MASKSMALLINT(__HANDLE_MARK|__RAISE_MARK)) {
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1749
            if (__isLazy(theContext)) {
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1750
                __PATCHUPCONTEXT(theContext);
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1751
            }
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1752
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1753
            if (! __isNonLIFO(theContext)) {
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1754
                /* 
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1755
                 * to be prepared for the worst situation 
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1756
                 * (the sender is not stored, so the trap won't catch it)
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1757
                 * make the writeBarrier trigger manually.
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1758
                 * We'll see, if this is really required.
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1759
                 */
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1760
                theContext->o_space |= CATCHMARK;
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1761
#if 0
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1762
                _markNonLIFO(theContext);
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1763
#endif
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1764
            }
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1765
            RETURN (theContext);
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1766
        }
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1767
        theContext = __ContextInstPtr(theContext)->c_sender;
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1768
    }
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1769
%}.
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1770
    ^ nil
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1771
!
e73710353292 New: #findExceptional
Stefan Vogel <sv@exept.de>
parents: 8242
diff changeset
  1772
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1773
findNextContextWithSelector:selector1 or:selector2 or:selector3
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1774
    "walk along the sender chain (starting with the sender), 
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1775
     for a context with either one of the given selectors.
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1776
     This non-standard interface is only to be used by exception"
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1777
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1778
    "/ this could have been (actually: was) implemented as:
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1779
    "/
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1780
    "/  |con|
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1781
    "/
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1782
    "/  con := self sender.
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1783
    "/  [con notNil] whileTrue:[
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1784
    "/      con selector == aSelector ifTrue:[^ con].
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1785
    "/      con := con sender.
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1786
    "/  ].
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1787
    "/  ^ nil
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1788
    "/
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1789
    "/ and the code below does exactly this (somewhat faster, though).
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1790
    "/
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1791
    "/ (it avoids referencing all intermediate contexts, which would mark them special,
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1792
    "/  although they aren't really - this is expert knowledge, no need to understand that ...)
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1793
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1794
%{  /* NOCONTEXT */
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1795
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1796
    OBJ theContext;
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1797
    OBJ sel;
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1798
    OBJ __FETCHSELECTOR();
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1799
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1800
    theContext = __INST(sender_);
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1801
    while (__isNonNilObject(theContext)) {
5422
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1802
        if (__isLazy(theContext)) {
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1803
#ifdef TRADITIONAL_STACK_FRAME
5422
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1804
            sel = __FETCHSELECTOR(theContext);
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1805
#else
5422
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1806
            /* mhmh - not really needed */
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1807
            __PATCHUPCONTEXT(theContext);
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1808
            sel = __ContextInstPtr(theContext)->c_selector;
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1809
#endif
5422
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1810
        } else {
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1811
            sel = __ContextInstPtr(theContext)->c_selector;
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1812
        }
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1813
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1814
        if ((sel == selector1)
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1815
         || ((selector2 != nil) && (sel == selector2))
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1816
         || ((selector3 != nil) && (sel == selector3))) {
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1817
            if (__isLazy(theContext)) {
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1818
                __PATCHUPCONTEXT(theContext);
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1819
            }
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1820
5422
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1821
            if (! __isNonLIFO(theContext)) {
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1822
                /* 
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1823
                 * to be prepared for the worst situation 
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1824
                 * (the sender is not stored, so the trap wont catch it)
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1825
                 * make the writeBarrier trigger manually.
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1826
                 * We'll see, if this is really required.
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1827
                 */
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1828
                theContext->o_space |= CATCHMARK;
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1829
                _markNonLIFO(theContext);
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1830
            }
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1831
            RETURN (theContext);
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1832
        }
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1833
        theContext = __ContextInstPtr(theContext)->c_sender;
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1834
    }
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1835
    RETURN (nil);
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1836
%}.
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1837
    "
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1838
     |con sel|
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1839
5422
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1840
     con := self sender.
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1841
     [con notNil] whileTrue:[
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1842
        sel := con selector.
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1843
        sel == selector1 ifTrue:[^ con].
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1844
        (selector2 notNil and:[sel == selector2]) ifTrue:[^ con].
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1845
        (selector3 notNil and:[sel == selector3]) ifTrue:[^ con].
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1846
        con := con sender.
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1847
     ].
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1848
     ^ nil
bf75e784e34f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  1849
    "
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1850
!
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1851
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1852
findNextUnwindContextOr:aContext
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1853
    "walk along the sender chain (starting at the sender), 
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1854
     for a context marked for unwindAction or aContext.
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1855
     This non-standard interface is only to be used by mySelf"
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1856
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1857
    "/ this could have been (actually: was) implemented as:
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1858
    "/
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1859
    "/  |con|
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1860
    "/
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1861
    "/  con := self sender.
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1862
    "/  [con notNil
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1863
    "/   and:[con ~~ aContext
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1864
    "/   and:[con isUnwindContext not]]] whileTrue:[con := con sender].
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1865
    "/  ^ con
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1866
    "/
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1867
    "/ and the code below does exactly this (somewhat faster, though).
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1868
    "/ (it avoids referencing all intermediate contexts, which would mark them special,
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1869
    "/  although they aren't really - this is expert knowledge, no need to understand that ...)
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1870
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1871
%{  /* NOCONTEXT */
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1872
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1873
    OBJ theContext;
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1874
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1875
    if (self == aContext) {
4485
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1876
        RETURN (self);
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1877
    }
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1878
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1879
    theContext = __INST(sender_);
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1880
    while (__isNonNilObject(theContext)) {
4485
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1881
        if ((theContext == aContext)
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1882
         || ((INT)(__ContextInstPtr(theContext)->c_flags) & __MASKSMALLINT(__UNWIND_MARK))) {
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1883
            if (__isLazy(theContext)) {
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1884
                __PATCHUPCONTEXT(theContext);
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1885
            }
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1886
            if (! __isNonLIFO(theContext)) {
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1887
                /*
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1888
                 * to be prepared for the worst situation
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1889
                 * (the sender is not stored, so the trap wont catch it)
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1890
                 * make the writeBarrier trigger manually.
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1891
                 * We'll see, if this is really required.
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1892
                 */
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1893
                theContext->o_space |= CATCHMARK;
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1894
#if 0
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1895
                _markNonLIFO(theContext);
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1896
#endif
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1897
            }
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1898
            RETURN (theContext);
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1899
        }
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1900
        theContext = __ContextInstPtr(theContext)->c_sender;
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1901
    }
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1902
%}.
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1903
    ^ nil
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1904
!
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1905
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1906
findSpecialHandle:findHandleContext raise:findRaiseContext
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1907
    "walk along the sender chain (starting with the sender), 
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1908
     for a context which is marked as handle or raise context.
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1909
     This non-standard interface is only to be used by exception"
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1910
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1911
    "/ this could have been (actually: was) implemented as:
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1912
    "/
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1913
    "/  |con|
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1914
    "/
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1915
    "/  con := self sender.
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1916
    "/  [con notNil] whileTrue:[
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1917
    "/      (findHandleContext and:[con isHandleContext]) ifTrue:[^con].
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1918
    "/      (findRaiseContext and:[con isRaiseContext]) ifTrue:[^con].
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1919
    "/      con := con sender.
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1920
    "/  ].
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1921
    "/  ^ nil
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1922
    "/
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1923
    "/ and the code below does exactly this (somewhat faster, though).
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1924
    "/
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1925
    "/ (it avoids referencing all intermediate contexts, which would mark them special,
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1926
    "/  although they aren't really - this is expert knowledge, no need to understand that ...)
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1927
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1928
%{  /* NOCONTEXT */
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1929
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1930
    OBJ theContext;
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1931
    int flagMask = 0;
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1932
    INT mask;
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1933
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1934
    if (findHandleContext == true)
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1935
        flagMask = __HANDLE_MARK;
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1936
    if (findRaiseContext == true)
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1937
        flagMask |= __RAISE_MARK;
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1938
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1939
    mask = __MASKSMALLINT(flagMask);    
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1940
    theContext = __INST(sender_);
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1941
    while (__isNonNilObject(theContext)) {
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1942
        if ((INT)(__ContextInstPtr(theContext)->c_flags) & mask) {
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1943
            if (__isLazy(theContext)) {
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1944
                __PATCHUPCONTEXT(theContext);
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1945
            }
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1946
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1947
            if (! __isNonLIFO(theContext)) {
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1948
                /* 
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1949
                 * to be prepared for the worst situation 
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1950
                 * (the sender is not stored, so the trap won't catch it)
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1951
                 * make the writeBarrier trigger manually.
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1952
                 * We'll see, if this is really required.
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1953
                 */
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1954
                theContext->o_space |= CATCHMARK;
4485
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1955
#if 0
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1956
                _markNonLIFO(theContext);
4485
21615534e0fb more search support;
Claus Gittinger <cg@exept.de>
parents: 4477
diff changeset
  1957
#endif
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1958
            }
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1959
            RETURN (theContext);
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1960
        }
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1961
        theContext = __ContextInstPtr(theContext)->c_sender;
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1962
    }
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1963
%}.
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1964
    ^ nil
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1965
! !
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  1966
1051
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  1967
!Context methodsFor:'special accessing'!
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  1968
7568
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  1969
argAndVarNames
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  1970
    "helper: given a context, return a collection of arg&var names"
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  1971
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  1972
    |homeContext method block numArgs numVars m src 
8217
a06693b69c1b *** empty log message ***
ca
parents: 8020
diff changeset
  1973
     sel isDoIt blocksLineNr extractFromBlock sender|
7568
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  1974
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  1975
    numArgs := self numArgs.
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  1976
    numVars := self numVars.
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  1977
    (numArgs == 0 and:[numVars == 0]) ifTrue:[^ #()].
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  1978
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  1979
    homeContext := self methodHome.
7652
ecfaa9e529ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7568
diff changeset
  1980
    homeContext notNil ifTrue:[
ecfaa9e529ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7568
diff changeset
  1981
        sel := homeContext selector.
ecfaa9e529ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7568
diff changeset
  1982
        method := homeContext method.
ecfaa9e529ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7568
diff changeset
  1983
    ].
7568
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  1984
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  1985
    extractFromBlock := 
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  1986
        [
8772
9a5d7a368a34 kludge for a blocks context arg-and-var names
Claus Gittinger <cg@exept.de>
parents: 8687
diff changeset
  1987
            |blockNode argNames varNames vars args blocksHome|
7568
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  1988
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  1989
            blockNode := Compiler
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  1990
                            blockAtLine:blocksLineNr
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  1991
                            in:m
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  1992
                            orSource:src
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  1993
                            numArgs:numArgs 
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  1994
                            numVars:numVars.
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  1995
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  1996
            blockNode notNil ifTrue:[
8772
9a5d7a368a34 kludge for a blocks context arg-and-var names
Claus Gittinger <cg@exept.de>
parents: 8687
diff changeset
  1997
                "/ a kludge
9a5d7a368a34 kludge for a blocks context arg-and-var names
Claus Gittinger <cg@exept.de>
parents: 8687
diff changeset
  1998
                blockNode lineNumber == blocksLineNr ifTrue:[
9a5d7a368a34 kludge for a blocks context arg-and-var names
Claus Gittinger <cg@exept.de>
parents: 8687
diff changeset
  1999
                    blocksHome := blockNode home.
9a5d7a368a34 kludge for a blocks context arg-and-var names
Claus Gittinger <cg@exept.de>
parents: 8687
diff changeset
  2000
                    (blocksHome notNil and:[blocksHome isBlockNode]) ifTrue:[
9a5d7a368a34 kludge for a blocks context arg-and-var names
Claus Gittinger <cg@exept.de>
parents: 8687
diff changeset
  2001
                        (blocksHome numArgs == numArgs
9a5d7a368a34 kludge for a blocks context arg-and-var names
Claus Gittinger <cg@exept.de>
parents: 8687
diff changeset
  2002
                        and:[ blocksHome numVars == numVars ]) ifTrue:[
9a5d7a368a34 kludge for a blocks context arg-and-var names
Claus Gittinger <cg@exept.de>
parents: 8687
diff changeset
  2003
                            blockNode := blocksHome
9a5d7a368a34 kludge for a blocks context arg-and-var names
Claus Gittinger <cg@exept.de>
parents: 8687
diff changeset
  2004
                        ].
9a5d7a368a34 kludge for a blocks context arg-and-var names
Claus Gittinger <cg@exept.de>
parents: 8687
diff changeset
  2005
                    ].
9a5d7a368a34 kludge for a blocks context arg-and-var names
Claus Gittinger <cg@exept.de>
parents: 8687
diff changeset
  2006
                ].
9a5d7a368a34 kludge for a blocks context arg-and-var names
Claus Gittinger <cg@exept.de>
parents: 8687
diff changeset
  2007
7568
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2008
                argNames := #().
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2009
                varNames := #().
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2010
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2011
                numArgs > 0 ifTrue:[
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2012
                    vars := blockNode arguments.
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2013
                    vars size > 0 ifTrue:[
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2014
                        argNames := vars collect:[:var | var name]
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2015
                    ]
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2016
                ].
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2017
                numVars > 0 ifTrue:[
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2018
                    vars := blockNode variables.
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2019
                    vars size > 0 ifTrue:[
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2020
                        varNames := vars collect:[:var | var name].
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2021
                    ]
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2022
                ].
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2023
                ^ argNames , varNames
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2024
            ].
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2025
        ].
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2026
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2027
    "/ #doIt needs special handling below
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2028
    isDoIt := (sel == #'doIt') or:[sel == #'doIt:'].
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2029
    self isBlockContext ifFalse:[
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2030
        isDoIt ifTrue:[
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2031
            method notNil ifTrue:[
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2032
                "/ special for #doIt
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2033
                m := nil.
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2034
                src := ('[' , method source , '\]') withCRs.
8217
a06693b69c1b *** empty log message ***
ca
parents: 8020
diff changeset
  2035
                "/ blocksLineNr := self lineNumber.
8242
594cfd2150f7 oops - must care for doIt contexts
Claus Gittinger <cg@exept.de>
parents: 8217
diff changeset
  2036
                blocksLineNr := (self home ? self) lineNumber.
7568
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2037
                extractFromBlock value.
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2038
            ]
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2039
        ].
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2040
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2041
        method notNil ifTrue:[
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2042
            ^ method methodArgAndVarNames.
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2043
        ].
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2044
        ^ #()
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2045
    ].
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2046
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2047
    method notNil ifTrue:[
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2048
        isDoIt ifTrue:[
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2049
            "/ special for #doIt
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2050
            "/ my source is found in the method.
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2051
            m := nil.
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2052
            src := ('[' , method source , '\]') withCRs.
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2053
        ] ifFalse:[
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2054
            m := method.
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2055
            src := nil.
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2056
        ].
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2057
        blocksLineNr := self lineNumber.
8020
4102685493b8 argAndVarNames fixed
Claus Gittinger <cg@exept.de>
parents: 7747
diff changeset
  2058
        extractFromBlock value.
7747
27be5f627b03 fixed argAndVarNames for inner blocks.
Claus Gittinger <cg@exept.de>
parents: 7652
diff changeset
  2059
        blocksLineNr := self home lineNumber.
7568
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2060
        extractFromBlock value.
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2061
    ].
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2062
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2063
    blocksLineNr isNil ifTrue:[
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2064
        self isBlockContext ifTrue:[
8217
a06693b69c1b *** empty log message ***
ca
parents: 8020
diff changeset
  2065
            sender := self sender.
a06693b69c1b *** empty log message ***
ca
parents: 8020
diff changeset
  2066
            (sender notNil
a06693b69c1b *** empty log message ***
ca
parents: 8020
diff changeset
  2067
            and:[sender receiver isBlock
a06693b69c1b *** empty log message ***
ca
parents: 8020
diff changeset
  2068
            and:[sender selector startsWith:'value']])
7568
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2069
            ifTrue:[
8217
a06693b69c1b *** empty log message ***
ca
parents: 8020
diff changeset
  2070
                block := sender receiver.
7568
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2071
                src := block source.
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2072
                src isNil ifTrue:[
8488
9ee7c782f48e New: #message
Stefan Vogel <sv@exept.de>
parents: 8357
diff changeset
  2073
                    self error:'no source'.
7568
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2074
                ].
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2075
                blocksLineNr := 1.
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2076
                extractFromBlock value.
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2077
            ].
8217
a06693b69c1b *** empty log message ***
ca
parents: 8020
diff changeset
  2078
            sender := nil.
7568
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2079
        ].
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2080
    ].
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2081
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2082
    ^ #()
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2083
!
1dc12a1080b0 ** changed access to blockContexts args and vars -- please watch out
penk
parents: 7324
diff changeset
  2084
4557
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2085
canResume
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2086
    "return true, if the receiver allows to be resumed.
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2087
     Due to the implementation, this requires that the context which
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2088
     is right below the receiver is returnable."
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2089
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2090
    |theContext|
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2091
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2092
    "
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2093
     starting with this context, find the one below
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2094
     (i.e. the one that I have called) and return from it.
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2095
    "
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2096
%{
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2097
    OBJ sndr;
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2098
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2099
    theContext = __thisContext;
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2100
    while (theContext != nil) {
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2101
        sndr = __ContextInstPtr(theContext)->c_sender;
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2102
        if (sndr == self) break;
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2103
        theContext = sndr;
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2104
    }
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2105
    if (theContext != nil) {
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2106
        if (__isLazy(theContext)) {
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2107
            __PATCHUPCONTEXT(theContext);
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2108
        }
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2109
    }
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2110
%}.
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2111
    theContext isNil ifTrue:[
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2112
        ^ false
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2113
    ].
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2114
    ^ theContext canReturn
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2115
!
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2116
1051
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2117
canReturn
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2118
    "return true, if the receiver allows returning through it.
4557
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2119
     Blocks, (currently) always return false.
2646
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
  2120
     Methods which contain a (non-inlined) block are always
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
  2121
     returnable - for other methods, it depends on how the system
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
  2122
     was compiled (stc flag +/-optContext).
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
  2123
     If it was compiled with +optContext, methods are compiled
4557
1ab31e587908 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
  2124
     non returnable, unless a return-pragma was present in the method.
2646
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
  2125
     Since this saves some administrative work in every method
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
  2126
     invocation and makes overall execution faster, the system classes
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
  2127
     are all compiled with this flag turned on."
1051
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2128
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2129
%{  /* NOCONTEXT */
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2130
3508
4b45b39011c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
  2131
    RETURN ( ((INT)(__INST(flags)) & __MASKSMALLINT(__CANNOT_RETURN)) ? false : true );
5441
e88302747bbd rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
  2132
%}.
e88302747bbd rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
  2133
    ^ true
1051
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2134
!
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2135
1492
50be184036e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1483
diff changeset
  2136
hasStackToShow
2646
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
  2137
    "private interface to the debugger.
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
  2138
     Smalltalk contexts return false here - other language frames
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
  2139
     (i.e. Java frames) may want to show the evaluation stack"
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
  2140
1492
50be184036e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1483
diff changeset
  2141
    ^ false
50be184036e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1483
diff changeset
  2142
50be184036e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1483
diff changeset
  2143
    "Created: 28.6.1996 / 14:48:39 / cg"
2646
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
  2144
    "Modified: 13.5.1997 / 16:31:12 / cg"
1492
50be184036e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1483
diff changeset
  2145
!
50be184036e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1483
diff changeset
  2146
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  2147
isHandleContext
4505
409e200f0fd3 Fix comments.
Stefan Vogel <sv@exept.de>
parents: 4485
diff changeset
  2148
    "return true, if this is a context with exception-handle flag set"
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  2149
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  2150
%{  /* NOCONTEXT */
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  2151
     RETURN ( ((INT)__INST(flags) & __MASKSMALLINT(__HANDLE_MARK)) ? true : false );
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  2152
%}
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  2153
!
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  2154
1051
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2155
isNonLifo
2646
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
  2156
    "return true, if this is a nonLifo context.
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
  2157
     A nonLifo context is one that is still on the machine stack,
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
  2158
     but has a reference taken and needs to be converted to a real
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
  2159
     object (in objectMemory) when the method/block returns.
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
  2160
     You dont have to understand this - this is a special ST/X
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
  2161
     debug query, which may be removed without notice."
1051
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2162
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2163
%{  /* NOCONTEXT */
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  2164
     RETURN ( ((INT)__INST(flags) & __MASKSMALLINT(__NONLIFO)) ? true : false );
1051
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2165
%}
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2166
!
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2167
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2168
isOnMachineStack
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2169
    "return true, if this is a machine stack context as opposed to a 
2646
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
  2170
     real heap context.
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
  2171
     You dont have to understand this - this is a special ST/X
90bedd5a9f75 commentary
Claus Gittinger <cg@exept.de>
parents: 2510
diff changeset
  2172
     debug query, which may be removed without notice."
1051
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2173
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2174
%{  /* NOCONTEXT */
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2175
     RETURN ( (__qSpace(self) >= STACKSPACE) ? true : false );
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2176
%}
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2177
!
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2178
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  2179
isRaiseContext
4505
409e200f0fd3 Fix comments.
Stefan Vogel <sv@exept.de>
parents: 4485
diff changeset
  2180
    "return true, if this is a context with exception-raise flag set"
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  2181
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  2182
%{  /* NOCONTEXT */
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  2183
     RETURN ( ((INT)__INST(flags) & __MASKSMALLINT(__RAISE_MARK)) ? true : false );
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  2184
%}
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  2185
!
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4450
diff changeset
  2186
1051
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2187
isSpecial
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2188
    "return true, if this is either a nonLifo or interrupted context"
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2189
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2190
%{  /* NOCONTEXT */
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  2191
     RETURN ( ((INT)__INST(flags) & __MASKSMALLINT(__SPECIAL)) ? true : false );
1051
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2192
%}
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2193
!
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2194
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2195
isUnwindContext
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2196
    "return true, if this is an unwindContext"
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2197
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2198
%{  /* NOCONTEXT */
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  2199
     RETURN ( ((INT)__INST(flags) & __MASKSMALLINT(__UNWIND_MARK)) ? true : false );
1051
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2200
%}
8578
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
  2201
!
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
  2202
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
  2203
tempNames
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
  2204
    "helper: given a context, return a collection of arg, var and temporary names"
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
  2205
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
  2206
    |names nTemps|
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
  2207
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
  2208
    names := self argAndVarNames.
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
  2209
    (nTemps := self numTemps) > 0 ifTrue:[
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
  2210
        ^ names , ((1 to:nTemps) collect:[:idx | '_tmp' , idx printString]).
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
  2211
    ].
78a49180f32c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8488
diff changeset
  2212
    ^ names.
1051
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2213
! !
152139ca5e3e special accessing methods
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  2214
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2215
!Context methodsFor:'testing'!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2216
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2217
isBlockContext
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2218
    "return true, iff the receiver is a BlockContext, false otherwise"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2219
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2220
    ^ false
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2221
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2222
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2223
isContext
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2224
    "return true, iff the receiver is a Context, false otherwise"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2225
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2226
    ^ true
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2227
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2228
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2229
isRecursive
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2230
    "return true, if this context is one of a recursive send of the same
1483
258d223150ec comment
Claus Gittinger <cg@exept.de>
parents: 1456
diff changeset
  2231
     selector to the same receiver before.
258d223150ec comment
Claus Gittinger <cg@exept.de>
parents: 1456
diff changeset
  2232
     Here, different arguments are ignored - i.e. only the same method
258d223150ec comment
Claus Gittinger <cg@exept.de>
parents: 1456
diff changeset
  2233
     counts for recursiveness.
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2234
     Used to detect recursive errors or recursive printing - for example."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2235
2291
af7652b82404 avoid touching contexts (making them nonLifo) when searching for unwind-contexts,
Claus Gittinger <cg@exept.de>
parents: 2285
diff changeset
  2236
    |c count "{Class: SmallInteger }" myMethodsClass|
af7652b82404 avoid touching contexts (making them nonLifo) when searching for unwind-contexts,
Claus Gittinger <cg@exept.de>
parents: 2285
diff changeset
  2237
af7652b82404 avoid touching contexts (making them nonLifo) when searching for unwind-contexts,
Claus Gittinger <cg@exept.de>
parents: 2285
diff changeset
  2238
    count := 0.
af7652b82404 avoid touching contexts (making them nonLifo) when searching for unwind-contexts,
Claus Gittinger <cg@exept.de>
parents: 2285
diff changeset
  2239
2893
8ba406da6b22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2646
diff changeset
  2240
    c := self findNextContextWithSelector:selector or:nil or:nil.
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2241
    [c notNil] whileTrue:[
3143
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  2242
	(c receiver == receiver) ifTrue:[
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  2243
	    "
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  2244
	     stupid: the current ST/X context does not include
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  2245
	     the method, but the class, in which the search started ...
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  2246
	    "
2291
af7652b82404 avoid touching contexts (making them nonLifo) when searching for unwind-contexts,
Claus Gittinger <cg@exept.de>
parents: 2285
diff changeset
  2247
	    myMethodsClass isNil ifTrue:[
3143
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  2248
		myMethodsClass := self methodClass.
2291
af7652b82404 avoid touching contexts (making them nonLifo) when searching for unwind-contexts,
Claus Gittinger <cg@exept.de>
parents: 2285
diff changeset
  2249
	    ].
3143
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  2250
	    c methodClass == myMethodsClass ifTrue:[
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  2251
		^ true
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  2252
	    ]
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  2253
	].
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  2254
	c := c findNextContextWithSelector:selector or:nil or:nil.
2135
6bd144c1c358 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 1853
diff changeset
  2255
3143
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  2256
	"
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  2257
	 this special test was added to get out after a while
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  2258
	 if the sender chain is corrupt - this gives us at least
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  2259
	 a chance to find those errors.
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  2260
	"
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  2261
	count := count + 1.
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  2262
	count >= 100000 ifTrue:[
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  2263
	    'Context [warning]: bad context chain' errorPrintCR.
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  2264
	    ^ true
9b94535f9026 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  2265
	]
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2266
    ].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2267
    ^ false
1483
258d223150ec comment
Claus Gittinger <cg@exept.de>
parents: 1456
diff changeset
  2268
2135
6bd144c1c358 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 1853
diff changeset
  2269
    "Modified: 10.1.1997 / 17:34:26 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2270
! !
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2271
1810
fc151ad836ef added numVars & numTemps;
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
  2272
!Context class methodsFor:'documentation'!
749
be57bbb9ad3d commentary
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
  2273
be57bbb9ad3d commentary
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
  2274
version
11340
ceae06796c52 unwinding fixed for on:do:ensure:
Claus Gittinger <cg@exept.de>
parents: 11337
diff changeset
  2275
    ^ '$Header: /cvs/stx/stx/libbasic/Context.st,v 1.144 2008-11-11 21:30:16 cg Exp $'
749
be57bbb9ad3d commentary
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
  2276
! !
7257
b9f0fb923c72 method category rename
Claus Gittinger <cg@exept.de>
parents: 6648
diff changeset
  2277
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2278
Context initialize!