Block.st
author Claus Gittinger <cg@exept.de>
Mon, 02 Aug 1999 15:42:45 +0200
changeset 4491 5041cae5651c
parent 4479 6915eb8eeeff
child 4513 b16770982c62
permissions -rw-r--r--
use new pragma to flag exception frames.
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) 1989 by Claus Gittinger
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
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
"
a27a279701f8 Initial revision
claus
parents:
diff changeset
    12
4299
2028db93d182 comment
Claus Gittinger <cg@exept.de>
parents: 3688
diff changeset
    13
CompiledCode variableSubclass:#Block
1181
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
    14
	instanceVariableNames:'home nargs sourcePos initialPC'
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
    15
	classVariableNames:'InvalidNewSignal'
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
    16
	poolDictionaries:''
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
    17
	category:'Kernel-Methods'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    18
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    19
1773
442d1b73ecb9 no longer allow Blocks with a dynamic-bit to be created
Claus Gittinger <cg@exept.de>
parents: 1672
diff changeset
    20
!Block class methodsFor:'documentation'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    21
92
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    22
copyright
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    23
"
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    24
 COPYRIGHT (c) 1989 by Claus Gittinger
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
    25
	      All Rights Reserved
92
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    26
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    27
 This software is furnished under a license and may be used
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    28
 only in accordance with the terms of that license and with the
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    29
 inclusion of the above copyright notice.   This software may not
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    30
 be provided or otherwise made available to, or used by, any
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    31
 other person.  No title to or ownership of the software is
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    32
 hereby transferred.
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    33
"
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    34
!
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    35
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    36
documentation
a27a279701f8 Initial revision
claus
parents:
diff changeset
    37
"
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    38
    Blocks are pieces of executable code which can be evaluated by sending
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    39
    them a value-message (''value'', ''value:'', ''value:value:'' etc).
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    40
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
    41
    In smalltalk, Blocks provide the basic (and heavily used) mechanism
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
    42
    for looping, enumerating collection elements, visitors, exception
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
    43
    handling, unwinding, delayed execution and processes.
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
    44
1254
48c2748b5197 commentary
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
    45
    Blocks are never created explicitely; the only creation
48c2748b5197 commentary
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
    46
    is done by the compilers, when some sourceCode is compiled to either
48c2748b5197 commentary
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
    47
    machine or byteCode.
48c2748b5197 commentary
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
    48
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    49
    Blocks with arguments need a message of type ''value:arg1 ... value:argn''
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    50
    for evaluation; the number of arguments passed when evaluating must match
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    51
    the number of arguments the block was declared with otherwise an error is
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    52
    raised. Blocks without args need a ''value'' message for evaluation.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    53
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
    54
    Blocks keep a reference to the context where the block was declared -
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    55
    this allows blocks to access the methods arguments and/or variables.
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
    56
    This is still true after the method has returned - since the
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    57
    block keeps this reference, the methods context will NOT die in this case.
222
85fee82884dd commenting
claus
parents: 216
diff changeset
    58
    (i.e. Blocks are closures in Smalltalk/X)
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    59
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    60
    A return (via ^-statement) out of a block will force a return from the
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    61
    blocks method context (if it is still living) - this make the implementation
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    62
    of long-jumps and control structures possible.
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
    63
    (If the method is not alive (i.e. has already returned), a return out of the 
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
    64
     block will trigger an error)
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    65
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    66
    Long-jump is done by defining a catchBlock as ''[^ self]''
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    67
    somewhere up in the calling-tree. Then, to do the long-jump from out of some 
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    68
    deeply nested method, simply do: ''catchBlock value''.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    69
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
    70
    [Instance variables:]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    71
222
85fee82884dd commenting
claus
parents: 216
diff changeset
    72
      home        <Context>         the context where this block was created (i.e. defined)
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    73
				    this may be a blockContext or a methodContext
222
85fee82884dd commenting
claus
parents: 216
diff changeset
    74
      nargs       <SmallInteger>    the number of arguments the block expects
85fee82884dd commenting
claus
parents: 216
diff changeset
    75
      sourcePos   <SmallInteger>    the character position of its source, in chars
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    76
				    relative to methods source beginning
222
85fee82884dd commenting
claus
parents: 216
diff changeset
    77
      initialPC   <SmallInteger>    the start position within the byteCode
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    78
				    for compiled blocks, this is nil.
222
85fee82884dd commenting
claus
parents: 216
diff changeset
    79
85fee82884dd commenting
claus
parents: 216
diff changeset
    80
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
    81
    [Class variables:]
222
85fee82884dd commenting
claus
parents: 216
diff changeset
    82
85fee82884dd commenting
claus
parents: 216
diff changeset
    83
      InvalidNewSignal              raised if a Block is tried to be created
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    84
				    with new (which is not allowed).
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    85
				    Only the VM is allowed to create Blocks.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    86
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
    87
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    88
    NOTICE: layout known by runtime system and compiler - do not change
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
    89
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
    90
    [author:]
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    91
	Claus Gittinger
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
    92
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
    93
    [see also:]
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    94
	Process Context
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    95
	Collection
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    96
	( contexts. blocks & unwinding : programming/contexts.html)
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    97
"
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
    98
!
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
    99
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   100
examples
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   101
"
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   102
    define a block and evaluate it:
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   103
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   104
	|b|
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   105
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   106
	b := [ Transcript showCR:'hello' ].
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   107
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   108
	Transcript showCR:'now evaluating the block ...'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   109
	b value.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   110
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   111
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   112
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   113
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   114
    even here, blocks are involved: 
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   115
    (although, the compiler optimizes things if possible)
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   116
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   117
	Transcript showCR:'now evaluating one of two blocks ...'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   118
	1 > 4 ifTrue:[
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   119
	    Transcript showCR:'foo'
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   120
	] ifFalse:[
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   121
	    Transcript showCR:'bar'
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   122
	]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   123
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   124
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   125
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   126
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   127
    here things become obvious:
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   128
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   129
	|yesBlock noBlock|
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   130
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   131
	yesBlock := [ Transcript showCR:'foo' ].
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   132
	noBlock := [ Transcript showCR:'bar' ].
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   133
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   134
	Transcript showCR:'now evaluating one of two blocks ...'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   135
	1 > 4 ifTrue:yesBlock
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   136
	      ifFalse:noBlock
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   137
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   138
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   139
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   140
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   141
    simple loops:
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   142
      not very objectOriented:
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   143
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   144
	|i|
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   145
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   146
	i := 1.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   147
	[i < 10] whileTrue:[
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   148
	    Transcript showCR:i.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   149
	    i := i + 1
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   150
	]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   151
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   152
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   153
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   154
      using integer protocol:
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   155
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   156
	1 to:10 do:[:i |
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   157
	    Transcript showCR:i.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   158
	]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   159
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   160
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   161
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   162
      interval protocol:
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   163
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   164
	(1 to:10) do:[:i |
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   165
	    Transcript showCR:i.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   166
	]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   167
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   168
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   169
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   170
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   171
    looping over collections:
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   172
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   173
      bad code:
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   174
      (only works with numeric-indexable collections)
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   175
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   176
	|i coll|
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   177
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   178
	coll := #(9 8 7 6 5).
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   179
	i := 1.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   180
	[i <= coll size] whileTrue:[
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   181
	    Transcript showCR:(coll at:i).
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   182
	    i := i + 1.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   183
	]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   184
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   185
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   186
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   187
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   188
      just as bad (well, marginally better ;-):
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   189
      (only works with numeric-indexable collections)
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   190
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   191
	|coll|   
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   192
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   193
	coll := #(9 8 7 6 5).
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   194
	1 to:coll size do:[:i |
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   195
	    Transcript showCR:(coll at:i).
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   196
	]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   197
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   198
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   199
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   200
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   201
      the smalltalk way:
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   202
      (works with any collection)
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   203
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   204
	|coll|   
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   205
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   206
	coll := #(9 8 7 6 5).
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   207
	coll do:[:element |
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   208
	    Transcript showCR:element.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   209
	]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   210
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   211
        
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   212
    Rule: use enumeration protocol of the collection instead of
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   213
	  manually indexing it. [with few exceptions]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   214
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   215
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   216
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   217
    processes:
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   218
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   219
      forking a lightweight process (thread):
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   220
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   221
	[
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   222
	    Transcript showCR:'waiting ...'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   223
	    Delay waitForSeconds:2.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   224
	    Transcript showCR:'here I am'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   225
	] fork
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   226
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   227
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   228
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   229
        
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   230
      some with low prio:
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   231
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   232
	[
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   233
	    Transcript showCR:'computing ...'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   234
	    10000 factorial.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   235
	    Transcript showCR:'here I am'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   236
	] forkAt:(Processor userBackgroundPriority)
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   237
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   238
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   239
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   240
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   241
    handling exceptions:
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   242
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   243
	Object errorSignal handle:[:ex |
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   244
	    Transcript showCR:'exception handler forces return'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   245
	    ex return
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   246
	] do:[
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   247
	    Transcript showCR:'now, doing something bad ...'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   248
	    1 / 0.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   249
	    Transcript showCR:'not reached'
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   250
	]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   251
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   252
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   253
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   254
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   255
    performing cleanup actions:
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   256
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   257
	Object errorSignal handle:[:ex |
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   258
	    Transcript showCR:'exception handler forces return'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   259
	    ex return
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   260
	] do:[
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   261
	    [
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   262
		Transcript showCR:'doing something bad ...'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   263
		1 / 0.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   264
		Transcript showCR:'not reached'
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   265
	    ] valueOnUnwindDo:[
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   266
		Transcript showCR:'cleanup'
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   267
	    ]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   268
	]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   269
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   270
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   271
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   272
    delayed execution (visitor pattern):
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   273
    (looking carefully into the example, 
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   274
     C/C++ programmers may raise their eyes ;-)
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   275
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   276
	|showBlock countBlock 
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   277
	 howMany 
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   278
	 top panel b1 b2|
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   279
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   280
	howMany := 0.
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   281
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   282
	showBlock := [ Transcript showCR:howMany ].
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   283
	countBlock := [ howMany := howMany + 1 ].
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   284
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   285
	top := StandardSystemView extent:200@200.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   286
	panel := HorizontalPanelView origin:0.0@0.0 corner:1.0@1.0 in:top.
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   287
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   288
	b1 := Button label:'count up' in:panel.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   289
	b1 action:countBlock.
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   290
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   291
	b2 := Button label:'show value' in:panel.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   292
	b2 action:showBlock.
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   293
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   294
	top open.
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   295
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   296
	Transcript showCR:'new process started;'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   297
	Transcript showCR:'notice: the blocks can still access the'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   298
	Transcript showCR:'        howMany local variable.'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   299
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   300
"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   301
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   302
1773
442d1b73ecb9 no longer allow Blocks with a dynamic-bit to be created
Claus Gittinger <cg@exept.de>
parents: 1672
diff changeset
   303
!Block class methodsFor:'initialization'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   304
a27a279701f8 Initial revision
claus
parents:
diff changeset
   305
initialize
1254
48c2748b5197 commentary
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
   306
    "create signals raised by various errors"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   307
48
9f68393bea3c *** empty log message ***
claus
parents: 46
diff changeset
   308
    InvalidNewSignal isNil ifTrue:[
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   309
	InvalidNewSignal := ErrorSignal newSignalMayProceed:false.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   310
	InvalidNewSignal nameClass:self message:#invalidNewSignal.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   311
	InvalidNewSignal notifierString:'blocks are only created by the system'.
48
9f68393bea3c *** empty log message ***
claus
parents: 46
diff changeset
   312
    ]
1254
48c2748b5197 commentary
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
   313
48c2748b5197 commentary
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
   314
    "Modified: 22.4.1996 / 16:34:20 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   315
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   316
1773
442d1b73ecb9 no longer allow Blocks with a dynamic-bit to be created
Claus Gittinger <cg@exept.de>
parents: 1672
diff changeset
   317
!Block class methodsFor:'instance creation'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   318
2542
555749f035f4 need stackSize when creating blocks.
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
   319
byteCode:bCode numArgs:numArgs numStack:nStack sourcePosition:sourcePos initialPC:initialPC literals:literals
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   320
    "create a new cheap (homeless) block.
222
85fee82884dd commenting
claus
parents: 216
diff changeset
   321
     Not for public use - this is a special hook for the compiler."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   322
a27a279701f8 Initial revision
claus
parents:
diff changeset
   323
    |newBlock|
a27a279701f8 Initial revision
claus
parents:
diff changeset
   324
1493
33e226c7d187 Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   325
    newBlock := (super basicNew:(literals size)) 
2542
555749f035f4 need stackSize when creating blocks.
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
   326
                           byteCode:bCode
555749f035f4 need stackSize when creating blocks.
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
   327
                           numArgs:numArgs
555749f035f4 need stackSize when creating blocks.
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
   328
                           numStack:nStack
555749f035f4 need stackSize when creating blocks.
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
   329
                     sourcePosition:sourcePos
555749f035f4 need stackSize when creating blocks.
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
   330
                          initialPC:initialPC
555749f035f4 need stackSize when creating blocks.
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
   331
                           literals:literals.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   332
    ^ newBlock
1493
33e226c7d187 Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   333
33e226c7d187 Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   334
    "Modified: 24.6.1996 / 12:36:48 / stefan"
2542
555749f035f4 need stackSize when creating blocks.
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
   335
    "Created: 13.4.1997 / 00:04:09 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   336
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   337
22
847106305963 *** empty log message ***
claus
parents: 11
diff changeset
   338
new
4299
2028db93d182 comment
Claus Gittinger <cg@exept.de>
parents: 3688
diff changeset
   339
    "catch creation of blocks - only the system creates blocks.
2028db93d182 comment
Claus Gittinger <cg@exept.de>
parents: 3688
diff changeset
   340
     If you really need a block (assuming, you are some compiler),
2028db93d182 comment
Claus Gittinger <cg@exept.de>
parents: 3688
diff changeset
   341
     use basicNew and setup the instance carefully"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   342
128
c50a2157883e return value of signal raise
claus
parents: 103
diff changeset
   343
    ^ InvalidNewSignal raise.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   344
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   345
22
847106305963 *** empty log message ***
claus
parents: 11
diff changeset
   346
new:size
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   347
    "catch creation of blocks - only the system creates blocks"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   348
128
c50a2157883e return value of signal raise
claus
parents: 103
diff changeset
   349
    ^ InvalidNewSignal raise.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   350
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   351
1773
442d1b73ecb9 no longer allow Blocks with a dynamic-bit to be created
Claus Gittinger <cg@exept.de>
parents: 1672
diff changeset
   352
!Block class methodsFor:'queries'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   353
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   354
isBuiltInClass
1264
8d916aa63bce commentary
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
   355
    "return true if this class is known by the run-time-system.
8d916aa63bce commentary
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
   356
     Here, true is returned for myself, false for subclasses."
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   357
1181
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   358
    ^ self == Block
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   359
1264
8d916aa63bce commentary
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
   360
    "Modified: 23.4.1996 / 15:55:58 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   361
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   362
1979
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   363
!Block methodsFor:'Compatibility - V''Age'!
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   364
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   365
argumentCount
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   366
    "VisualAge compatibility: alias for #numArgs.
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   367
     return the number of arguments I expect for evaluation"
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   368
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   369
    ^ nargs
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   370
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   371
    "Created: 15.11.1996 / 11:22:02 / cg"
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   372
!
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   373
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   374
valueOnReturnDo:aBlock
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   375
    "VisualAge compatibility: alias for #valueOnUnwindDo:
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   376
     evaluate the receiver - when some method sent within unwinds 
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   377
     (i.e. does a long return), evaluate the argument, aBlock.
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   378
     This is used to make certain that cleanup actions 
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   379
     (for example closing files etc.) are executed regardless of error actions.
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   380
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   381
     Q: is this the exact semantics of V'Ages method ?
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   382
	the documentation is unclean; it could be a valueNowOrOnUnwindDo: ..."
1979
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   383
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   384
    ^ self valueOnUnwindDo:aBlock
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   385
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   386
    "Created: 15.11.1996 / 11:38:37 / cg"
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   387
! !
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   388
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   389
!Block methodsFor:'accessing'!
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   390
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   391
home
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   392
    "return the receivers home context (the context where it was
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   393
     created). For cheap blocks, nil is returned"
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   394
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   395
    ^ home
161
ed36169f354d *** empty log message ***
claus
parents: 154
diff changeset
   396
!
ed36169f354d *** empty log message ***
claus
parents: 154
diff changeset
   397
2694
46ba8cbdc013 added #homeMethod for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2542
diff changeset
   398
homeMethod
46ba8cbdc013 added #homeMethod for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2542
diff changeset
   399
    "return the receivers home method.
46ba8cbdc013 added #homeMethod for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2542
diff changeset
   400
     Thats the method where the block was created."
46ba8cbdc013 added #homeMethod for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2542
diff changeset
   401
46ba8cbdc013 added #homeMethod for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2542
diff changeset
   402
    home notNil ifTrue:[
46ba8cbdc013 added #homeMethod for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2542
diff changeset
   403
        ^ home method
46ba8cbdc013 added #homeMethod for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2542
diff changeset
   404
    ].
46ba8cbdc013 added #homeMethod for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2542
diff changeset
   405
    ^ nil
46ba8cbdc013 added #homeMethod for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2542
diff changeset
   406
46ba8cbdc013 added #homeMethod for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2542
diff changeset
   407
    "Created: 19.6.1997 / 16:14:57 / cg"
46ba8cbdc013 added #homeMethod for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2542
diff changeset
   408
!
46ba8cbdc013 added #homeMethod for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2542
diff changeset
   409
161
ed36169f354d *** empty log message ***
claus
parents: 154
diff changeset
   410
method
ed36169f354d *** empty log message ***
claus
parents: 154
diff changeset
   411
    "return the receivers method 
2694
46ba8cbdc013 added #homeMethod for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2542
diff changeset
   412
     (the method where the block was created).
46ba8cbdc013 added #homeMethod for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2542
diff changeset
   413
     Obsolete: use #homeMethod for ST80 compatibility."
161
ed36169f354d *** empty log message ***
claus
parents: 154
diff changeset
   414
2694
46ba8cbdc013 added #homeMethod for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2542
diff changeset
   415
    ^ self homeMethod
46ba8cbdc013 added #homeMethod for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2542
diff changeset
   416
46ba8cbdc013 added #homeMethod for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2542
diff changeset
   417
    "Modified: 19.6.1997 / 16:15:24 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   418
!
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   419
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   420
methodHome
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   421
    "return the receivers method home context (the context where it was
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   422
     defined). For cheap blocks, nil is returned"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   423
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   424
    home notNil ifTrue:[
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   425
	^ home methodHome
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   426
    ].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   427
    ^ home
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   428
!
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   429
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   430
numArgs
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   431
    "return the number of arguments I expect for evaluation"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   432
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   433
    ^ nargs
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   434
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   435
2237
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   436
!Block methodsFor:'conversion'!
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   437
2241
1c1e721b76ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2238
diff changeset
   438
beVarArg
2237
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   439
    "convert myself into a varArg block;
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   440
     this one has 1 formal argument, which gets the list
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   441
     of actual arguments when evaluated."
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   442
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   443
    nargs ~~ 1 ifTrue:[
2241
1c1e721b76ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2238
diff changeset
   444
        self error:'vararg blocks must take exactly 1 argument - the arg list'.
1c1e721b76ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2238
diff changeset
   445
        ^ nil
2237
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   446
    ].
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   447
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   448
    self changeClassTo:VarArgBlock.
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   449
    ^ self
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   450
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   451
    "
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   452
     |b|
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   453
2241
1c1e721b76ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2238
diff changeset
   454
     b := [:argList | argList printCR] beVarArg.
2237
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   455
     b value.
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   456
     b value:'arg1' value:'arg2' value:'arg3' value:'arg4'
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   457
    "
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   458
2241
1c1e721b76ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2238
diff changeset
   459
    "Created: 23.1.1997 / 13:35:28 / cg"
1c1e721b76ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2238
diff changeset
   460
    "Modified: 23.1.1997 / 13:35:48 / cg"
2237
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   461
! !
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   462
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   463
!Block methodsFor:'copying'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   464
3349
84a92126a268 must catch #deppCopyUsing: instead of #deepCopy.
Claus Gittinger <cg@exept.de>
parents: 2841
diff changeset
   465
deepCopyUsing:aDictionary
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   466
    "raise an error - deepCopy is not allowed for blocks"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   467
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   468
    ^ self deepCopyError
3349
84a92126a268 must catch #deppCopyUsing: instead of #deepCopy.
Claus Gittinger <cg@exept.de>
parents: 2841
diff changeset
   469
84a92126a268 must catch #deppCopyUsing: instead of #deepCopy.
Claus Gittinger <cg@exept.de>
parents: 2841
diff changeset
   470
    "Created: / 31.3.1998 / 15:46:17 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   471
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   472
a27a279701f8 Initial revision
claus
parents:
diff changeset
   473
!Block methodsFor:'error handling'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   474
328
claus
parents: 326
diff changeset
   475
invalidCodeObject
1874
d0ebe01562e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   476
    "{ Pragma: +optSpace }"
d0ebe01562e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   477
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
   478
    "this error is triggered by the interpreter when a non-Block object
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
   479
     is about to be executed.
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
   480
     In this case, the VM sends this to the bad method (the receiver).
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
   481
     Can only happen when the Compiler/runtime system is broken or
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
   482
     someone played around."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   483
128
c50a2157883e return value of signal raise
claus
parents: 103
diff changeset
   484
    ^ InvalidCodeSignal
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   485
	raiseRequestWith:self
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   486
	errorString:'invalid block - not executable'
1874
d0ebe01562e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   487
d0ebe01562e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   488
    "Modified: 4.11.1996 / 22:46:39 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   489
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   490
a27a279701f8 Initial revision
claus
parents:
diff changeset
   491
!Block methodsFor:'evaluation'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   492
a27a279701f8 Initial revision
claus
parents:
diff changeset
   493
value
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   494
    "evaluate the receiver with no block args. 
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   495
     The receiver must be a block without arguments."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   496
a27a279701f8 Initial revision
claus
parents:
diff changeset
   497
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
   498
a27a279701f8 Initial revision
claus
parents:
diff changeset
   499
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   500
    OBJ home;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   501
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   502
    if (__INST(nargs) == __MKSMALLINT(0)) {
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   503
#if defined(THIS_CONTEXT)
328
claus
parents: 326
diff changeset
   504
	if (__ISVALID_ILC_LNO(__pilc))
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   505
	    __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   506
#endif
328
claus
parents: 326
diff changeset
   507
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   508
	thecode = __BlockInstPtr(self)->b_code;
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   509
#ifdef NEW_BLOCK_CALL
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   510
	if (thecode != (OBJFUNC)nil) {
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   511
	    /* compiled machine code */
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   512
	    RETURN ( (*thecode)(self) );
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   513
	}
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   514
	/* interpreted code */
328
claus
parents: 326
diff changeset
   515
# ifdef PASS_ARG_POINTER
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   516
	RETURN ( __interpret(self, 0, nil, nil, nil, nil) );
328
claus
parents: 326
diff changeset
   517
# else
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   518
	RETURN ( __interpret(self, 0, nil, nil, nil, nil) );
328
claus
parents: 326
diff changeset
   519
# endif
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   520
#else
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   521
	home = __BlockInstPtr(self)->b_home;
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   522
	if (thecode != (OBJFUNC)nil) {
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   523
	    /* compiled machine code */
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   524
	    RETURN ( (*thecode)(home) );
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   525
	}
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   526
	/* interpreted code */
328
claus
parents: 326
diff changeset
   527
# ifdef PASS_ARG_POINTER
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   528
	RETURN ( __interpret(self, 0, nil, home, nil, nil) );
328
claus
parents: 326
diff changeset
   529
# else
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   530
	RETURN ( __interpret(self, 0, nil, home, nil, nil) );
328
claus
parents: 326
diff changeset
   531
# endif
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   532
#endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   533
    }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   534
%}.
103
de0f8152878f errors now raise a signal
claus
parents: 98
diff changeset
   535
    ^ self wrongNumberOfArguments:0
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   536
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   537
a27a279701f8 Initial revision
claus
parents:
diff changeset
   538
value:arg
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   539
    "evaluate the receiver with one argument. 
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   540
     The receiver must be a 1-arg block."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   541
a27a279701f8 Initial revision
claus
parents:
diff changeset
   542
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
   543
a27a279701f8 Initial revision
claus
parents:
diff changeset
   544
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   545
    OBJ home;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   546
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   547
    if (__INST(nargs) == __MKSMALLINT(1)) {
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   548
#if defined(THIS_CONTEXT)
328
claus
parents: 326
diff changeset
   549
	if (__ISVALID_ILC_LNO(__pilc))
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   550
	    __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   551
#endif
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   552
	thecode = __BlockInstPtr(self)->b_code;
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   553
#ifdef NEW_BLOCK_CALL
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   554
	if (thecode != (OBJFUNC)nil) {
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   555
	    RETURN ( (*thecode)(self, arg) );
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   556
	}
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   557
	/* interpreted code */
328
claus
parents: 326
diff changeset
   558
# ifdef PASS_ARG_POINTER
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   559
	RETURN ( __interpret(self, 1, nil, nil, nil, nil, &arg) );
328
claus
parents: 326
diff changeset
   560
# else
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   561
	RETURN ( __interpret(self, 1, nil, nil, nil, nil, arg) );
328
claus
parents: 326
diff changeset
   562
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   563
#else
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   564
	home = __BlockInstPtr(self)->b_home;
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   565
	if (thecode != (OBJFUNC)nil) {
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   566
	    RETURN ( (*thecode)(home, arg) );
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   567
	}
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   568
	/* interpreted code */
328
claus
parents: 326
diff changeset
   569
# ifdef PASS_ARG_POINTER
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   570
	RETURN ( __interpret(self, 1, nil, home, nil, nil, &arg) );
328
claus
parents: 326
diff changeset
   571
# else
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   572
	RETURN ( __interpret(self, 1, nil, home, nil, nil, arg) );
328
claus
parents: 326
diff changeset
   573
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   574
#endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
   575
    }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   576
%}.
103
de0f8152878f errors now raise a signal
claus
parents: 98
diff changeset
   577
    ^ self wrongNumberOfArguments:1
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   578
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   579
a27a279701f8 Initial revision
claus
parents:
diff changeset
   580
value:arg1 value:arg2
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   581
    "evaluate the receiver with two arguments. 
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   582
     The receiver must be a 2-arg block."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   583
a27a279701f8 Initial revision
claus
parents:
diff changeset
   584
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
   585
a27a279701f8 Initial revision
claus
parents:
diff changeset
   586
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   587
    OBJ home;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   588
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   589
    if (__INST(nargs) == __MKSMALLINT(2)) {
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   590
#if defined(THIS_CONTEXT)
328
claus
parents: 326
diff changeset
   591
	if (__ISVALID_ILC_LNO(__pilc))
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   592
	    __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   593
#endif
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   594
	thecode = __BlockInstPtr(self)->b_code;
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   595
#ifdef NEW_BLOCK_CALL
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   596
	if (thecode != (OBJFUNC)nil) {
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   597
	    RETURN ( (*thecode)(self, arg1, arg2) );
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   598
	}
328
claus
parents: 326
diff changeset
   599
# ifdef PASS_ARG_POINTER
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   600
	RETURN ( __interpret(self, 2, nil, nil, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
   601
# else
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   602
	RETURN ( __interpret(self, 2, nil, nil, nil, nil, arg1, arg2) );
328
claus
parents: 326
diff changeset
   603
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   604
#else
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   605
	home = __BlockInstPtr(self)->b_home;
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   606
	if (thecode != (OBJFUNC)nil) {
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   607
	    RETURN ( (*thecode)(home, arg1, arg2) );
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   608
	}
328
claus
parents: 326
diff changeset
   609
# ifdef PASS_ARG_POINTER
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   610
	RETURN ( __interpret(self, 2, nil, home, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
   611
# else
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   612
	RETURN ( __interpret(self, 2, nil, home, nil, nil, arg1, arg2) );
328
claus
parents: 326
diff changeset
   613
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   614
#endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
   615
    }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   616
%}.
103
de0f8152878f errors now raise a signal
claus
parents: 98
diff changeset
   617
    ^ self wrongNumberOfArguments:2
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   618
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   619
a27a279701f8 Initial revision
claus
parents:
diff changeset
   620
value:arg1 value:arg2 value:arg3
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   621
    "evaluate the receiver with three arguments. 
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   622
     The receiver must be a 3-arg block."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   623
a27a279701f8 Initial revision
claus
parents:
diff changeset
   624
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
   625
a27a279701f8 Initial revision
claus
parents:
diff changeset
   626
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   627
    OBJ home;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   628
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   629
    if (__INST(nargs) == __MKSMALLINT(3)) {
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   630
#if defined(THIS_CONTEXT)
328
claus
parents: 326
diff changeset
   631
	if (__ISVALID_ILC_LNO(__pilc))
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   632
	    __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   633
#endif
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   634
	thecode = __BlockInstPtr(self)->b_code;
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   635
#ifdef NEW_BLOCK_CALL
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   636
	if (thecode != (OBJFUNC)nil) {
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   637
	    RETURN ( (*thecode)(self, arg1, arg2, arg3) );
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   638
	}
328
claus
parents: 326
diff changeset
   639
# ifdef PASS_ARG_POINTER
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   640
	RETURN ( __interpret(self, 3, nil, nil, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
   641
# else
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   642
	RETURN ( __interpret(self, 3, nil, nil, nil, nil, arg1, arg2, arg3) );
328
claus
parents: 326
diff changeset
   643
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   644
#else
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   645
	home = __BlockInstPtr(self)->b_home;
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   646
	if (thecode != (OBJFUNC)nil) {
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   647
	    RETURN ( (*thecode)(home, arg1, arg2, arg3) );
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   648
	}
328
claus
parents: 326
diff changeset
   649
# ifdef PASS_ARG_POINTER
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   650
	RETURN ( __interpret(self, 3, nil, home, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
   651
# else
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   652
	RETURN ( __interpret(self, 3, nil, home, nil, nil, arg1, arg2, arg3) );
328
claus
parents: 326
diff changeset
   653
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   654
#endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
   655
    }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   656
%}.
103
de0f8152878f errors now raise a signal
claus
parents: 98
diff changeset
   657
    ^ self wrongNumberOfArguments:3
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   658
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   659
a27a279701f8 Initial revision
claus
parents:
diff changeset
   660
value:arg1 value:arg2 value:arg3 value:arg4
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   661
    "evaluate the receiver with four arguments. 
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   662
     The receiver must be a 4-arg block."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   663
a27a279701f8 Initial revision
claus
parents:
diff changeset
   664
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
   665
a27a279701f8 Initial revision
claus
parents:
diff changeset
   666
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   667
    OBJ home;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   668
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   669
    if (__INST(nargs) == __MKSMALLINT(4)) {
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   670
#if defined(THIS_CONTEXT)
328
claus
parents: 326
diff changeset
   671
	if (__ISVALID_ILC_LNO(__pilc))
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   672
	    __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   673
#endif
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   674
	thecode = __BlockInstPtr(self)->b_code;
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   675
#ifdef NEW_BLOCK_CALL
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   676
	if (thecode != (OBJFUNC)nil) {
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   677
	    RETURN ( (*thecode)(self, arg1, arg2, arg3, arg4) );
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   678
	}
328
claus
parents: 326
diff changeset
   679
# ifdef PASS_ARG_POINTER
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   680
	RETURN ( __interpret(self, 4, nil, nil, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
   681
# else
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   682
	RETURN ( __interpret(self, 4, nil, nil, nil, nil, arg1, arg2, arg3, arg4) );
328
claus
parents: 326
diff changeset
   683
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   684
#else
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   685
	home = __BlockInstPtr(self)->b_home;
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   686
	if (thecode != (OBJFUNC)nil) {
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   687
	    RETURN ( (*thecode)(home, arg1, arg2, arg3, arg4) );
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   688
	}
328
claus
parents: 326
diff changeset
   689
# ifdef PASS_ARG_POINTER
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   690
	RETURN ( __interpret(self, 4, nil, home, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
   691
# else
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   692
	RETURN ( __interpret(self, 4, nil, home, nil, nil, arg1, arg2, arg3, arg4) );
328
claus
parents: 326
diff changeset
   693
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   694
#endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
   695
    }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   696
%}.
103
de0f8152878f errors now raise a signal
claus
parents: 98
diff changeset
   697
    ^ self wrongNumberOfArguments:4
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   698
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   699
a27a279701f8 Initial revision
claus
parents:
diff changeset
   700
value:arg1 value:arg2 value:arg3 value:arg4 value:arg5
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   701
    "evaluate the receiver with five arguments. 
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   702
     The receiver must be a 5-arg block."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   703
a27a279701f8 Initial revision
claus
parents:
diff changeset
   704
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
   705
a27a279701f8 Initial revision
claus
parents:
diff changeset
   706
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   707
    OBJ home;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   708
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   709
    if (__INST(nargs) == __MKSMALLINT(5)) {
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   710
#if defined(THIS_CONTEXT)
328
claus
parents: 326
diff changeset
   711
	if (__ISVALID_ILC_LNO(__pilc))
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   712
	    __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   713
#endif
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   714
	thecode = __BlockInstPtr(self)->b_code;
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   715
#ifdef NEW_BLOCK_CALL
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   716
	if (thecode != (OBJFUNC)nil) {
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   717
	    RETURN ( (*thecode)(self, arg1, arg2, arg3, arg4, arg5) );
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   718
	}
328
claus
parents: 326
diff changeset
   719
# ifdef PASS_ARG_POINTER
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   720
	RETURN ( __interpret(self, 5, nil, nil, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
   721
# else
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   722
	RETURN ( __interpret(self, 5, nil, nil, nil, nil, arg1, arg2, arg3, arg4, arg5) );
328
claus
parents: 326
diff changeset
   723
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   724
#else
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   725
	home = __BlockInstPtr(self)->b_home;
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   726
	if (thecode != (OBJFUNC)nil) {
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   727
	    RETURN ( (*thecode)(home, arg1, arg2, arg3, arg4, arg5) );
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   728
	}
328
claus
parents: 326
diff changeset
   729
# ifdef PASS_ARG_POINTER
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   730
	RETURN ( __interpret(self, 5, nil, home, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
   731
# else
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   732
	RETURN ( __interpret(self, 5, nil, home, nil, nil, arg1, arg2, arg3, arg4, arg5) );
328
claus
parents: 326
diff changeset
   733
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   734
#endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
   735
    }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   736
%}.
103
de0f8152878f errors now raise a signal
claus
parents: 98
diff changeset
   737
    ^ self wrongNumberOfArguments:5
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   738
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   739
a27a279701f8 Initial revision
claus
parents:
diff changeset
   740
value:arg1 value:arg2 value:arg3 value:arg4 value:arg5 value:arg6
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   741
    "evaluate the receiver with six arguments. 
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   742
     The receiver must be a 6-arg block."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   743
a27a279701f8 Initial revision
claus
parents:
diff changeset
   744
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
   745
a27a279701f8 Initial revision
claus
parents:
diff changeset
   746
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   747
    OBJ home;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   748
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   749
    if (__INST(nargs) == __MKSMALLINT(6)) {
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   750
#if defined(THIS_CONTEXT)
328
claus
parents: 326
diff changeset
   751
	if (__ISVALID_ILC_LNO(__pilc))
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   752
	    __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   753
#endif
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   754
	thecode = __BlockInstPtr(self)->b_code;
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   755
#ifdef NEW_BLOCK_CALL
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   756
	if (thecode != (OBJFUNC)nil) {
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   757
	    RETURN ( (*thecode)(self, arg1, arg2, arg3, arg4, arg5, arg6) );
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   758
	}
328
claus
parents: 326
diff changeset
   759
# ifdef PASS_ARG_POINTER
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   760
	RETURN ( __interpret(self, 6, nil, nil, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
   761
# else
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   762
	RETURN ( __interpret(self, 6, nil, nil, nil, nil, arg1, arg2, arg3, arg4, arg5, arg6) );
328
claus
parents: 326
diff changeset
   763
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   764
#else
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   765
	home = __BlockInstPtr(self)->b_home;
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   766
	if (thecode != (OBJFUNC)nil) {
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   767
	    RETURN ( (*thecode)(home, arg1, arg2, arg3, arg4, arg5, arg6) );
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
   768
	}
328
claus
parents: 326
diff changeset
   769
# ifdef PASS_ARG_POINTER
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   770
	RETURN ( __interpret(self, 6, nil, home, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
   771
# else
2201
db0f6e86c8bb COMMA_SENDER arg is no longer supported / needed
Claus Gittinger <cg@exept.de>
parents: 1979
diff changeset
   772
	RETURN ( __interpret(self, 6, nil, home, nil, nil, arg1, arg2, arg3, arg4, arg5, arg6) );
328
claus
parents: 326
diff changeset
   773
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   774
#endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
   775
    }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   776
%}.
103
de0f8152878f errors now raise a signal
claus
parents: 98
diff changeset
   777
    ^ self wrongNumberOfArguments:6
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   778
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   779
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   780
value:arg1 value:arg2 value:arg3 value:arg4 value:arg5 value:arg6 value:arg7
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   781
    "evaluate the receiver with seven arguments.
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   782
     The receiver must be a 7-arg block."
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   783
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   784
%{  /* NOCONTEXT */
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   785
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   786
    REGISTER OBJFUNC thecode;
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   787
    OBJ home;
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   788
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   789
    if (__INST(nargs) == __MKSMALLINT(7)) {
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   790
#if defined(THIS_CONTEXT)
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   791
	if (__ISVALID_ILC_LNO(__pilc))
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   792
	    __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   793
#endif
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   794
	thecode = __BlockInstPtr(self)->b_code;
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   795
#ifdef NEW_BLOCK_CALL
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   796
	if (thecode != (OBJFUNC)nil) {
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   797
	    RETURN ( (*thecode)(self, arg1, arg2, arg3, arg4, arg5, arg6, arg7) );
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   798
	}
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   799
# ifdef PASS_ARG_POINTER
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   800
	RETURN ( __interpret(self, 7, nil, nil, nil, nil, &arg1) );
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   801
# else
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   802
	RETURN ( __interpret(self, 7, nil, nil, nil, nil, arg1, arg2, arg3, arg4, arg5, arg6, arg7) );
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   803
# endif
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   804
#else
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   805
	home = __BlockInstPtr(self)->b_home;
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   806
	if (thecode != (OBJFUNC)nil) {
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   807
	    RETURN ( (*thecode)(home, arg1, arg2, arg3, arg4, arg5, arg6, arg7) );
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   808
	}
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   809
# ifdef PASS_ARG_POINTER
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   810
	RETURN ( __interpret(self, 7, nil, home, nil, nil, &arg1) );
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   811
# else
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   812
	RETURN ( __interpret(self, 7, nil, home, nil, nil, arg1, arg2, arg3, arg4, arg5, arg6, arg7) );
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   813
# endif
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   814
#endif
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   815
    }
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   816
%}.
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   817
    ^ self wrongNumberOfArguments:7
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   818
!
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   819
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   820
value:arg1 value:arg2 value:arg3 value:arg4 value:arg5 value:arg6 value:arg7 value:arg8
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   821
    "evaluate the receiver with eight arguments.
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   822
     The receiver must be a 8-arg block."
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   823
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   824
%{  /* NOCONTEXT */
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   825
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   826
    REGISTER OBJFUNC thecode;
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   827
    OBJ home;
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   828
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   829
    if (__INST(nargs) == __MKSMALLINT(8)) {
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   830
#if defined(THIS_CONTEXT)
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   831
	if (__ISVALID_ILC_LNO(__pilc))
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   832
	    __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   833
#endif
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   834
	thecode = __BlockInstPtr(self)->b_code;
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   835
#ifdef NEW_BLOCK_CALL
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   836
	if (thecode != (OBJFUNC)nil) {
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   837
	    RETURN ( (*thecode)(self, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) );
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   838
	}
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   839
# ifdef PASS_ARG_POINTER
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   840
	RETURN ( __interpret(self, 8, nil, nil, nil, nil, &arg1) );
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   841
# else
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   842
	RETURN ( __interpret(self, 8, nil, nil, nil, nil, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) );
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   843
# endif
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   844
#else
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   845
	home = __BlockInstPtr(self)->b_home;
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   846
	if (thecode != (OBJFUNC)nil) {
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   847
	    RETURN ( (*thecode)(home, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) );
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   848
	}
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   849
# ifdef PASS_ARG_POINTER
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   850
	RETURN ( __interpret(self, 8, nil, home, nil, nil, &arg1) );
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   851
# else
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   852
	RETURN ( __interpret(self, 8, nil, home, nil, nil, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) );
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   853
# endif
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   854
#endif
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   855
    }
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   856
%}.
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   857
    ^ self wrongNumberOfArguments:8
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   858
!
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   859
3688
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   860
valueAt:priority
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   861
    "evaluate the receiver, at the given prioriy;
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   862
     i.e. change the priority for the execution of the receiver."
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   863
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   864
    |oldPrio retVal|
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   865
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   866
    oldPrio := Processor activePriority.
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   867
    [
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   868
        Processor activeProcess priority:priority.
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   869
        retVal := self value.
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   870
    ] valueNowOrOnUnwindDo:[
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   871
        Processor activeProcess priority:oldPrio
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   872
    ].
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   873
    ^ retVal
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   874
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   875
    "
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   876
     [
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   877
         1000 timesRepeat:[
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   878
             1000 factorial
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   879
         ]
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   880
     ] valueAt:3
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   881
    "
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   882
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   883
    "Created: / 29.7.1998 / 19:19:48 / cg"
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   884
!
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   885
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   886
valueWithArguments:argArray
a27a279701f8 Initial revision
claus
parents:
diff changeset
   887
    "evaluate the receiver with arguments taken from argArray.
313
83c50ef3886a *** empty log message ***
claus
parents: 306
diff changeset
   888
     ArgArray must be either an Array or nil.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   889
     The size of the argArray must match the number of arguments the receiver expects."
a27a279701f8 Initial revision
claus
parents:
diff changeset
   890
3497
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   891
    |a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   892
2841
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
   893
    (argArray notNil and:[(argArray class ~~ Array) and:[argArray isArray not]]) ifTrue:[
3497
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   894
        ^ self badArgumentArry
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   895
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
   896
    (argArray size == nargs) ifFalse:[
3497
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   897
        ^ self wrongNumberOfArguments:(argArray size)
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   898
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
   899
%{
a27a279701f8 Initial revision
claus
parents:
diff changeset
   900
a27a279701f8 Initial revision
claus
parents:
diff changeset
   901
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   902
    OBJ home;
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
   903
    REGISTER OBJ *ap;
2841
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
   904
    int __nargs;
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
   905
    OBJ nA;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   906
a27a279701f8 Initial revision
claus
parents:
diff changeset
   907
#if defined(THIS_CONTEXT)
328
claus
parents: 326
diff changeset
   908
    if (__ISVALID_ILC_LNO(__pilc))
3497
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   909
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   910
#endif
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   911
    thecode = __BlockInstPtr(self)->b_code;
1037
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
   912
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
   913
#ifndef NEW_BLOCK_CALL
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   914
    home = __BlockInstPtr(self)->b_home;
1037
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
   915
    if (thecode != (OBJFUNC)nil) {
3497
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   916
        if ((nA = __INST(nargs)) == __MKSMALLINT(0)) {
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   917
            RETURN ( (*thecode)(home) );
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   918
        }
2841
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
   919
3497
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   920
        switch (__intVal(__INST(nargs))) {
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   921
            default:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   922
                goto error;
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   923
            case 12:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   924
                ap = __ArrayInstPtr(argArray)->a_element;
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   925
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7], ap[8], ap[9], ap[10], ap[11]) );
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   926
            case 11:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   927
                ap = __ArrayInstPtr(argArray)->a_element;
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   928
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7], ap[8], ap[9], ap[10]) );
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   929
            case 10:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   930
                ap = __ArrayInstPtr(argArray)->a_element;
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   931
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7], ap[8], ap[9]) );
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   932
            case 9:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   933
                ap = __ArrayInstPtr(argArray)->a_element;
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   934
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7], ap[8]) );
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   935
            case 8:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   936
                ap = __ArrayInstPtr(argArray)->a_element;
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   937
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7]) );
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   938
            case 7:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   939
                ap = __ArrayInstPtr(argArray)->a_element;
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   940
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6]) );
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   941
            case 6:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   942
                ap = __ArrayInstPtr(argArray)->a_element;
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   943
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5]) );
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   944
            case 5:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   945
                ap = __ArrayInstPtr(argArray)->a_element;
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   946
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4]) );
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   947
            case 4:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   948
                ap = __ArrayInstPtr(argArray)->a_element;
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   949
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3]) );
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   950
            case 3:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   951
                ap = __ArrayInstPtr(argArray)->a_element;
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   952
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2]) );
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   953
            case 2:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   954
                ap = __ArrayInstPtr(argArray)->a_element;
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   955
                RETURN ( (*thecode)(home, ap[0], ap[1]) );
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   956
            case 1:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   957
                RETURN ( (*thecode)(home, __ArrayInstPtr(argArray)->a_element[0]) );
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   958
            case 0:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   959
                RETURN ( (*thecode)(home) );
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   960
                break;
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   961
        }
1037
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
   962
    }
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
   963
#endif
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
   964
2841
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
   965
    __nargs = __intVal(__INST(nargs));
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
   966
    if (__nargs) {
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
   967
        switch (__nargs) {
3497
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   968
            default:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   969
                goto error;
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   970
            case 12:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   971
                a12 = __ArrayInstPtr(argArray)->a_element[11];
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   972
            case 11:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   973
                a11 = __ArrayInstPtr(argArray)->a_element[10];
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   974
            case 10:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   975
                a10 = __ArrayInstPtr(argArray)->a_element[9];
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   976
            case 9:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   977
                a9 = __ArrayInstPtr(argArray)->a_element[8];
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   978
            case 8:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   979
                a8 = __ArrayInstPtr(argArray)->a_element[7];
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   980
            case 7:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   981
                a7 = __ArrayInstPtr(argArray)->a_element[6];
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   982
            case 6:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   983
                a6 = __ArrayInstPtr(argArray)->a_element[5];
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   984
            case 5:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   985
                a5 = __ArrayInstPtr(argArray)->a_element[4];
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   986
            case 4:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   987
                a4 = __ArrayInstPtr(argArray)->a_element[3];
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   988
            case 3:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   989
                a3 = __ArrayInstPtr(argArray)->a_element[2];
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   990
            case 2:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   991
                a2 = __ArrayInstPtr(argArray)->a_element[1];
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   992
            case 1:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   993
                a1 = __ArrayInstPtr(argArray)->a_element[0];
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   994
            case 0:
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   995
                break;
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
   996
        }
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   997
    }
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
   998
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   999
#ifdef NEW_BLOCK_CALL
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1000
    if (thecode != (OBJFUNC)nil) {
3497
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
  1001
        RETURN ( (*thecode)(self, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12) );
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  1002
    }
328
claus
parents: 326
diff changeset
  1003
# ifdef PASS_ARG_POINTER
2841
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1004
    RETURN ( __interpret(self, __nargs, nil, nil, nil, nil, &a1) );
328
claus
parents: 326
diff changeset
  1005
# else
3497
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
  1006
    RETURN ( __interpret(self, __nargs, nil, nil, nil, nil, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12) );
328
claus
parents: 326
diff changeset
  1007
# endif
1037
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  1008
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1009
#else
1037
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  1010
328
claus
parents: 326
diff changeset
  1011
# ifdef PASS_ARG_POINTER
2841
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1012
    RETURN ( __interpret(self, __nargs, nil, home, nil, nil, &a1) );
328
claus
parents: 326
diff changeset
  1013
# else
3497
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
  1014
    RETURN ( __interpret(self, __nargs, nil, home, nil, nil, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12) );
328
claus
parents: 326
diff changeset
  1015
# endif
1037
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  1016
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1017
#endif
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1018
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  1019
error: ;
2841
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1020
%}.
138
c9f46b635f98 *** empty log message ***
claus
parents: 128
diff changeset
  1021
    "
3497
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
  1022
     the above code only supports up-to 12 arguments
138
c9f46b635f98 *** empty log message ***
claus
parents: 128
diff changeset
  1023
    "
128
c50a2157883e return value of signal raise
claus
parents: 103
diff changeset
  1024
    ^ ArgumentSignal
3497
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
  1025
        raiseRequestWith:self
e534dfaca7de support up to 12 args.
Claus Gittinger <cg@exept.de>
parents: 3349
diff changeset
  1026
        errorString:'only blocks with up-to 12 arguments supported'
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1027
! !
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1028
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1029
!Block methodsFor:'exception handling'!
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1030
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1031
handlerForSignal:signal context:theContext originator:originator
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1032
    "answer the handler block for the signal from originator.
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1033
     The handler block is retrieved from aContext.
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1034
     Answer nil if the signal is not handled."
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1035
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1036
    |sig handler|
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1037
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1038
    theContext selector == #on:do: ifTrue:[
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1039
        sig := theContext argAt:1.
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1040
        (sig accepts:signal) ifTrue:[
4471
f5ca98d3a5d9 added #handlingSignalInContext:
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1041
            handler := theContext argAt:2.
f5ca98d3a5d9 added #handlingSignalInContext:
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1042
            "/ this is for backward compatibility when no ex-arg
f5ca98d3a5d9 added #handlingSignalInContext:
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1043
            "/ is expected in the block. Is it worth the effort ?
f5ca98d3a5d9 added #handlingSignalInContext:
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1044
            handler numArgs == 0 ifTrue:[
f5ca98d3a5d9 added #handlingSignalInContext:
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1045
                ^ [:ex | handler value]
f5ca98d3a5d9 added #handlingSignalInContext:
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1046
            ].
f5ca98d3a5d9 added #handlingSignalInContext:
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1047
            ^ handler
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1048
        ].
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1049
    ] ifFalse:[
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1050
        "must be #valueWithExceptionHandler:"
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1051
        handler := theContext argAt:1.
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1052
        ^ handler handlerForSignal:signal.
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1053
    ].
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1054
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1055
    ^ nil
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1056
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1057
    "Created: / 25.7.1999 / 19:52:58 / stefan"
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1058
    "Modified: / 26.7.1999 / 14:30:42 / stefan"
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1059
!
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1060
4476
696ac99f2a52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4471
diff changeset
  1061
handlingExceptionInContext:theContext
4471
f5ca98d3a5d9 added #handlingSignalInContext:
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1062
    "answer the handling signal from aContext."
f5ca98d3a5d9 added #handlingSignalInContext:
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1063
f5ca98d3a5d9 added #handlingSignalInContext:
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1064
    theContext selector == #on:do: ifTrue:[
f5ca98d3a5d9 added #handlingSignalInContext:
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1065
        ^ theContext argAt:1.
f5ca98d3a5d9 added #handlingSignalInContext:
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1066
    ] ifFalse:[
f5ca98d3a5d9 added #handlingSignalInContext:
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1067
        "must be #valueWithExceptionHandler:"
f5ca98d3a5d9 added #handlingSignalInContext:
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1068
        ^ theContext argAt:1.
f5ca98d3a5d9 added #handlingSignalInContext:
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1069
    ].
f5ca98d3a5d9 added #handlingSignalInContext:
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1070
f5ca98d3a5d9 added #handlingSignalInContext:
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1071
!
f5ca98d3a5d9 added #handlingSignalInContext:
Claus Gittinger <cg@exept.de>
parents: 4464
diff changeset
  1072
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1073
on:aSignal do:exceptionBlock
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1074
    "added for ST/V compatibility; evaluate the receiver,
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1075
     handling aSignal. The argument, exceptionBlock is evaluated
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1076
     if the signal is raised during evaluation.
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1077
     Warning: no warranty, if the code below mimics ST/V's behavior
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1078
     correctly - give me a note if it does not ."
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1079
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1080
    <exception: #handle>
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1081
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1082
    "/ thisContext markForHandle. -- same as above pragma
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1083
    ^ self value. "the real logic is in Exception>>doRaise"
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1084
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1085
    "
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1086
     [
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1087
        1 foo
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1088
     ] on:MessageNotUnderstoodSignal do:[:ex | self halt]
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1089
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1090
     [
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1091
        1 foo
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1092
     ] on:SignalSet anySignal do:[:ex| 2 bar. self halt]
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1093
    "
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1094
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1095
    "Modified: / 26.7.1999 / 15:30:48 / stefan"
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1096
!
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1097
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1098
valueWithExceptionHandler:handler
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1099
    "evaluate myself. If any of the signals in handler is raised,
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1100
     evaluate the corresponding handler block."
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1101
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1102
    <exception: #handle>
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1103
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1104
    "/ thisContext markForHandle. -- same as above pragma
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1105
    ^ self value. "the real logic is in Exception>>doRaise"
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1106
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1107
    "Created: / 26.7.1999 / 11:23:45 / stefan"
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1108
    "Modified: / 26.7.1999 / 11:24:06 / stefan"
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1109
! !
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1110
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1111
!Block methodsFor:'looping'!
325
claus
parents: 319
diff changeset
  1112
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1113
doUntil:aBlock
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1114
    "repeat the receiver block until aBlock evaluates to true.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1115
     The receiver is evaluated at least once.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1116
     This is the same as '... doWhile:[... not]' "
325
claus
parents: 319
diff changeset
  1117
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1118
    "this implementation is for purists ... :-)"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1119
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1120
    self value.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1121
    aBlock value ifTrue:[^ nil].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1122
    thisContext restart
325
claus
parents: 319
diff changeset
  1123
claus
parents: 319
diff changeset
  1124
    "
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1125
     |n|
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1126
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1127
     n := 1.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1128
     [n printNewline] doUntil:[ (n := n + 1) > 5 ]
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1129
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1130
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1131
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1132
doWhile:aBlock
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1133
    "repeat the receiver block until aBlock evaluates to false.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1134
     The receiver is evaluated at least once."
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1135
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1136
    "this implementation is for purists ... :-)"
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1137
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1138
    self value.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1139
    aBlock value ifFalse:[^ nil].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1140
    thisContext restart
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1141
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1142
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1143
     |n|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1144
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1145
     n := 1.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1146
     [n printNewline] doWhile:[ (n := n + 1) <= 5 ]
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1147
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1148
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1149
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1150
loop
1211
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1151
    "repeat the receiver forever 
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1152
     (the receiver block should contain a return somewhere).
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1153
     The implementation below was inspired by a corresponding Self method."
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1154
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1155
    self value.
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1156
    thisContext restart
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1157
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1158
    "
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1159
     |n|
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1160
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1161
     n := 1.
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1162
     [
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
  1163
	n printNewline.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
  1164
	n >= 10 ifTrue:[^ nil].
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
  1165
	n := n + 1
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1166
     ] loop
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1167
    "
1211
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1168
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1169
    "Modified: 18.4.1996 / 13:50:40 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1170
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1171
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1172
loopWithExit
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1173
    "the receiver must be a block of one argument.  It is evaluated in a loop forever, 
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1174
     and is passed a block, which, if sent a value:-message, will exit the receiver block, 
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1175
     returning the parameter of the value:-message. Used for loops with exit in the middle.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1176
     Inspired by a corresponding Self method."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1177
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1178
    |exitBlock|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1179
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1180
    exitBlock := [:exitValue | ^ exitValue].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1181
    [true] whileTrue:[self value:exitBlock]
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1182
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1183
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1184
     |i|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1185
     i := 1.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1186
     [:exit |
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1316
diff changeset
  1187
	Transcript showCR:i.
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1188
	i == 5 ifTrue:[exit value:'thats it'].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1189
	i := i + 1
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1190
     ] loopWithExit
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1191
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1192
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1193
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1194
repeat
1211
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1195
    "repeat the receiver forever - same as loop, for ST-80 compatibility.
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1196
      (the receiver block should contain a return somewhere)."
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1197
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1198
    self value.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1199
    thisContext restart
1211
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1200
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1201
    "Modified: 18.4.1996 / 13:50:55 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1202
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1203
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1204
valueWithExit
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1205
    "the receiver must be a block of one argument.  It is evaluated, and is passed a block,
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1206
     which, if sent a value:-message, will exit the receiver block, returning the parameter of the 
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1207
     value:-message. Used for premature returns to the caller.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1208
     Taken from a manchester goody (a similar construct also appears in Self)."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1209
1211
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1210
    ^ self value:[:exitValue | ^exitValue]
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1211
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1212
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1213
     [:exit |
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
  1214
	1 to:10 do:[:i |
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
  1215
	    Transcript showCR:i.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
  1216
	    i == 5 ifTrue:[exit value:'thats it']
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
  1217
	].
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
  1218
	'regular block-value; never returned'
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1219
     ] valueWithExit
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1220
    "
1211
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1221
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1222
    "Modified: 18.4.1996 / 13:51:38 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1223
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1224
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1225
whileFalse
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1226
    "evaluate the receiver while it evaluates to false (ST80 compatibility)"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1227
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1228
    "this implementation is for purists ... :-)"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1229
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1230
    self value ifTrue:[^ nil].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1231
    thisContext restart
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1232
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1233
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1234
     |n|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1235
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1236
     n := 1.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1237
     [n printNewline. (n := n + 1) > 10] whileFalse
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1238
    "
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1239
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1240
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1241
whileFalse:aBlock
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1242
    "evaluate the argument, aBlock while the receiver evaluates to false.
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1243
     - usually open coded by compilers, but needed here for #perform 
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1244
       and expression evaluation."
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1245
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1246
    "this implementation is for purists ... :-)"
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1247
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1248
    self value ifTrue:[^ nil].
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1249
    aBlock value.
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1250
    thisContext restart
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1251
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1252
    "
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1253
     |n|
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1254
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1255
     n := 1.
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1256
     [n > 10] whileFalse:[
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1257
	n printNewline.
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1258
	n := n + 1
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1259
     ]
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1260
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1261
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1262
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1263
whileTrue
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1264
    "evaluate the receiver while it evaluates to true (ST80 compatibility)"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1265
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1266
    "this implementation is for purists ... :-)"
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1267
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1268
    self value ifFalse:[^ nil].
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1269
    thisContext restart
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1270
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1271
    "
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1272
     |n|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1273
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1274
     n := 1.
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1275
     [n printNewline. (n := n + 1) <= 10] whileTrue
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1276
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1277
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1278
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1279
whileTrue:aBlock
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1280
    "evaluate the argument, aBlock while the receiver evaluates to true.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1281
     - usually open coded by compilers, but needed here for #perform 
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1282
       and expression evaluation."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1283
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1284
    "this implementation is for purists ... :-)"
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1285
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1286
    self value ifFalse:[^ nil].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1287
    aBlock value.
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1288
    thisContext restart
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1289
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1290
    "
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1291
     |n|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1292
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1293
     n := 1.
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1294
     [n <= 10] whileTrue:[
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1295
	n printNewline.
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1296
	n := n + 1
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1297
     ]
68
59faa75185ba *** empty log message ***
claus
parents: 67
diff changeset
  1298
    "
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1299
! !
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1300
92
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
  1301
!Block methodsFor:'printing & storing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1302
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1303
printOn:aStream
44
b262907c93ea *** empty log message ***
claus
parents: 22
diff changeset
  1304
    "append a a printed representation of the block to aStream"
b262907c93ea *** empty log message ***
claus
parents: 22
diff changeset
  1305
213
3b56a17534fd *** empty log message ***
claus
parents: 212
diff changeset
  1306
    |homeClass h sel methodClass|
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  1307
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  1308
    "cheap blocks have no home context, but a method instead"
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  1309
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  1310
    (home isNil or:[home isContext not]) ifTrue:[
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1311
	aStream nextPutAll:'[] in '.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1312
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1313
	"
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1314
	 currently, some cheap blocks don't know where they have been created
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1315
	"
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1316
	aStream nextPutAll:' ??? (optimized)'.
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1317
	^ self
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  1318
    ].
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  1319
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  1320
    "a full blown block (with home, but without method)"
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  1321
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  1322
    aStream nextPutAll:'[] in '. 
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1323
    h := self methodHome.
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1324
    sel := h selector.
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1325
"/ old:
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1326
"/    home receiver class name printOn:aStream.
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1327
"/ new:
212
3edd10edefaf *** empty log message ***
claus
parents: 161
diff changeset
  1328
"/    (h searchClass whichClassImplements:sel) name printOn:aStream.
213
3b56a17534fd *** empty log message ***
claus
parents: 212
diff changeset
  1329
    methodClass := h methodClass.
3b56a17534fd *** empty log message ***
claus
parents: 212
diff changeset
  1330
    methodClass isNil ifTrue:[
3b56a17534fd *** empty log message ***
claus
parents: 212
diff changeset
  1331
	'UnboundMethod' printOn:aStream.
3b56a17534fd *** empty log message ***
claus
parents: 212
diff changeset
  1332
    ] ifFalse:[
3b56a17534fd *** empty log message ***
claus
parents: 212
diff changeset
  1333
	methodClass name printOn:aStream.
3b56a17534fd *** empty log message ***
claus
parents: 212
diff changeset
  1334
    ].
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  1335
    aStream nextPut:$-.
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1336
    sel printOn:aStream.
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  1337
2841
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1338
"/
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1339
"/    aStream nextPutAll:'[] in '.
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1340
"/    homeClass := home containingClass.
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1341
"/    homeClass notNil ifTrue:[
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1342
"/	homeClass name printOn:aStream.
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1343
"/	aStream space.
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1344
"/	(homeClass selectorForMethod:home) printOn:aStream
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1345
"/    ] ifFalse:[
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1346
"/	aStream nextPutAll:' ???' 
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1347
"/    ]
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1348
"/
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1349
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1350
! !
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1351
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1352
!Block methodsFor:'private accessing'!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1353
2542
555749f035f4 need stackSize when creating blocks.
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
  1354
byteCode:bCode numArgs:numArgs numStack:numStack sourcePosition:srcPos initialPC:iPC literals:lits
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  1355
    "set all relevant internals.
1773
442d1b73ecb9 no longer allow Blocks with a dynamic-bit to be created
Claus Gittinger <cg@exept.de>
parents: 1672
diff changeset
  1356
     DANGER ALERT: this interface is strictly private."
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1357
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1358
    byteCode := bCode.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1359
    nargs := numArgs.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1360
    sourcePos := srcPos.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1361
    initialPC := iPC.
1777
150a1516ef75 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1773
diff changeset
  1362
    flags := 0.
2542
555749f035f4 need stackSize when creating blocks.
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
  1363
    self stackSize:numStack.
1493
33e226c7d187 Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1364
    self literals:lits.
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  1365
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  1366
    "Modified: 23.4.1996 / 16:05:30 / cg"
1493
33e226c7d187 Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1367
    "Modified: 24.6.1996 / 12:37:37 / stefan"
2542
555749f035f4 need stackSize when creating blocks.
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
  1368
    "Created: 13.4.1997 / 00:00:57 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1369
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1370
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1371
initialPC:initial 
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  1372
    "set the initial pc for evaluation.
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  1373
     DANGER ALERT: this interface is for the compiler only."
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1374
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1375
    initialPC := initial
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  1376
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  1377
    "Modified: 23.4.1996 / 16:05:39 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1378
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1379
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1380
numArgs:numArgs
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  1381
    "set the number of arguments the receiver expects for evaluation.
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  1382
     DANGER ALERT: this interface is for the compiler only."
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1383
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1384
    nargs := numArgs
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  1385
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  1386
    "Modified: 23.4.1996 / 16:05:52 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1387
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1388
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1389
sourcePosition:position 
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  1390
    "set the position of the source within my method.
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  1391
     This interface is for the compiler only."
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1392
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1393
    sourcePos := position
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  1394
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  1395
    "Modified: 23.4.1996 / 16:06:19 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1396
! !
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1397
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1398
!Block methodsFor:'privileged evaluation'!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1399
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1400
valueUninterruptably
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1401
    "evaluate the receiver with interrupts blocked.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1402
     This does not prevent preemption by a higher priority processes
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1403
     if any becomes runnable due to the evaluation of the receiver
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1404
     (i.e. if a semaphore is signalled)."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1405
2301
e3976a1e863a in valueUninterruptably:
Claus Gittinger <cg@exept.de>
parents: 2286
diff changeset
  1406
    "we must keep track of blocking-state if this is called nested"
e3976a1e863a in valueUninterruptably:
Claus Gittinger <cg@exept.de>
parents: 2286
diff changeset
  1407
    (OperatingSystem blockInterrupts) ifTrue:[
e3976a1e863a in valueUninterruptably:
Claus Gittinger <cg@exept.de>
parents: 2286
diff changeset
  1408
        "/ already blocked.
e3976a1e863a in valueUninterruptably:
Claus Gittinger <cg@exept.de>
parents: 2286
diff changeset
  1409
        ^ self value
e3976a1e863a in valueUninterruptably:
Claus Gittinger <cg@exept.de>
parents: 2286
diff changeset
  1410
    ].
864
9d034b442868 faster uninterruptablyDo:
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
  1411
2301
e3976a1e863a in valueUninterruptably:
Claus Gittinger <cg@exept.de>
parents: 2286
diff changeset
  1412
    ^ self valueNowOrOnUnwindDo:[OperatingSystem unblockInterrupts].
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1413
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1414
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1415
valueUnpreemptively
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1416
    "evaluate the receiver without the possiblity of preemption
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1417
     (i.e. at a very high priority)"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1418
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1419
    |oldPrio activeProcess|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1420
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1421
    activeProcess := Processor activeProcess.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1422
    oldPrio := activeProcess changePriority:(Processor highestPriority).
864
9d034b442868 faster uninterruptablyDo:
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
  1423
    ^ self valueNowOrOnUnwindDo:[
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1424
	activeProcess priority:oldPrio
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1425
    ]
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1426
! !
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1427
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1428
!Block methodsFor:'process creation'!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1429
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1430
fork
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1431
    "create a new process executing the receiver at the current priority."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1432
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1433
    ^ self newProcess resume
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1434
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1435
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1436
forkAt:priority
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1437
    "create a new process executing the receiver at a different priority."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1438
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1439
    ^ (self newProcess priority:priority) resume
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1440
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1441
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1442
forkWith:argArray
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1443
    "create a new process executing the receiver,
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1444
     passing elements in argArray as arguments to the receiver block."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1445
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1446
    ^ [self valueWithArguments:argArray] fork.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1447
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1448
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1449
newProcess
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1450
    "create a new (unscheduled) process executing the receiver"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1451
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1452
    ^ Process for:self priority:(Processor activePriority)
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1453
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1454
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1455
newProcessWithArguments:argArray
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1456
    "create a new (unscheduled) process executing the receiver,
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1457
     passing the elements in argArray as arguments to the receiver block."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1458
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1459
    ^ [self valueWithArguments:argArray] newProcess
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1460
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1461
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1462
promise
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1463
    "create a promise on the receiver. The promise will evaluate the
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1464
     receiver and promise to return the value with the #value message.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1465
     The evaluation will be performed as a separate process.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1466
     Asking the promise for its value will either block the asking process
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1467
     (if the evaluation has not yet been finished) or return the value
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1468
     immediately."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1469
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1470
    ^ Promise value:self
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1471
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1472
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1473
     |p|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1474
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1475
     p := [1000 factorial] promise.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1476
     'do something else ...'.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1477
     p value
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1478
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1479
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1480
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1481
promiseAt:prio
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1482
    "create a promise on the receiver. The promise will evaluate the
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1483
     receiver and promise to return the value with the #value message.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1484
     The evaluation will be performed as a separate process running at prio.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1485
     Asking the promise for its value will either block the asking process
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1486
     (if the evaluation has not yet been finished) or return the value
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1487
     immediately."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1488
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1489
    ^ Promise value:self priority:prio
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1490
! !
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1491
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1492
!Block methodsFor:'testing'!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1493
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1494
isBlock
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1495
    "return true, if this is a block - yes I am"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1496
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1497
    ^ true
2237
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  1498
!
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  1499
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  1500
isVarArgBlock
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  1501
    "return true, if this block accepts a variable number of arguments"
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  1502
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  1503
    ^ false
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  1504
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  1505
    "Created: 23.1.1997 / 04:59:51 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1506
! !
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1507
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1508
!Block methodsFor:'unwinding'!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1509
4419
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1510
ensure:aBlock
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1511
    "evaluate the receiver and return its result.
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1512
     After evaluation, also evaluate aBlock but ignore its result.
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1513
     aBlock is also evaluated in case of abnormal termination.
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1514
     (the same as #valueNowOrOnUnwindDo:)"
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1515
4479
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  1516
    ^ self valueNowOrOnUnwindDo:aBlock
4419
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1517
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1518
    "
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1519
     [
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1520
        [
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1521
            Transcript showCR:'one'.
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1522
            Processor activeProcess terminate.
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1523
            Transcript showCR:'two'.
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1524
        ] ensure:[
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1525
            Transcript showCR:'three'.
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1526
        ].
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1527
     ] fork.
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1528
    "
4479
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  1529
4419
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1530
    "
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1531
     [
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1532
        [
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1533
            Transcript showCR:'one'.
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1534
            Transcript showCR:'two'.
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1535
        ] ensure:[
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1536
            Transcript showCR:'three'.
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1537
        ].
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1538
     ] fork.
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1539
    "
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1540
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1541
!
3cd7688f4c1b category change
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  1542
4479
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  1543
unwindHandlerInContext:aContext
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  1544
    "given a context which has been marked for unwind,
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  1545
     retrieve the handler block.
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  1546
     This avoids hardwiring access to the first argument in
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  1547
     #unwind methods (and theoretically allows for other unwinding
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  1548
     methods to be added)"
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  1549
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  1550
    "/ for now, only #valueNowOrOnUnwindDo:
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  1551
    "/          or #valueOnUnwindDo:
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  1552
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  1553
    ^ aContext argAt:1
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  1554
!
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  1555
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1556
valueNowOrOnUnwindDo:aBlock
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1557
    "evaluate the receiver - after that, or when some method sent within unwinds (i.e. does
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1558
     a long return), evaluate the argument, aBlock.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1559
     This is used to make certain that cleanup actions (for example closing files etc.) are
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1560
     executed regardless of error actions"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1561
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1562
    <exception: #unwind>
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1563
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1564
    |v|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1565
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1566
    "/ thisContext markForUnwind. -- same as above pragma
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1567
    v := self value.       "the real logic is in Context>>unwind"
1187
619ff79bc665 valueNowOrOnUnwindDo: don't execute unwind block when block is currently executed 'now'.
Stefan Vogel <sv@exept.de>
parents: 1181
diff changeset
  1568
    thisContext unmarkForUnwind.
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1569
    aBlock value.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1570
    ^ v
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1571
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1572
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1573
     in the following example, f will be closed even if the block
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1574
     returns with 'oops'. There are many more applications of this kind
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1575
     found in the system.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1576
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1577
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1578
     |f|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1579
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1580
     f := 'Makefile' asFilename readStream.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1581
     [
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1582
        l := f nextLine.
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1583
        l isNil ifTrue:[^ 'oops']
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1584
     ] valueNowOrOnUnwindDo:[
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1585
        f close
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1586
     ]
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1587
    "
1187
619ff79bc665 valueNowOrOnUnwindDo: don't execute unwind block when block is currently executed 'now'.
Stefan Vogel <sv@exept.de>
parents: 1181
diff changeset
  1588
619ff79bc665 valueNowOrOnUnwindDo: don't execute unwind block when block is currently executed 'now'.
Stefan Vogel <sv@exept.de>
parents: 1181
diff changeset
  1589
    "Modified: 16.4.1996 / 11:05:26 / stefan"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1590
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1591
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1592
valueOnUnwindDo:aBlock
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1593
    "evaluate the receiver - when some method sent within unwinds (i.e. does
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1594
     a long return), evaluate the argument, aBlock.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1595
     This is used to make certain that cleanup actions (for example closing files etc.) are
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1596
     executed regardless of error actions"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1597
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1598
    <exception: #unwind>
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1599
2286
e04f03c7cb75 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2241
diff changeset
  1600
    |v|
e04f03c7cb75 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2241
diff changeset
  1601
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1602
    "/ thisContext markForUnwind. -- same as above pragma
2286
e04f03c7cb75 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2241
diff changeset
  1603
    v := self value.       "the real logic is in Context>>unwind"
e04f03c7cb75 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2241
diff changeset
  1604
    thisContext unmarkForUnwind.
e04f03c7cb75 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2241
diff changeset
  1605
    ^ v
e04f03c7cb75 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2241
diff changeset
  1606
e04f03c7cb75 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2241
diff changeset
  1607
    "Modified: 27.1.1997 / 23:47:40 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1608
! !
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1609
1773
442d1b73ecb9 no longer allow Blocks with a dynamic-bit to be created
Claus Gittinger <cg@exept.de>
parents: 1672
diff changeset
  1610
!Block class methodsFor:'documentation'!
1181
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
  1611
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
  1612
version
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1613
    ^ '$Header: /cvs/stx/stx/libbasic/Block.st,v 1.89 1999-08-02 13:41:43 cg Exp $'
1181
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
  1614
! !
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1615
Block initialize!