Block.st
author Claus Gittinger <cg@exept.de>
Mon, 21 Aug 2006 12:13:41 +0200
changeset 9602 23539401ab1b
parent 9486 bb9421932382
child 9646 63e87cdba285
permissions -rw-r--r--
leftover halt.
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
5349
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
    13
"{ Package: 'stx:libbasic' }"
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
    14
4299
2028db93d182 comment
Claus Gittinger <cg@exept.de>
parents: 3688
diff changeset
    15
CompiledCode variableSubclass:#Block
1181
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
    16
	instanceVariableNames:'home nargs sourcePos initialPC'
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
    17
	classVariableNames:'InvalidNewSignal'
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
    18
	poolDictionaries:''
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
    19
	category:'Kernel-Methods'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    20
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    21
1773
442d1b73ecb9 no longer allow Blocks with a dynamic-bit to be created
Claus Gittinger <cg@exept.de>
parents: 1672
diff changeset
    22
!Block class methodsFor:'documentation'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    23
92
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    24
copyright
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    25
"
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    26
 COPYRIGHT (c) 1989 by Claus Gittinger
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
    27
	      All Rights Reserved
92
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    28
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    29
 This software is furnished under a license and may be used
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    30
 only in accordance with the terms of that license and with the
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    32
 be provided or otherwise made available to, or used by, any
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    33
 other person.  No title to or ownership of the software is
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    34
 hereby transferred.
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    35
"
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    36
!
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    37
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    38
documentation
a27a279701f8 Initial revision
claus
parents:
diff changeset
    39
"
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    40
    Blocks are pieces of executable code which can be evaluated by sending
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    41
    them a value-message (''value'', ''value:'', ''value:value:'' etc).
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    42
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
    43
    In smalltalk, Blocks provide the basic (and heavily used) mechanism
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
    44
    for looping, enumerating collection elements, visitors, exception
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
    45
    handling, unwinding, delayed execution and processes.
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
    46
1254
48c2748b5197 commentary
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
    47
    Blocks are never created explicitely; the only creation
48c2748b5197 commentary
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
    48
    is done by the compilers, when some sourceCode is compiled to either
48c2748b5197 commentary
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
    49
    machine or byteCode.
48c2748b5197 commentary
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
    50
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    51
    Blocks with arguments need a message of type ''value:arg1 ... value:argn''
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    52
    for evaluation; the number of arguments passed when evaluating must match
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    53
    the number of arguments the block was declared with otherwise an error is
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    54
    raised. Blocks without args need a ''value'' message for evaluation.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    55
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
    56
    Blocks keep a reference to the context where the block was declared -
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    57
    this allows blocks to access the methods arguments and/or variables.
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
    58
    This is still true after the method has returned - since the
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    59
    block keeps this reference, the methods context will NOT die in this case.
222
85fee82884dd commenting
claus
parents: 216
diff changeset
    60
    (i.e. Blocks are closures in Smalltalk/X)
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    61
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    62
    A return (via ^-statement) out of a block will force a return from the
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    63
    blocks method context (if it is still living) - this make the implementation
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    64
    of long-jumps and control structures possible.
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
    65
    (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
    66
     block will trigger an error)
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    67
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    68
    Long-jump is done by defining a catchBlock as ''[^ self]''
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    69
    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
    70
    deeply nested method, simply do: ''catchBlock value''.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    71
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
    72
    [Instance variables:]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    73
222
85fee82884dd commenting
claus
parents: 216
diff changeset
    74
      home        <Context>         the context where this block was created (i.e. defined)
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    75
				    this may be a blockContext or a methodContext
222
85fee82884dd commenting
claus
parents: 216
diff changeset
    76
      nargs       <SmallInteger>    the number of arguments the block expects
85fee82884dd commenting
claus
parents: 216
diff changeset
    77
      sourcePos   <SmallInteger>    the character position of its source, in chars
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    78
				    relative to methods source beginning
222
85fee82884dd commenting
claus
parents: 216
diff changeset
    79
      initialPC   <SmallInteger>    the start position within the byteCode
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    80
				    for compiled blocks, this is nil.
222
85fee82884dd commenting
claus
parents: 216
diff changeset
    81
85fee82884dd commenting
claus
parents: 216
diff changeset
    82
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
    83
    [Class variables:]
222
85fee82884dd commenting
claus
parents: 216
diff changeset
    84
85fee82884dd commenting
claus
parents: 216
diff changeset
    85
      InvalidNewSignal              raised if a Block is tried to be created
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    86
				    with new (which is not allowed).
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    87
				    Only the VM is allowed to create Blocks.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    88
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
    89
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    90
    NOTICE: layout known by runtime system and compiler - do not change
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
    91
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
    92
    [author:]
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    93
	Claus Gittinger
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
    94
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
    95
    [see also:]
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    96
	Process Context
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    97
	Collection
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    98
	( contexts. blocks & unwinding : programming/contexts.html)
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    99
"
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   100
!
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   101
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   102
examples
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   103
"
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   104
    define a block and evaluate it:
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   105
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   106
	|b|
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   107
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   108
	b := [ Transcript showCR:'hello' ].
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   109
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   110
	Transcript showCR:'now evaluating the block ...'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   111
	b value.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   112
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   113
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   114
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   115
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   116
    even here, blocks are involved: 
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   117
    (although, the compiler optimizes things if possible)
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   118
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   119
	Transcript showCR:'now evaluating one of two blocks ...'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   120
	1 > 4 ifTrue:[
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   121
	    Transcript showCR:'foo'
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   122
	] ifFalse:[
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   123
	    Transcript showCR:'bar'
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   124
	]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   125
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   126
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   127
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   128
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   129
    here things become obvious:
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   130
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   131
	|yesBlock noBlock|
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   132
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   133
	yesBlock := [ Transcript showCR:'foo' ].
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   134
	noBlock := [ Transcript showCR:'bar' ].
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   135
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   136
	Transcript showCR:'now evaluating one of two blocks ...'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   137
	1 > 4 ifTrue:yesBlock
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   138
	      ifFalse:noBlock
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   139
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   140
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   141
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   142
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   143
    simple loops:
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   144
      not very objectOriented:
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   145
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   146
	|i|
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   147
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   148
	i := 1.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   149
	[i < 10] whileTrue:[
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   150
	    Transcript showCR:i.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   151
	    i := i + 1
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   152
	]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   153
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   154
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   155
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   156
      using integer protocol:
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   157
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   158
	1 to:10 do:[:i |
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   159
	    Transcript showCR:i.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   160
	]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   161
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   162
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   163
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   164
      interval protocol:
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   165
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   166
	(1 to:10) do:[:i |
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   167
	    Transcript showCR:i.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   168
	]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   169
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   170
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   171
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   172
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   173
    looping over collections:
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   174
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   175
      bad code:
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   176
      (only works with numeric-indexable collections)
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   177
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   178
	|i coll|
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   179
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   180
	coll := #(9 8 7 6 5).
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   181
	i := 1.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   182
	[i <= coll size] whileTrue:[
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   183
	    Transcript showCR:(coll at:i).
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   184
	    i := i + 1.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   185
	]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   186
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   187
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   188
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   189
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   190
      just as bad (well, marginally better ;-):
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   191
      (only works with numeric-indexable collections)
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   192
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   193
	|coll|   
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   194
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   195
	coll := #(9 8 7 6 5).
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   196
	1 to:coll size do:[:i |
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   197
	    Transcript showCR:(coll at:i).
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   198
	]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   199
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   200
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   201
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   202
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   203
      the smalltalk way:
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   204
      (works with any collection)
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   205
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   206
	|coll|   
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   207
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   208
	coll := #(9 8 7 6 5).
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   209
	coll do:[:element |
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   210
	    Transcript showCR:element.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   211
	]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   212
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   213
        
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   214
    Rule: use enumeration protocol of the collection instead of
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   215
	  manually indexing it. [with few exceptions]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   216
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   217
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   218
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   219
    processes:
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   220
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   221
      forking a lightweight process (thread):
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   222
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   223
	[
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   224
	    Transcript showCR:'waiting ...'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   225
	    Delay waitForSeconds:2.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   226
	    Transcript showCR:'here I am'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   227
	] fork
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   228
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   229
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   230
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   231
        
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   232
      some with low prio:
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   233
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   234
	[
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   235
	    Transcript showCR:'computing ...'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   236
	    10000 factorial.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   237
	    Transcript showCR:'here I am'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   238
	] forkAt:(Processor userBackgroundPriority)
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   239
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   240
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   241
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   242
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   243
    handling exceptions:
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   244
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   245
	Object errorSignal handle:[:ex |
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   246
	    Transcript showCR:'exception handler forces return'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   247
	    ex return
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   248
	] do:[
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   249
	    Transcript showCR:'now, doing something bad ...'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   250
	    1 / 0.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   251
	    Transcript showCR:'not reached'
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   252
	]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   253
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   254
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   255
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   256
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   257
    performing cleanup actions:
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   258
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   259
	Object errorSignal handle:[:ex |
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   260
	    Transcript showCR:'exception handler forces return'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   261
	    ex return
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   262
	] do:[
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   263
	    [
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   264
		Transcript showCR:'doing something bad ...'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   265
		1 / 0.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   266
		Transcript showCR:'not reached'
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   267
	    ] valueOnUnwindDo:[
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   268
		Transcript showCR:'cleanup'
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   269
	    ]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   270
	]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   271
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   272
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   273
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   274
    delayed execution (visitor pattern):
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   275
    (looking carefully into the example, 
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   276
     C/C++ programmers may raise their eyes ;-)
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   277
									[exBegin]
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   278
	|showBlock countBlock 
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   279
	 howMany 
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   280
	 top panel b1 b2|
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
	howMany := 0.
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   283
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   284
	showBlock := [ Transcript showCR:howMany ].
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   285
	countBlock := [ howMany := howMany + 1 ].
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   286
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   287
	top := StandardSystemView extent:200@200.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   288
	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
   289
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   290
	b1 := Button label:'count up' in:panel.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   291
	b1 action:countBlock.
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   292
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   293
	b2 := Button label:'show value' in:panel.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   294
	b2 action:showBlock.
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
	top open.
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   297
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   298
	Transcript showCR:'new process started;'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   299
	Transcript showCR:'notice: the blocks can still access the'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   300
	Transcript showCR:'        howMany local variable.'.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
   301
									[exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   302
"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   303
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   304
1773
442d1b73ecb9 no longer allow Blocks with a dynamic-bit to be created
Claus Gittinger <cg@exept.de>
parents: 1672
diff changeset
   305
!Block class methodsFor:'initialization'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   306
a27a279701f8 Initial revision
claus
parents:
diff changeset
   307
initialize
1254
48c2748b5197 commentary
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
   308
    "create signals raised by various errors"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   309
48
9f68393bea3c *** empty log message ***
claus
parents: 46
diff changeset
   310
    InvalidNewSignal isNil ifTrue:[
7092
630807cd320f Convert Object>>errorSignal -> Error
Stefan Vogel <sv@exept.de>
parents: 6981
diff changeset
   311
        InvalidNewSignal := Error newSignalMayProceed:false.
630807cd320f Convert Object>>errorSignal -> Error
Stefan Vogel <sv@exept.de>
parents: 6981
diff changeset
   312
        InvalidNewSignal nameClass:self message:#invalidNewSignal.
630807cd320f Convert Object>>errorSignal -> Error
Stefan Vogel <sv@exept.de>
parents: 6981
diff changeset
   313
        InvalidNewSignal notifierString:'blocks are only created by the system'.
48
9f68393bea3c *** empty log message ***
claus
parents: 46
diff changeset
   314
    ]
1254
48c2748b5197 commentary
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
   315
48c2748b5197 commentary
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
   316
    "Modified: 22.4.1996 / 16:34:20 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   317
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   318
1773
442d1b73ecb9 no longer allow Blocks with a dynamic-bit to be created
Claus Gittinger <cg@exept.de>
parents: 1672
diff changeset
   319
!Block class methodsFor:'instance creation'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   320
2542
555749f035f4 need stackSize when creating blocks.
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
   321
byteCode:bCode numArgs:numArgs numStack:nStack sourcePosition:sourcePos initialPC:initialPC literals:literals
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   322
    "create a new cheap (homeless) block.
222
85fee82884dd commenting
claus
parents: 216
diff changeset
   323
     Not for public use - this is a special hook for the compiler."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   324
5766
64d22218e98b must ensure that nArgs and nVar flag setting is correct
Claus Gittinger <cg@exept.de>
parents: 5744
diff changeset
   325
    ^ self
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   326
	byteCode:bCode numArgs:numArgs numVars:0 numStack:nStack sourcePosition:sourcePos initialPC:initialPC literals:literals
5766
64d22218e98b must ensure that nArgs and nVar flag setting is correct
Claus Gittinger <cg@exept.de>
parents: 5744
diff changeset
   327
!
64d22218e98b must ensure that nArgs and nVar flag setting is correct
Claus Gittinger <cg@exept.de>
parents: 5744
diff changeset
   328
64d22218e98b must ensure that nArgs and nVar flag setting is correct
Claus Gittinger <cg@exept.de>
parents: 5744
diff changeset
   329
byteCode:bCode numArgs:numArgs numVars:numVars numStack:nStack sourcePosition:sourcePos initialPC:initialPC literals:literals
64d22218e98b must ensure that nArgs and nVar flag setting is correct
Claus Gittinger <cg@exept.de>
parents: 5744
diff changeset
   330
    "create a new cheap (homeless) block.
64d22218e98b must ensure that nArgs and nVar flag setting is correct
Claus Gittinger <cg@exept.de>
parents: 5744
diff changeset
   331
     Not for public use - this is a special hook for the compiler."
64d22218e98b must ensure that nArgs and nVar flag setting is correct
Claus Gittinger <cg@exept.de>
parents: 5744
diff changeset
   332
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   333
    |newBlock|
a27a279701f8 Initial revision
claus
parents:
diff changeset
   334
1493
33e226c7d187 Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   335
    newBlock := (super basicNew:(literals size)) 
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   336
			   byteCode:bCode
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   337
			   numArgs:numArgs
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   338
			   numVars:numVars
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   339
			   numStack:nStack
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   340
		     sourcePosition:sourcePos
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   341
			  initialPC:initialPC
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   342
			   literals:literals.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   343
    ^ newBlock
1493
33e226c7d187 Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   344
33e226c7d187 Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   345
    "Modified: 24.6.1996 / 12:36:48 / stefan"
2542
555749f035f4 need stackSize when creating blocks.
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
   346
    "Created: 13.4.1997 / 00:04:09 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   347
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   348
22
847106305963 *** empty log message ***
claus
parents: 11
diff changeset
   349
new
4299
2028db93d182 comment
Claus Gittinger <cg@exept.de>
parents: 3688
diff changeset
   350
    "catch creation of blocks - only the system creates blocks.
2028db93d182 comment
Claus Gittinger <cg@exept.de>
parents: 3688
diff changeset
   351
     If you really need a block (assuming, you are some compiler),
2028db93d182 comment
Claus Gittinger <cg@exept.de>
parents: 3688
diff changeset
   352
     use basicNew and setup the instance carefully"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   353
128
c50a2157883e return value of signal raise
claus
parents: 103
diff changeset
   354
    ^ InvalidNewSignal raise.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   355
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   356
22
847106305963 *** empty log message ***
claus
parents: 11
diff changeset
   357
new:size
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   358
    "catch creation of blocks - only the system creates blocks"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   359
128
c50a2157883e return value of signal raise
claus
parents: 103
diff changeset
   360
    ^ InvalidNewSignal raise.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   361
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   362
1773
442d1b73ecb9 no longer allow Blocks with a dynamic-bit to be created
Claus Gittinger <cg@exept.de>
parents: 1672
diff changeset
   363
!Block class methodsFor:'queries'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   364
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   365
isBuiltInClass
1264
8d916aa63bce commentary
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
   366
    "return true if this class is known by the run-time-system.
8d916aa63bce commentary
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
   367
     Here, true is returned for myself, false for subclasses."
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   368
1181
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   369
    ^ self == Block
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   370
1264
8d916aa63bce commentary
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
   371
    "Modified: 23.4.1996 / 15:55:58 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   372
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   373
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7257
diff changeset
   374
!Block methodsFor:'Compatibility-ANSI'!
5349
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   375
5944
abd51a8a6ca1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5931
diff changeset
   376
argumentCount
7352
c742fca7864d comment in numArgs
Claus Gittinger <cg@exept.de>
parents: 7323
diff changeset
   377
    "VisualAge/ANSI compatibility: alias for #numArgs.
5944
abd51a8a6ca1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5931
diff changeset
   378
     return the number of arguments I expect for evaluation"
abd51a8a6ca1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5931
diff changeset
   379
abd51a8a6ca1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5931
diff changeset
   380
    ^ nargs
abd51a8a6ca1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5931
diff changeset
   381
abd51a8a6ca1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5931
diff changeset
   382
    "Created: 15.11.1996 / 11:22:02 / cg"
abd51a8a6ca1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5931
diff changeset
   383
!
abd51a8a6ca1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5931
diff changeset
   384
5349
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   385
ensure:aBlock
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   386
    "evaluate the receiver and return its result.
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   387
     After evaluation, also evaluate aBlock but ignore its result.
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   388
     aBlock is also evaluated in case of abnormal termination.
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   389
     (the same as #valueNowOrOnUnwindDo:)"
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   390
5666
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   391
    <exception: #unwind>
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   392
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   393
    |v|
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   394
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   395
    v := self value.       "the real logic is in Context>>unwind"
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   396
    thisContext unmarkForUnwind.
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   397
    aBlock value.
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   398
    ^ v
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   399
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   400
    "/ the above is the same as in #valueNowOrOnUnwindDo:
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   401
    "/ (actually, the previous implementation was:
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   402
    "/ ^ self valueNowOrOnUnwindDo:aBlock
5349
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   403
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   404
    "
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   405
     [
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   406
	[
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   407
	    Transcript showCR:'one'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   408
	    Processor activeProcess terminate.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   409
	    Transcript showCR:'two'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   410
	] ensure:[
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   411
	    Transcript showCR:'three'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   412
	].
5349
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   413
     ] fork.
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   414
    "
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   415
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   416
    "
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   417
     [
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   418
	[
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   419
	    Transcript showCR:'one'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   420
	    Transcript showCR:'two'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   421
	] ensure:[
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   422
	    Transcript showCR:'three'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   423
	].
5349
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   424
     ] fork.
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   425
    "
5951
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   426
!
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   427
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   428
ifCurtailed:aBlock
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   429
    "evaluate the receiver - when some method sent within unwinds (i.e. does
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   430
     a long return), evaluate the argument, aBlock.
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   431
     This is used to make certain that cleanup actions (for example closing files etc.) are
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   432
     executed regardless of error actions.
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   433
     This is the same as #valueOnUnwindDo:"
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   434
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   435
    <exception: #unwind>
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   436
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   437
    |v|
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   438
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   439
    "/ thisContext markForUnwind. -- same as above pragma
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   440
    v := self value.       "the real logic is in Context>>unwind"
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   441
    thisContext unmarkForUnwind.
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   442
    ^ v
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   443
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   444
    "
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   445
     |s|
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   446
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   447
     s := 'Makefile' asFilename readStream.
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   448
     [
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   449
	^ self
5951
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   450
     ] ifCurtailed:[
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   451
	Transcript showCR:'closing the stream - even though a return occurred'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   452
	s close
5951
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   453
     ]
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   454
    "
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   455
    "
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   456
     [
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   457
	 |s|
5951
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   458
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   459
	 s := 'Makefile' asFilename readStream.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   460
	 [
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   461
	    Processor activeProcess terminate
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   462
	 ] ifCurtailed:[
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   463
	    Transcript showCR:'closing the stream - even though process was terminated'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   464
	    s close
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   465
	 ]
5951
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   466
     ] fork
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   467
    "
5349
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   468
! !
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   469
8440
66d126056d3d Dolphin compatibility: #deferredValue
Stefan Vogel <sv@exept.de>
parents: 8394
diff changeset
   470
!Block methodsFor:'Compatibility-Dolphin'!
66d126056d3d Dolphin compatibility: #deferredValue
Stefan Vogel <sv@exept.de>
parents: 8394
diff changeset
   471
66d126056d3d Dolphin compatibility: #deferredValue
Stefan Vogel <sv@exept.de>
parents: 8394
diff changeset
   472
deferredValue
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
   473
    "doplphin's alias for futureValue"
8440
66d126056d3d Dolphin compatibility: #deferredValue
Stefan Vogel <sv@exept.de>
parents: 8394
diff changeset
   474
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
   475
    ^ self futureValue
8440
66d126056d3d Dolphin compatibility: #deferredValue
Stefan Vogel <sv@exept.de>
parents: 8394
diff changeset
   476
! !
66d126056d3d Dolphin compatibility: #deferredValue
Stefan Vogel <sv@exept.de>
parents: 8394
diff changeset
   477
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7257
diff changeset
   478
!Block methodsFor:'Compatibility-Squeak'!
5015
114243c7fd82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4896
diff changeset
   479
114243c7fd82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4896
diff changeset
   480
ifError:handlerBlock
6159
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   481
    "same as onError: - for squeak compatibility.
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   482
     Notice, that the handlerBlock may take 0,1 or 2 args.
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   483
     (1 arg  -> the exception;
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   484
      2 args -> the errorString and the erronous receiver)"
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   485
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   486
    handlerBlock numArgs == 1 ifTrue:[
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   487
	^ self on:Error do:handlerBlock
6159
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   488
    ].
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   489
6142
702cc4a95a86 ifError: compatibility
james
parents: 5951
diff changeset
   490
    ^ self 
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   491
	on:Error 
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   492
	do:[:ex | 
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   493
	    |errString errReceiver|
6142
702cc4a95a86 ifError: compatibility
james
parents: 5951
diff changeset
   494
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   495
	    handlerBlock numArgs == 0 ifTrue:[
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   496
		ex return:handlerBlock value
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   497
	    ].
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   498
	    errString := ex description.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   499
	    errReceiver := ex suspendedContext receiver.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   500
	    ex return:(handlerBlock value:errString value:errReceiver)
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   501
	]
6142
702cc4a95a86 ifError: compatibility
james
parents: 5951
diff changeset
   502
702cc4a95a86 ifError: compatibility
james
parents: 5951
diff changeset
   503
    "
702cc4a95a86 ifError: compatibility
james
parents: 5951
diff changeset
   504
     |a|
702cc4a95a86 ifError: compatibility
james
parents: 5951
diff changeset
   505
702cc4a95a86 ifError: compatibility
james
parents: 5951
diff changeset
   506
     a := 0.
702cc4a95a86 ifError: compatibility
james
parents: 5951
diff changeset
   507
     [ 123 / a ] ifError:[:msg :rec | self halt]
702cc4a95a86 ifError: compatibility
james
parents: 5951
diff changeset
   508
    "
6159
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   509
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   510
    "
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   511
     |a|
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   512
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   513
     a := 0.
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   514
     [ 123 / a ] ifError:[:ex | self halt]
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   515
    "
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   516
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   517
    "
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   518
     |a|
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   519
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   520
     a := 0.
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   521
     [ 123 / a ] ifError:[self halt]
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   522
    "
9145
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
   523
!
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
   524
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
   525
valueWithPossibleArgs:argArray
9602
23539401ab1b leftover halt.
Claus Gittinger <cg@exept.de>
parents: 9486
diff changeset
   526
     ^ self valueWithOptionalArguments:argArray
5015
114243c7fd82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4896
diff changeset
   527
! !
114243c7fd82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4896
diff changeset
   528
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7257
diff changeset
   529
!Block methodsFor:'Compatibility-V''Age'!
1979
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   530
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   531
valueOnReturnDo:aBlock
6257
f77941a61a12 Fix comments. Use #ensure: instead of #valueNowOrOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6236
diff changeset
   532
    "VisualAge compatibility: alias for #ifCurtailed:
1979
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   533
     evaluate the receiver - when some method sent within unwinds 
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   534
     (i.e. does a long return), evaluate the argument, aBlock.
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   535
     This is used to make certain that cleanup actions 
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   536
     (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
   537
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   538
     Q: is this the exact semantics of V'Ages method ?
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   539
	the documentation is unclean; it could be a valueNowOrOnUnwindDo: ..."
1979
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   540
6257
f77941a61a12 Fix comments. Use #ensure: instead of #valueNowOrOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6236
diff changeset
   541
    ^ self ifCurtailed:aBlock
1979
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   542
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   543
    "Created: 15.11.1996 / 11:38:37 / cg"
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   544
! !
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   545
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   546
!Block methodsFor:'accessing'!
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   547
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   548
home
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   549
    "return the receivers home context (the context where it was
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   550
     created). For cheap blocks, nil is returned"
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   551
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   552
    ^ home
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   553
!
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   554
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   555
homeMethod
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   556
    "return the receivers home method.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   557
     Thats the method where the block was created."
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   558
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   559
    home notNil ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   560
	^ home method
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   561
    ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   562
    ^ nil
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   563
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   564
    "Created: 19.6.1997 / 16:14:57 / cg"
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   565
!
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   566
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   567
method
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   568
    "return the receivers method 
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   569
     (the method where the block was created).
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   570
     Obsolete: use #homeMethod for ST80 compatibility."
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   571
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   572
    <resource: #obsolete>
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   573
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   574
    ^ self homeMethod
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   575
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   576
    "Modified: 19.6.1997 / 16:15:24 / cg"
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   577
!
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   578
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   579
methodHome
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   580
    "return the receivers method home context (the context where it was
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   581
     defined). For cheap blocks, nil is returned"
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   582
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   583
    home notNil ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   584
        ^ home methodHome
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   585
    ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   586
    ^ nil
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   587
!
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   588
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   589
numArgs
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   590
    "return the number of arguments I expect for evaluation.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   591
     Please use argumentCount, which is ANSI"
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   592
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   593
"/    <resource: #obsolete>
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   594
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   595
    ^ nargs
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   596
! !
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   597
5931
9e40d7255c26 check for nil signal in #handle:do:
Claus Gittinger <cg@exept.de>
parents: 5779
diff changeset
   598
!Block methodsFor:'binary storage'!
9e40d7255c26 check for nil signal in #handle:do:
Claus Gittinger <cg@exept.de>
parents: 5779
diff changeset
   599
9e40d7255c26 check for nil signal in #handle:do:
Claus Gittinger <cg@exept.de>
parents: 5779
diff changeset
   600
storeBinaryDefinitionOn:stream manager:manager
9e40d7255c26 check for nil signal in #handle:do:
Claus Gittinger <cg@exept.de>
parents: 5779
diff changeset
   601
    byteCode isNil ifTrue:[
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   602
	self error:'cannot preserve semantics of block'.
5931
9e40d7255c26 check for nil signal in #handle:do:
Claus Gittinger <cg@exept.de>
parents: 5779
diff changeset
   603
    ].
9e40d7255c26 check for nil signal in #handle:do:
Claus Gittinger <cg@exept.de>
parents: 5779
diff changeset
   604
    ^ super storeBinaryDefinitionOn:stream manager:manager
9e40d7255c26 check for nil signal in #handle:do:
Claus Gittinger <cg@exept.de>
parents: 5779
diff changeset
   605
! !
9e40d7255c26 check for nil signal in #handle:do:
Claus Gittinger <cg@exept.de>
parents: 5779
diff changeset
   606
2237
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   607
!Block methodsFor:'conversion'!
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   608
5349
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   609
asVarArgBlock
2237
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   610
    "convert myself into a varArg block;
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   611
     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
   612
     of actual arguments when evaluated."
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   613
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   614
    nargs ~~ 1 ifTrue:[
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   615
	self error:'vararg blocks must take exactly 1 argument - the arg list'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   616
	^ nil
2237
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   617
    ].
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   618
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   619
    self changeClassTo:VarArgBlock.
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   620
    ^ self
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   621
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   622
    "
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   623
     |b|
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   624
5349
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   625
     b := [:argList | Transcript 
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   626
			show:'invoked with args:'; 
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   627
			showCR:argList
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   628
	  ] asVarArgBlock.
5349
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   629
     b value.
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   630
     b value:'arg1'.
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   631
     b value:'arg1' value:'arg2' value:'arg3' value:'arg4'
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   632
    "
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   633
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   634
    "Created: 23.1.1997 / 13:35:28 / cg"
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   635
    "Modified: 23.1.1997 / 13:35:48 / cg"
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   636
!
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   637
7151
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
   638
beCurryingBlock
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
   639
    "make myself a currying block;
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
   640
     thats a block which, if invoked with less-than-expected arguments,
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
   641
     returns another block which provides the provided argument(s) and expects the remaining args.
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
   642
     Read any book on functional programming, if you dont understand this."
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
   643
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
   644
    self changeClassTo:CurryingBlock.
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
   645
    ^ self
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
   646
!
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
   647
5349
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   648
beVarArg
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   649
    "convert myself into a varArg block;
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   650
     this one has 1 formal argument, which gets the list
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   651
     of actual arguments when evaluated."
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   652
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   653
    ^ self asVarArgBlock.
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   654
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   655
    "
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   656
     |b|
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   657
2241
1c1e721b76ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2238
diff changeset
   658
     b := [:argList | argList printCR] beVarArg.
2237
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   659
     b value.
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   660
     b value:'arg1' value:'arg2' value:'arg3' value:'arg4'
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   661
    "
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   662
2241
1c1e721b76ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2238
diff changeset
   663
    "Created: 23.1.1997 / 13:35:28 / cg"
1c1e721b76ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2238
diff changeset
   664
    "Modified: 23.1.1997 / 13:35:48 / cg"
2237
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   665
! !
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   666
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   667
!Block methodsFor:'copying'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   668
3349
84a92126a268 must catch #deppCopyUsing: instead of #deepCopy.
Claus Gittinger <cg@exept.de>
parents: 2841
diff changeset
   669
deepCopyUsing:aDictionary
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   670
    "raise an error - deepCopy is not allowed for blocks"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   671
8638
9f82a358172b copy for cheap blocks allowed
penk
parents: 8602
diff changeset
   672
    home isNil ifTrue:[
9f82a358172b copy for cheap blocks allowed
penk
parents: 8602
diff changeset
   673
        ^ super deepCopyUsing:aDictionary
9f82a358172b copy for cheap blocks allowed
penk
parents: 8602
diff changeset
   674
    ].
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   675
    ^ self deepCopyError
3349
84a92126a268 must catch #deppCopyUsing: instead of #deepCopy.
Claus Gittinger <cg@exept.de>
parents: 2841
diff changeset
   676
84a92126a268 must catch #deppCopyUsing: instead of #deepCopy.
Claus Gittinger <cg@exept.de>
parents: 2841
diff changeset
   677
    "Created: / 31.3.1998 / 15:46:17 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   678
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   679
a27a279701f8 Initial revision
claus
parents:
diff changeset
   680
!Block methodsFor:'error handling'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   681
328
claus
parents: 326
diff changeset
   682
invalidCodeObject
1874
d0ebe01562e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   683
    "{ Pragma: +optSpace }"
d0ebe01562e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   684
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
   685
    "this error is triggered by the interpreter when a non-Block object
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
   686
     is about to be executed.
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
   687
     In this case, the VM sends this to the bad method (the receiver).
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
   688
     Can only happen when the Compiler/runtime system is broken or
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
   689
     someone played around."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   690
7602
d048f13cd50a Exception classes initialize themself.
Stefan Vogel <sv@exept.de>
parents: 7352
diff changeset
   691
    ^ InvalidCodeError
d048f13cd50a Exception classes initialize themself.
Stefan Vogel <sv@exept.de>
parents: 7352
diff changeset
   692
        raiseRequestWith:self
d048f13cd50a Exception classes initialize themself.
Stefan Vogel <sv@exept.de>
parents: 7352
diff changeset
   693
        errorString:'invalid block - not executable'
1874
d0ebe01562e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   694
d0ebe01562e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   695
    "Modified: 4.11.1996 / 22:46:39 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   696
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   697
a27a279701f8 Initial revision
claus
parents:
diff changeset
   698
!Block methodsFor:'evaluation'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   699
a27a279701f8 Initial revision
claus
parents:
diff changeset
   700
value
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   701
    "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
   702
     The receiver must be a block without arguments."
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
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
   709
    if (__INST(nargs) == __mkSmallInteger(0)) {
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   710
#if defined(THIS_CONTEXT)
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   711
        if (__ISVALID_ILC_LNO(__pilc))
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   712
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   713
#endif
328
claus
parents: 326
diff changeset
   714
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   715
        thecode = __BlockInstPtr(self)->b_code;
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   716
#ifdef NEW_BLOCK_CALL
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   717
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   718
            /* compiled machine code */
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   719
            RETURN ( (*thecode)(self) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   720
        }
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   721
        /* interpreted code */
328
claus
parents: 326
diff changeset
   722
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   723
        RETURN ( __interpret(self, 0, nil, nil, nil, nil) );
328
claus
parents: 326
diff changeset
   724
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   725
        RETURN ( __interpret(self, 0, nil, nil, nil, nil) );
328
claus
parents: 326
diff changeset
   726
# endif
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   727
#else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   728
        home = __BlockInstPtr(self)->b_home;
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   729
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   730
            /* compiled machine code */
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   731
            RETURN ( (*thecode)(home) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   732
        }
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   733
        /* interpreted code */
328
claus
parents: 326
diff changeset
   734
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   735
        RETURN ( __interpret(self, 0, nil, home, nil, nil) );
328
claus
parents: 326
diff changeset
   736
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   737
        RETURN ( __interpret(self, 0, nil, home, nil, nil) );
328
claus
parents: 326
diff changeset
   738
# endif
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   739
#endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   740
    }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   741
%}.
103
de0f8152878f errors now raise a signal
claus
parents: 98
diff changeset
   742
    ^ self wrongNumberOfArguments:0
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   743
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   744
a27a279701f8 Initial revision
claus
parents:
diff changeset
   745
value:arg
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   746
    "evaluate the receiver with one argument. 
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   747
     The receiver must be a 1-arg block."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   748
a27a279701f8 Initial revision
claus
parents:
diff changeset
   749
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
   750
a27a279701f8 Initial revision
claus
parents:
diff changeset
   751
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   752
    OBJ home;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   753
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
   754
    if (__INST(nargs) == __mkSmallInteger(1)) {
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   755
#if defined(THIS_CONTEXT)
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   756
        if (__ISVALID_ILC_LNO(__pilc))
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   757
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   758
#endif
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   759
        thecode = __BlockInstPtr(self)->b_code;
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   760
#ifdef NEW_BLOCK_CALL
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   761
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   762
            RETURN ( (*thecode)(self, arg) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   763
        }
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   764
        /* interpreted code */
328
claus
parents: 326
diff changeset
   765
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   766
        RETURN ( __interpret(self, 1, nil, nil, nil, nil, &arg) );
328
claus
parents: 326
diff changeset
   767
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   768
        RETURN ( __interpret(self, 1, nil, nil, nil, nil, arg) );
328
claus
parents: 326
diff changeset
   769
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   770
#else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   771
        home = __BlockInstPtr(self)->b_home;
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   772
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   773
            RETURN ( (*thecode)(home, arg) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   774
        }
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   775
        /* interpreted code */
328
claus
parents: 326
diff changeset
   776
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   777
        RETURN ( __interpret(self, 1, nil, home, nil, nil, &arg) );
328
claus
parents: 326
diff changeset
   778
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   779
        RETURN ( __interpret(self, 1, nil, home, nil, nil, arg) );
328
claus
parents: 326
diff changeset
   780
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   781
#endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
   782
    }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   783
%}.
103
de0f8152878f errors now raise a signal
claus
parents: 98
diff changeset
   784
    ^ self wrongNumberOfArguments:1
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   785
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   786
a27a279701f8 Initial revision
claus
parents:
diff changeset
   787
value:arg1 value:arg2
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   788
    "evaluate the receiver with two arguments. 
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   789
     The receiver must be a 2-arg block."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   790
a27a279701f8 Initial revision
claus
parents:
diff changeset
   791
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
   792
a27a279701f8 Initial revision
claus
parents:
diff changeset
   793
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   794
    OBJ home;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   795
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
   796
    if (__INST(nargs) == __mkSmallInteger(2)) {
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   797
#if defined(THIS_CONTEXT)
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   798
        if (__ISVALID_ILC_LNO(__pilc))
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   799
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   800
#endif
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   801
        thecode = __BlockInstPtr(self)->b_code;
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   802
#ifdef NEW_BLOCK_CALL
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   803
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   804
            RETURN ( (*thecode)(self, arg1, arg2) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   805
        }
328
claus
parents: 326
diff changeset
   806
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   807
        RETURN ( __interpret(self, 2, nil, nil, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
   808
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   809
        RETURN ( __interpret(self, 2, nil, nil, nil, nil, arg1, arg2) );
328
claus
parents: 326
diff changeset
   810
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   811
#else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   812
        home = __BlockInstPtr(self)->b_home;
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   813
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   814
            RETURN ( (*thecode)(home, arg1, arg2) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   815
        }
328
claus
parents: 326
diff changeset
   816
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   817
        RETURN ( __interpret(self, 2, nil, home, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
   818
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   819
        RETURN ( __interpret(self, 2, nil, home, nil, nil, arg1, arg2) );
328
claus
parents: 326
diff changeset
   820
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   821
#endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
   822
    }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   823
%}.
103
de0f8152878f errors now raise a signal
claus
parents: 98
diff changeset
   824
    ^ self wrongNumberOfArguments:2
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   825
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   826
a27a279701f8 Initial revision
claus
parents:
diff changeset
   827
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
   828
    "evaluate the receiver with three arguments. 
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   829
     The receiver must be a 3-arg block."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   830
a27a279701f8 Initial revision
claus
parents:
diff changeset
   831
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
   832
a27a279701f8 Initial revision
claus
parents:
diff changeset
   833
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   834
    OBJ home;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   835
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
   836
    if (__INST(nargs) == __mkSmallInteger(3)) {
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   837
#if defined(THIS_CONTEXT)
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   838
        if (__ISVALID_ILC_LNO(__pilc))
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   839
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   840
#endif
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   841
        thecode = __BlockInstPtr(self)->b_code;
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   842
#ifdef NEW_BLOCK_CALL
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   843
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   844
            RETURN ( (*thecode)(self, arg1, arg2, arg3) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   845
        }
328
claus
parents: 326
diff changeset
   846
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   847
        RETURN ( __interpret(self, 3, nil, nil, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
   848
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   849
        RETURN ( __interpret(self, 3, nil, nil, nil, nil, arg1, arg2, arg3) );
328
claus
parents: 326
diff changeset
   850
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   851
#else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   852
        home = __BlockInstPtr(self)->b_home;
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   853
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   854
            RETURN ( (*thecode)(home, arg1, arg2, arg3) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   855
        }
328
claus
parents: 326
diff changeset
   856
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   857
        RETURN ( __interpret(self, 3, nil, home, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
   858
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   859
        RETURN ( __interpret(self, 3, nil, home, nil, nil, arg1, arg2, arg3) );
328
claus
parents: 326
diff changeset
   860
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   861
#endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
   862
    }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   863
%}.
103
de0f8152878f errors now raise a signal
claus
parents: 98
diff changeset
   864
    ^ self wrongNumberOfArguments:3
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   865
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   866
a27a279701f8 Initial revision
claus
parents:
diff changeset
   867
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
   868
    "evaluate the receiver with four arguments. 
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   869
     The receiver must be a 4-arg block."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   870
a27a279701f8 Initial revision
claus
parents:
diff changeset
   871
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
   872
a27a279701f8 Initial revision
claus
parents:
diff changeset
   873
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   874
    OBJ home;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   875
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
   876
    if (__INST(nargs) == __mkSmallInteger(4)) {
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   877
#if defined(THIS_CONTEXT)
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   878
        if (__ISVALID_ILC_LNO(__pilc))
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   879
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   880
#endif
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   881
        thecode = __BlockInstPtr(self)->b_code;
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   882
#ifdef NEW_BLOCK_CALL
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   883
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   884
            RETURN ( (*thecode)(self, arg1, arg2, arg3, arg4) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   885
        }
328
claus
parents: 326
diff changeset
   886
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   887
        RETURN ( __interpret(self, 4, nil, nil, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
   888
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   889
        RETURN ( __interpret(self, 4, nil, nil, nil, nil, arg1, arg2, arg3, arg4) );
328
claus
parents: 326
diff changeset
   890
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   891
#else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   892
        home = __BlockInstPtr(self)->b_home;
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   893
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   894
            RETURN ( (*thecode)(home, arg1, arg2, arg3, arg4) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   895
        }
328
claus
parents: 326
diff changeset
   896
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   897
        RETURN ( __interpret(self, 4, nil, home, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
   898
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   899
        RETURN ( __interpret(self, 4, nil, home, nil, nil, arg1, arg2, arg3, arg4) );
328
claus
parents: 326
diff changeset
   900
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   901
#endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
   902
    }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   903
%}.
103
de0f8152878f errors now raise a signal
claus
parents: 98
diff changeset
   904
    ^ self wrongNumberOfArguments:4
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   905
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   906
a27a279701f8 Initial revision
claus
parents:
diff changeset
   907
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
   908
    "evaluate the receiver with five arguments. 
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   909
     The receiver must be a 5-arg block."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   910
a27a279701f8 Initial revision
claus
parents:
diff changeset
   911
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
   912
a27a279701f8 Initial revision
claus
parents:
diff changeset
   913
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   914
    OBJ home;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   915
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
   916
    if (__INST(nargs) == __mkSmallInteger(5)) {
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   917
#if defined(THIS_CONTEXT)
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   918
        if (__ISVALID_ILC_LNO(__pilc))
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   919
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   920
#endif
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   921
        thecode = __BlockInstPtr(self)->b_code;
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   922
#ifdef NEW_BLOCK_CALL
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   923
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   924
            RETURN ( (*thecode)(self, arg1, arg2, arg3, arg4, arg5) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   925
        }
328
claus
parents: 326
diff changeset
   926
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   927
        RETURN ( __interpret(self, 5, nil, nil, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
   928
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   929
        RETURN ( __interpret(self, 5, nil, nil, nil, nil, arg1, arg2, arg3, arg4, arg5) );
328
claus
parents: 326
diff changeset
   930
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   931
#else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   932
        home = __BlockInstPtr(self)->b_home;
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   933
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   934
            RETURN ( (*thecode)(home, arg1, arg2, arg3, arg4, arg5) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   935
        }
328
claus
parents: 326
diff changeset
   936
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   937
        RETURN ( __interpret(self, 5, nil, home, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
   938
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   939
        RETURN ( __interpret(self, 5, nil, home, nil, nil, arg1, arg2, arg3, arg4, arg5) );
328
claus
parents: 326
diff changeset
   940
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   941
#endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
   942
    }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   943
%}.
103
de0f8152878f errors now raise a signal
claus
parents: 98
diff changeset
   944
    ^ self wrongNumberOfArguments:5
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   945
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   946
a27a279701f8 Initial revision
claus
parents:
diff changeset
   947
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
   948
    "evaluate the receiver with six arguments. 
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   949
     The receiver must be a 6-arg block."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   950
a27a279701f8 Initial revision
claus
parents:
diff changeset
   951
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
   952
a27a279701f8 Initial revision
claus
parents:
diff changeset
   953
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   954
    OBJ home;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   955
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
   956
    if (__INST(nargs) == __mkSmallInteger(6)) {
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   957
#if defined(THIS_CONTEXT)
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   958
        if (__ISVALID_ILC_LNO(__pilc))
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   959
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   960
#endif
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   961
        thecode = __BlockInstPtr(self)->b_code;
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   962
#ifdef NEW_BLOCK_CALL
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   963
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   964
            RETURN ( (*thecode)(self, arg1, arg2, arg3, arg4, arg5, arg6) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   965
        }
328
claus
parents: 326
diff changeset
   966
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   967
        RETURN ( __interpret(self, 6, nil, nil, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
   968
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   969
        RETURN ( __interpret(self, 6, nil, nil, nil, nil, arg1, arg2, arg3, arg4, arg5, arg6) );
328
claus
parents: 326
diff changeset
   970
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   971
#else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   972
        home = __BlockInstPtr(self)->b_home;
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   973
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   974
            RETURN ( (*thecode)(home, arg1, arg2, arg3, arg4, arg5, arg6) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   975
        }
328
claus
parents: 326
diff changeset
   976
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   977
        RETURN ( __interpret(self, 6, nil, home, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
   978
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   979
        RETURN ( __interpret(self, 6, nil, home, nil, nil, arg1, arg2, arg3, arg4, arg5, arg6) );
328
claus
parents: 326
diff changeset
   980
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   981
#endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
   982
    }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   983
%}.
103
de0f8152878f errors now raise a signal
claus
parents: 98
diff changeset
   984
    ^ self wrongNumberOfArguments:6
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   985
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   986
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   987
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
   988
    "evaluate the receiver with seven arguments.
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   989
     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
   990
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   991
%{  /* NOCONTEXT */
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   992
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   993
    REGISTER OBJFUNC thecode;
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   994
    OBJ home;
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   995
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
   996
    if (__INST(nargs) == __mkSmallInteger(7)) {
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   997
#if defined(THIS_CONTEXT)
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   998
        if (__ISVALID_ILC_LNO(__pilc))
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   999
            __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
  1000
#endif
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1001
        thecode = __BlockInstPtr(self)->b_code;
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1002
#ifdef NEW_BLOCK_CALL
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1003
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1004
            RETURN ( (*thecode)(self, arg1, arg2, arg3, arg4, arg5, arg6, arg7) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1005
        }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1006
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1007
        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
  1008
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1009
        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
  1010
# endif
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1011
#else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1012
        home = __BlockInstPtr(self)->b_home;
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1013
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1014
            RETURN ( (*thecode)(home, arg1, arg2, arg3, arg4, arg5, arg6, arg7) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1015
        }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1016
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1017
        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
  1018
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1019
        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
  1020
# endif
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1021
#endif
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1022
    }
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1023
%}.
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1024
    ^ self wrongNumberOfArguments:7
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1025
!
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1026
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1027
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
  1028
    "evaluate the receiver with eight arguments.
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1029
     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
  1030
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1031
%{  /* NOCONTEXT */
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1032
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1033
    REGISTER OBJFUNC thecode;
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1034
    OBJ home;
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1035
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1036
    if (__INST(nargs) == __mkSmallInteger(8)) {
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1037
#if defined(THIS_CONTEXT)
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1038
        if (__ISVALID_ILC_LNO(__pilc))
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1039
            __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
  1040
#endif
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1041
        thecode = __BlockInstPtr(self)->b_code;
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1042
#ifdef NEW_BLOCK_CALL
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1043
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1044
            RETURN ( (*thecode)(self, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1045
        }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1046
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1047
        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
  1048
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1049
        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
  1050
# endif
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1051
#else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1052
        home = __BlockInstPtr(self)->b_home;
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1053
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1054
            RETURN ( (*thecode)(home, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1055
        }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1056
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1057
        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
  1058
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1059
        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
  1060
# endif
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1061
#endif
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1062
    }
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1063
%}.
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1064
    ^ self wrongNumberOfArguments:8
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1065
!
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1066
3688
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1067
valueAt:priority
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1068
    "evaluate the receiver, at the given prioriy;
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1069
     i.e. change the priority for the execution of the receiver."
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1070
9042
f41b8427068e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9010
diff changeset
  1071
    |oldPrio retVal activeProcess|
f41b8427068e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9010
diff changeset
  1072
f41b8427068e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9010
diff changeset
  1073
    activeProcess := Processor activeProcess.
3688
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1074
    oldPrio := Processor activePriority.
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1075
    [
9042
f41b8427068e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9010
diff changeset
  1076
        activeProcess priority:priority.
f41b8427068e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9010
diff changeset
  1077
        retVal := self value.
6257
f77941a61a12 Fix comments. Use #ensure: instead of #valueNowOrOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6236
diff changeset
  1078
    ] ensure:[
9042
f41b8427068e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9010
diff changeset
  1079
        activeProcess priority:oldPrio
3688
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1080
    ].
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1081
    ^ retVal
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1082
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1083
    "
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1084
     [
9042
f41b8427068e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9010
diff changeset
  1085
         1000 timesRepeat:[
f41b8427068e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9010
diff changeset
  1086
             1000 factorial
f41b8427068e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9010
diff changeset
  1087
         ]
3688
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1088
     ] valueAt:3
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1089
    "
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1090
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1091
    "Created: / 29.7.1998 / 19:19:48 / cg"
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1092
!
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1093
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1094
valueWithArguments:argArray
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1095
    "evaluate the receiver with arguments taken from argArray.
313
83c50ef3886a *** empty log message ***
claus
parents: 306
diff changeset
  1096
     ArgArray must be either an Array or nil.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1097
     The size of the argArray must match the number of arguments the receiver expects."
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1098
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1099
    |a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1100
2841
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1101
    (argArray notNil and:[(argArray class ~~ Array) and:[argArray isArray not]]) ifTrue:[
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1102
        ^ self badArgumentArray:argArray
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1103
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1104
    (argArray size == nargs) ifFalse:[
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1105
        ^ self wrongNumberOfArguments:argArray size
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1106
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1107
%{
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1108
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1109
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1110
    OBJ home;
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1111
    REGISTER OBJ *ap;
2841
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1112
    OBJ nA;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1113
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1114
#if defined(THIS_CONTEXT)
328
claus
parents: 326
diff changeset
  1115
    if (__ISVALID_ILC_LNO(__pilc))
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1116
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1117
#endif
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  1118
    thecode = __BlockInstPtr(self)->b_code;
1037
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  1119
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  1120
    nA = __INST(nargs);
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  1121
1037
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  1122
#ifndef NEW_BLOCK_CALL
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  1123
    home = __BlockInstPtr(self)->b_home;
1037
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  1124
    if (thecode != (OBJFUNC)nil) {
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1125
        /* the most common case (0 args) here (without a switch) */
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  1126
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1127
        if (nA == __mkSmallInteger(0)) {
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1128
            RETURN ( (*thecode)(home) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1129
        }
2841
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1130
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1131
        ap = __arrayVal(argArray);   /* nonNil after above test (size is known to be ok) */
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1132
        switch ((INT)(nA)) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1133
            default:
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1134
                goto error;
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1135
            case (INT)__mkSmallInteger(15):
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1136
                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], ap[12], ap[13], ap[14]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1137
            case (INT)__mkSmallInteger(14):
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1138
                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], ap[12], ap[13]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1139
            case (INT)__mkSmallInteger(13):
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1140
                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], ap[12]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1141
            case (INT)__mkSmallInteger(12):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1142
                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]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1143
            case (INT)__mkSmallInteger(11):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1144
                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]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1145
            case (INT)__mkSmallInteger(10):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1146
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7], ap[8], ap[9]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1147
            case (INT)__mkSmallInteger(9):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1148
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7], ap[8]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1149
            case (INT)__mkSmallInteger(8):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1150
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1151
            case (INT)__mkSmallInteger(7):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1152
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1153
            case (INT)__mkSmallInteger(6):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1154
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1155
            case (INT)__mkSmallInteger(5):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1156
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1157
            case (INT)__mkSmallInteger(4):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1158
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1159
            case (INT)__mkSmallInteger(3):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1160
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1161
            case (INT)__mkSmallInteger(2):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1162
                RETURN ( (*thecode)(home, ap[0], ap[1]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1163
            case (INT)__mkSmallInteger(1):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1164
                RETURN ( (*thecode)(home, ap[0]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1165
            case (INT)__mkSmallInteger(0):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1166
                RETURN ( (*thecode)(home) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1167
                break;
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1168
        }
1037
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  1169
    }
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  1170
#endif
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  1171
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1172
    if (nA != __mkSmallInteger(0)) {
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1173
        ap = __arrayVal(argArray);   /* nonNil after above test (size is known to be ok) */
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1174
        switch ((INT)nA) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1175
            default:
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1176
                goto error;
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1177
            case (INT)__mkSmallInteger(15):
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1178
                a15 = ap[14];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1179
            case (INT)__mkSmallInteger(14):
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1180
                a14 = ap[13];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1181
            case (INT)__mkSmallInteger(13):
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1182
                a13 = ap[12];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1183
            case (INT)__mkSmallInteger(12):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1184
                a12 = ap[11];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1185
            case (INT)__mkSmallInteger(11):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1186
                a11 = ap[10];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1187
            case (INT)__mkSmallInteger(10):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1188
                a10 = ap[9];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1189
            case (INT)__mkSmallInteger(9):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1190
                a9 = ap[8];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1191
            case (INT)__mkSmallInteger(8):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1192
                a8 = ap[7];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1193
            case (INT)__mkSmallInteger(7):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1194
                a7 = ap[6];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1195
            case (INT)__mkSmallInteger(6):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1196
                a6 = ap[5];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1197
            case (INT)__mkSmallInteger(5):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1198
                a5 = ap[4];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1199
            case (INT)__mkSmallInteger(4):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1200
                a4 = ap[3];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1201
            case (INT)__mkSmallInteger(3):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1202
                a3 = ap[2];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1203
            case (INT)__mkSmallInteger(2):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1204
                a2 = ap[1];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1205
            case (INT)__mkSmallInteger(1):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1206
                a1 = ap[0];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1207
            case (INT)__mkSmallInteger(0):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1208
                break;
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1209
        }
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1210
    }
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  1211
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  1212
#ifdef NEW_BLOCK_CALL
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1213
    if (thecode != (OBJFUNC)nil) {
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1214
        RETURN ( (*thecode)(self, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15) );
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  1215
    }
328
claus
parents: 326
diff changeset
  1216
# ifdef PASS_ARG_POINTER
6553
ce4ca4df3415 oops - last modification created a little bug.
Claus Gittinger <cg@exept.de>
parents: 6512
diff changeset
  1217
    RETURN ( __interpret(self, __intVal(nA), nil, nil, nil, nil, &a1) );
328
claus
parents: 326
diff changeset
  1218
# else
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1219
    RETURN ( __interpret(self, __intVal(nA), nil, nil, nil, nil, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15) );
328
claus
parents: 326
diff changeset
  1220
# endif
1037
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  1221
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1222
#else
1037
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  1223
328
claus
parents: 326
diff changeset
  1224
# ifdef PASS_ARG_POINTER
6553
ce4ca4df3415 oops - last modification created a little bug.
Claus Gittinger <cg@exept.de>
parents: 6512
diff changeset
  1225
    RETURN ( __interpret(self, __intVal(nA), nil, home, nil, nil, &a1) );
328
claus
parents: 326
diff changeset
  1226
# else
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1227
    RETURN ( __interpret(self, __intVal(nA), nil, home, nil, nil, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15) );
328
claus
parents: 326
diff changeset
  1228
# endif
1037
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  1229
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1230
#endif
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1231
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  1232
error: ;
2841
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1233
%}.
138
c9f46b635f98 *** empty log message ***
claus
parents: 128
diff changeset
  1234
    "
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1235
     the above code only supports up-to 15 arguments
138
c9f46b635f98 *** empty log message ***
claus
parents: 128
diff changeset
  1236
    "
7602
d048f13cd50a Exception classes initialize themself.
Stefan Vogel <sv@exept.de>
parents: 7352
diff changeset
  1237
    ^ ArgumentError
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1238
        raiseRequestWith:self
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1239
        errorString:'only blocks with up-to 15 arguments supported'
6317
a639eb213a12 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6257
diff changeset
  1240
!
a639eb213a12 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6257
diff changeset
  1241
a639eb213a12 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6257
diff changeset
  1242
valueWithOptionalArgument:arg
a639eb213a12 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6257
diff changeset
  1243
    "evaluate the receiver.
6318
3677d346113a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6317
diff changeset
  1244
     Optionally pass an argument (if the receiver is a one arg block)."
6317
a639eb213a12 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6257
diff changeset
  1245
6628
4d693c525443 #handlerForSignal:context:originator:
Stefan Vogel <sv@exept.de>
parents: 6611
diff changeset
  1246
    nargs == 1 ifTrue:[
4d693c525443 #handlerForSignal:context:originator:
Stefan Vogel <sv@exept.de>
parents: 6611
diff changeset
  1247
        ^ self value:arg
6317
a639eb213a12 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6257
diff changeset
  1248
    ].
a639eb213a12 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6257
diff changeset
  1249
    ^ self value
6320
0db3f79930a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6318
diff changeset
  1250
0db3f79930a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6318
diff changeset
  1251
    "
0db3f79930a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6318
diff changeset
  1252
     |block|
0db3f79930a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6318
diff changeset
  1253
0db3f79930a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6318
diff changeset
  1254
     block := [ Transcript showCR:'hello' ].
0db3f79930a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6318
diff changeset
  1255
     block valueWithOptionalArgument:2.     
0db3f79930a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6318
diff changeset
  1256
0db3f79930a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6318
diff changeset
  1257
     block := [:arg | Transcript showCR:arg ].
0db3f79930a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6318
diff changeset
  1258
     block valueWithOptionalArgument:2.     
0db3f79930a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6318
diff changeset
  1259
    "
6785
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1260
!
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1261
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1262
valueWithOptionalArgument:arg1 and:arg2
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1263
    "evaluate the receiver.
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1264
     Optionally pass up to two arguments (if the receiver is a one/two arg block)."
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1265
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1266
    nargs == 2 ifTrue:[
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1267
        ^ self value:arg1 value:arg2
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1268
    ].
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1269
    nargs == 1 ifTrue:[
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1270
        ^ self value:arg1
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1271
    ].
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1272
    ^ self value
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1273
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1274
    "
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1275
     |block|
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1276
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1277
     block := [ Transcript showCR:'hello' ].
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1278
     block valueWithOptionalArgument:2.     
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1279
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1280
     block := [:arg | Transcript showCR:arg ].
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1281
     block valueWithOptionalArgument:2.     
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1282
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1283
     block := [:arg1 :arg2 | Transcript showCR:arg1. Transcript showCR:arg2 ].
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1284
     block valueWithOptionalArgument:10 and:20.     
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1285
    "
9010
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1286
!
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1287
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1288
valueWithOptionalArgument:arg1 and:arg2 and:arg3
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1289
    "evaluate the receiver.
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1290
     Optionally pass up to three arguments (if the receiver is a one/two/three arg block)."
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1291
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1292
    nargs == 3 ifTrue:[
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1293
        ^ self value:arg1 value:arg2 value:arg3
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1294
    ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1295
    nargs == 2 ifTrue:[
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1296
        ^ self value:arg1 value:arg2
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1297
    ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1298
    nargs == 1 ifTrue:[
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1299
        ^ self value:arg1
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1300
    ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1301
    ^ self value
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1302
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1303
    "
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1304
     |block|
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1305
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1306
     block := [ Transcript showCR:'hello' ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1307
     block valueWithOptionalArgument:2.     
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1308
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1309
     block := [:arg | Transcript showCR:arg ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1310
     block valueWithOptionalArgument:2.     
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1311
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1312
     block := [:arg1 :arg2 | Transcript showCR:arg1. Transcript showCR:arg2 ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1313
     block valueWithOptionalArgument:10 and:20.     
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1314
    "
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1315
!
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1316
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1317
valueWithOptionalArgument:arg1 and:arg2 and:arg3 and:arg4
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1318
    "evaluate the receiver.
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1319
     Optionally pass up to four arguments (if the receiver is a one/two/three/four arg block)."
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1320
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1321
    nargs == 4 ifTrue:[
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1322
        ^ self value:arg1 value:arg2 value:arg3 value:arg4
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1323
    ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1324
    nargs == 3 ifTrue:[
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1325
        ^ self value:arg1 value:arg2 value:arg3
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1326
    ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1327
    nargs == 2 ifTrue:[
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1328
        ^ self value:arg1 value:arg2
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1329
    ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1330
    nargs == 1 ifTrue:[
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1331
        ^ self value:arg1
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1332
    ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1333
    ^ self value
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1334
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1335
    "
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1336
     |block|
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1337
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1338
     block := [ Transcript showCR:'hello' ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1339
     block valueWithOptionalArgument:2.     
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1340
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1341
     block := [:arg | Transcript showCR:arg ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1342
     block valueWithOptionalArgument:2.     
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1343
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1344
     block := [:arg1 :arg2 | Transcript showCR:arg1. Transcript showCR:arg2 ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1345
     block valueWithOptionalArgument:10 and:20.     
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1346
    "
9145
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1347
!
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1348
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1349
valueWithOptionalArguments:argArray
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1350
    "evaluate the receiver with arguments as required taken from argArray.
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1351
     Only the required number of arguments is taken from argArray or nil;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1352
     (i.e. argArray may be larger than the required number).
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1353
     If the size of the argArray is smaller than the number of arguments, an error is raised."
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1354
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1355
    |numArgsProvided a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15|
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1356
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1357
    (argArray notNil and:[(argArray class ~~ Array) and:[argArray isArray not]]) ifTrue:[
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1358
        ^ self badArgumentArray:argArray
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1359
    ].
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1360
    (argArray size >= nargs) ifFalse:[
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1361
        ^ self wrongNumberOfArguments:argArray size
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1362
    ].
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1363
%{
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1364
    REGISTER OBJFUNC thecode;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1365
    OBJ home;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1366
    REGISTER OBJ *ap;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1367
    OBJ nA;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1368
    int __numArgsProvided = __intVal(numArgsProvided);
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1369
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1370
#if defined(THIS_CONTEXT)
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1371
    if (__ISVALID_ILC_LNO(__pilc))
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1372
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1373
#endif
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1374
    thecode = __BlockInstPtr(self)->b_code;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1375
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1376
    nA = __INST(nargs);
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1377
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1378
    if (argArray == nil) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1379
        ap = 0;  
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1380
    } else {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1381
        ap = __arrayVal(argArray);   /* nonNil after above test (size is known to be ok) */
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1382
    }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1383
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1384
#ifndef NEW_BLOCK_CALL
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1385
    home = __BlockInstPtr(self)->b_home;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1386
    if (thecode != (OBJFUNC)nil) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1387
        /* the most common case (0 args) here (without a switch) */
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1388
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1389
        if (nA == __mkSmallInteger(0)) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1390
            RETURN ( (*thecode)(home) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1391
        }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1392
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1393
        switch ((INT)(nA)) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1394
            default:
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1395
                goto error;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1396
            case (INT)__mkSmallInteger(15):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1397
                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], ap[12], ap[13], ap[14]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1398
            case (INT)__mkSmallInteger(14):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1399
                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], ap[12], ap[13]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1400
            case (INT)__mkSmallInteger(13):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1401
                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], ap[12]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1402
            case (INT)__mkSmallInteger(12):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1403
                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]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1404
            case (INT)__mkSmallInteger(11):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1405
                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]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1406
            case (INT)__mkSmallInteger(10):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1407
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7], ap[8], ap[9]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1408
            case (INT)__mkSmallInteger(9):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1409
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7], ap[8]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1410
            case (INT)__mkSmallInteger(8):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1411
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1412
            case (INT)__mkSmallInteger(7):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1413
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1414
            case (INT)__mkSmallInteger(6):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1415
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1416
            case (INT)__mkSmallInteger(5):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1417
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1418
            case (INT)__mkSmallInteger(4):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1419
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1420
            case (INT)__mkSmallInteger(3):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1421
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1422
            case (INT)__mkSmallInteger(2):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1423
                RETURN ( (*thecode)(home, ap[0], ap[1]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1424
            case (INT)__mkSmallInteger(1):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1425
                RETURN ( (*thecode)(home, ap[0]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1426
            case (INT)__mkSmallInteger(0):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1427
                RETURN ( (*thecode)(home) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1428
                break;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1429
        }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1430
    }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1431
#endif
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1432
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1433
    if (nA != __mkSmallInteger(0)) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1434
        ap = __arrayVal(argArray);   /* nonNil after above test (size is known to be ok) */
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1435
        switch ((INT)nA) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1436
            default:
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1437
                goto error;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1438
            case (INT)__mkSmallInteger(15):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1439
                a15 = ap[14];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1440
            case (INT)__mkSmallInteger(14):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1441
                a14 = ap[13];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1442
            case (INT)__mkSmallInteger(13):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1443
                a13 = ap[12];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1444
            case (INT)__mkSmallInteger(12):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1445
                a12 = ap[11];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1446
            case (INT)__mkSmallInteger(11):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1447
                a11 = ap[10];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1448
            case (INT)__mkSmallInteger(10):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1449
                a10 = ap[9];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1450
            case (INT)__mkSmallInteger(9):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1451
                a9 = ap[8];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1452
            case (INT)__mkSmallInteger(8):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1453
                a8 = ap[7];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1454
            case (INT)__mkSmallInteger(7):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1455
                a7 = ap[6];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1456
            case (INT)__mkSmallInteger(6):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1457
                a6 = ap[5];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1458
            case (INT)__mkSmallInteger(5):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1459
                a5 = ap[4];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1460
            case (INT)__mkSmallInteger(4):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1461
                a4 = ap[3];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1462
            case (INT)__mkSmallInteger(3):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1463
                a3 = ap[2];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1464
            case (INT)__mkSmallInteger(2):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1465
                a2 = ap[1];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1466
            case (INT)__mkSmallInteger(1):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1467
                a1 = ap[0];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1468
            case (INT)__mkSmallInteger(0):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1469
                break;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1470
        }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1471
    }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1472
#ifdef NEW_BLOCK_CALL
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1473
    if (thecode != (OBJFUNC)nil) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1474
        RETURN ( (*thecode)(self, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1475
    }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1476
# ifdef PASS_ARG_POINTER
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1477
    RETURN ( __interpret(self, __intVal(nA), nil, nil, nil, nil, &a1) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1478
# else
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1479
    RETURN ( __interpret(self, __intVal(nA), nil, nil, nil, nil, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1480
# endif
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1481
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1482
#else
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1483
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1484
# ifdef PASS_ARG_POINTER
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1485
    RETURN ( __interpret(self, __intVal(nA), nil, home, nil, nil, &a1) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1486
# else
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1487
    RETURN ( __interpret(self, __intVal(nA), nil, home, nil, nil, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1488
# endif
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1489
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1490
#endif
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1491
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1492
error: ;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1493
%}.
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1494
    "
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1495
     the above code only supports up-to 15 arguments
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1496
    "
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1497
    ^ ArgumentError
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1498
        raiseRequestWith:self
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1499
        errorString:'only blocks with up-to 15 arguments supported'
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1500
!
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1501
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1502
valueWithPossibleArguments:argArray
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1503
    "evaluate the receiver with arguments as required taken from argArray.
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1504
     If argArray provides less than the required number of arguments, 
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1505
     nil is assumed for any remaining argument.
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1506
     (i.e. argArray may be smaller than the required number).
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1507
     Only the required number of arguments is taken from argArray or nil;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1508
     (i.e. argArray may be larger than the required number)."
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1509
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1510
    |numArgsProvided a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15|
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1511
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1512
    (argArray notNil and:[(argArray class ~~ Array) and:[argArray isArray not]]) ifTrue:[
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1513
        ^ self badArgumentArray:argArray
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1514
    ].
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1515
    numArgsProvided := argArray size.
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1516
%{
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1517
    REGISTER OBJFUNC thecode;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1518
    OBJ home;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1519
    REGISTER OBJ *ap;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1520
    OBJ nA;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1521
    int __numArgsProvided = __intVal(numArgsProvided);
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1522
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1523
#if defined(THIS_CONTEXT)
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1524
    if (__ISVALID_ILC_LNO(__pilc))
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1525
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1526
#endif
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1527
    thecode = __BlockInstPtr(self)->b_code;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1528
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1529
    nA = __INST(nargs);
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1530
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1531
    if (argArray == nil) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1532
        ap = 0;  
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1533
    } else {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1534
        ap = __arrayVal(argArray);   /* nonNil after above test (size is known to be ok) */
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1535
    }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1536
    switch (__numArgsProvided) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1537
        default:
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1538
        case 15: a15 = ap[14];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1539
        case 14: a14 = ap[13];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1540
        case 13: a13 = ap[12];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1541
        case 12: a12 = ap[11];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1542
        case 11: a11 = ap[10];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1543
        case 10: a10 = ap[9];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1544
        case 9: a9 = ap[8];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1545
        case 8: a8 = ap[7];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1546
        case 7: a7 = ap[6];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1547
        case 6: a6 = ap[5];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1548
        case 5: a5 = ap[4];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1549
        case 4: a4 = ap[3];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1550
        case 3: a3 = ap[2];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1551
        case 2: a2 = ap[1];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1552
        case 1: a1 = ap[0];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1553
        case 0: ;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1554
    }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1555
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1556
#ifndef NEW_BLOCK_CALL
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1557
    home = __BlockInstPtr(self)->b_home;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1558
    if (thecode != (OBJFUNC)nil) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1559
        /* the most common case (0 args) here (without a switch) */
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1560
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1561
        if (nA == __mkSmallInteger(0)) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1562
            RETURN ( (*thecode)(home) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1563
        }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1564
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1565
        switch ((INT)(nA)) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1566
            default:
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1567
                goto error;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1568
            case (INT)__mkSmallInteger(15):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1569
                RETURN ( (*thecode)(home, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1570
            case (INT)__mkSmallInteger(14):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1571
                RETURN ( (*thecode)(home, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1572
            case (INT)__mkSmallInteger(13):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1573
                RETURN ( (*thecode)(home, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1574
            case (INT)__mkSmallInteger(12):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1575
                RETURN ( (*thecode)(home, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1576
            case (INT)__mkSmallInteger(11):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1577
                RETURN ( (*thecode)(home, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1578
            case (INT)__mkSmallInteger(10):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1579
                RETURN ( (*thecode)(home, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1580
            case (INT)__mkSmallInteger(9):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1581
                RETURN ( (*thecode)(home, a1, a2, a3, a4, a5, a6, a7, a8, a9) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1582
            case (INT)__mkSmallInteger(8):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1583
                RETURN ( (*thecode)(home, a1, a2, a3, a4, a5, a6, a7, a8) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1584
            case (INT)__mkSmallInteger(7):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1585
                RETURN ( (*thecode)(home, a1, a2, a3, a4, a5, a6, a7) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1586
            case (INT)__mkSmallInteger(6):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1587
                RETURN ( (*thecode)(home, a1, a2, a3, a4, a5, a6) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1588
            case (INT)__mkSmallInteger(5):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1589
                RETURN ( (*thecode)(home, a1, a2, a3, a4, a5) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1590
            case (INT)__mkSmallInteger(4):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1591
                RETURN ( (*thecode)(home, a1, a2, a3, a4) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1592
            case (INT)__mkSmallInteger(3):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1593
                RETURN ( (*thecode)(home, a1, a2, a3) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1594
            case (INT)__mkSmallInteger(2):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1595
                RETURN ( (*thecode)(home, a1, a2) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1596
            case (INT)__mkSmallInteger(1):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1597
                RETURN ( (*thecode)(home, a1) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1598
            case (INT)__mkSmallInteger(0):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1599
                RETURN ( (*thecode)(home) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1600
                break;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1601
        }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1602
    }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1603
#endif
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1604
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1605
#ifdef NEW_BLOCK_CALL
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1606
    if (thecode != (OBJFUNC)nil) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1607
        RETURN ( (*thecode)(self, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1608
    }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1609
# ifdef PASS_ARG_POINTER
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1610
    RETURN ( __interpret(self, __intVal(nA), nil, nil, nil, nil, &a1) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1611
# else
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1612
    RETURN ( __interpret(self, __intVal(nA), nil, nil, nil, nil, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1613
# endif
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1614
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1615
#else
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1616
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1617
# ifdef PASS_ARG_POINTER
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1618
    RETURN ( __interpret(self, __intVal(nA), nil, home, nil, nil, &a1) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1619
# else
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1620
    RETURN ( __interpret(self, __intVal(nA), nil, home, nil, nil, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1621
# endif
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1622
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1623
#endif
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1624
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1625
error: ;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1626
%}.
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1627
    "
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1628
     the above code only supports up-to 15 arguments
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1629
    "
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1630
    ^ ArgumentError
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1631
        raiseRequestWith:self
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1632
        errorString:'only blocks with up-to 15 arguments supported'
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1633
! !
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1634
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1635
!Block methodsFor:'exception handling'!
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1636
6512
f015412236b3 use #isSignalOrSignalSet
Claus Gittinger <cg@exept.de>
parents: 6498
diff changeset
  1637
on:aSignalOrSignalSetOrException do:exceptionBlock
f015412236b3 use #isSignalOrSignalSet
Claus Gittinger <cg@exept.de>
parents: 6498
diff changeset
  1638
    "added for ANSI compatibility; evaluate the receiver,
f015412236b3 use #isSignalOrSignalSet
Claus Gittinger <cg@exept.de>
parents: 6498
diff changeset
  1639
     handling aSignalOrSignalSetOrException. 
f015412236b3 use #isSignalOrSignalSet
Claus Gittinger <cg@exept.de>
parents: 6498
diff changeset
  1640
     The 2nd argument, exceptionBlock is evaluated
f015412236b3 use #isSignalOrSignalSet
Claus Gittinger <cg@exept.de>
parents: 6498
diff changeset
  1641
     if the signal is raised during evaluation."
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1642
4542
5dc47816cf68 Add #handlerProtectedBlock:inContext
Stefan Vogel <sv@exept.de>
parents: 4513
diff changeset
  1643
    <context: #return>
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1644
    <exception: #handle>
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1645
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1646
    "/ thisContext markForHandle. -- same as above pragma
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1647
    ^ 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
  1648
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1649
    "
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1650
     [
6512
f015412236b3 use #isSignalOrSignalSet
Claus Gittinger <cg@exept.de>
parents: 6498
diff changeset
  1651
        1 foo
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1652
     ] on:MessageNotUnderstood do:[:ex | self halt]
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1653
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1654
     [
6512
f015412236b3 use #isSignalOrSignalSet
Claus Gittinger <cg@exept.de>
parents: 6498
diff changeset
  1655
        1 foo
f015412236b3 use #isSignalOrSignalSet
Claus Gittinger <cg@exept.de>
parents: 6498
diff changeset
  1656
     ] on:(MessageNotUnderstood , AbortOperationRequest) do:[:ex | self halt]
f015412236b3 use #isSignalOrSignalSet
Claus Gittinger <cg@exept.de>
parents: 6498
diff changeset
  1657
f015412236b3 use #isSignalOrSignalSet
Claus Gittinger <cg@exept.de>
parents: 6498
diff changeset
  1658
     [
f015412236b3 use #isSignalOrSignalSet
Claus Gittinger <cg@exept.de>
parents: 6498
diff changeset
  1659
        1 foo
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1660
     ] 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
  1661
    "
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1662
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1663
    "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
  1664
!
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1665
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1666
on:anExceptionHandler do:exceptionBlock on:anExceptionHandler2 do:anExceptionBlock2
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1667
    "added for ANSI compatibility; evaluate the receiver,
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1668
     handling aSignalOrSignalSetOrException. 
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1669
     The 2nd argument, exceptionBlock is evaluated
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1670
     if the signal is raised during evaluation."
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1671
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1672
    <context: #return>
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1673
    <exception: #handle>
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1674
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1675
    "/ thisContext markForHandle. -- same as above pragma
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1676
    ^ self value. "the real logic is in Exception>>doRaise"
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1677
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1678
    "
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1679
     [
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1680
        1 foo
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1681
     ] on:MessageNotUnderstood do:[:ex | self halt:'Got MessageNotUnderstood'] 
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1682
       on:Error do:[:ex| self halt:'Got Error']
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1683
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1684
     [
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1685
        1 // 0
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1686
     ] on:MessageNotUnderstood do:[:ex | self halt:'Got MessageNotUnderstood'] 
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1687
       on:Error do:[:ex| self halt:'Got Error']
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1688
    "
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1689
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1690
    "Modified: / 26.7.1999 / 15:30:48 / stefan"
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1691
!
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1692
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1693
valueWithExceptionHandler:handler
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1694
    "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
  1695
     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
  1696
4547
082a2f7d9d8e Add #handlerProtectedBlock:inContext
Stefan Vogel <sv@exept.de>
parents: 4542
diff changeset
  1697
    <context: #return>
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1698
    <exception: #handle>
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1699
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1700
    "/ thisContext markForHandle. -- same as above pragma
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  1701
    ^ 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
  1702
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1703
    "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
  1704
    "Modified: / 26.7.1999 / 11:24:06 / stefan"
9485
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1705
!
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1706
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1707
valueWithWatchDog:exceptionBlock afterMilliseconds:aTimeLimit
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1708
    "a watchdog on a blocks execution"
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1709
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1710
    |showStopper me signal retVal|
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1711
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1712
    me := Processor activeProcess.
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1713
    signal := Signal new.
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1714
    showStopper := [me interruptWith:signal raise].
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1715
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1716
    [
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1717
        signal handle:[:ex |
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1718
            retVal := exceptionBlock value.
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1719
        ] do:[
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1720
            Processor 
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1721
                addTimedBlock:showStopper 
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1722
                for:me 
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1723
                afterMilliseconds:aTimeLimit.
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1724
            
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1725
            retVal := self value.
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1726
        ].
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1727
    ] ensure:[
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1728
        Processor removeTimedBlock:showStopper.
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1729
    ].
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1730
    ^ retVal
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1731
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1732
    "
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1733
     [
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1734
        Delay waitForSeconds:5.
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1735
        true
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1736
     ] valueWithWatchDog:[false] afterMilliseconds:2000      
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  1737
    "
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1738
! !
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  1739
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1740
!Block methodsFor:'exception handling private'!
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1741
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1742
exceptionHandlerFor:anException in:aContext
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1743
    "answer the exceptionHandler for anException from aContext."
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1744
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1745
    aContext selector == #on:do:on:do: ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1746
        |exceptionCreator exceptionHandlerInContext|
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1747
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1748
        exceptionCreator := anException creator.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1749
        exceptionHandlerInContext := aContext argAt:1.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1750
        exceptionHandlerInContext isExceptionHandler ifFalse:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1751
            exceptionHandlerInContext isNil ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1752
                'Block [warning]: nil ExceptionHandler in on:do:on:do:-context' errorPrintCR.
8723
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1753
            ] ifFalse:[(exceptionHandlerInContext isBehavior 
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1754
                        and:[exceptionHandlerInContext isLoaded not]) ifTrue:[
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1755
                "If the exception class is still autoloaded,
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1756
                 it does not accept our exception. Raising the exception would load the class"
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1757
                ^ nil
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1758
            ] ifFalse:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1759
                'Block [warning]: non-ExceptionHandler in on:do:on:do:-context' errorPrintCR.
8723
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1760
            ]].
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1761
            aContext fullPrint.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1762
            ^ nil.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1763
        ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1764
        (exceptionHandlerInContext accepts:exceptionCreator) ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1765
            ^ exceptionHandlerInContext.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1766
        ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1767
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1768
        exceptionHandlerInContext := aContext argAt:3.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1769
        exceptionHandlerInContext isExceptionHandler ifFalse:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1770
            exceptionHandlerInContext isNil ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1771
                'Block [warning]: nil ExceptionHandler in on:do:on:do:-context' errorPrintCR.
8723
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1772
            ] ifFalse:[(exceptionHandlerInContext isBehavior 
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1773
                        and:[exceptionHandlerInContext isLoaded not]) ifTrue:[
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1774
                "If the exception class is still autoloaded,
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1775
                 it does not accept our exception. Raising the exception would load the class"
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1776
                ^ nil
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1777
            ] ifFalse:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1778
                'Block [warning]: non-ExceptionHandler in on:do:on:do:-context' errorPrintCR.
8723
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1779
            ]].
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1780
            aContext fullPrint.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1781
            ^ nil.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1782
        ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1783
        (exceptionHandlerInContext accepts:exceptionCreator) ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1784
            ^ exceptionHandlerInContext.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1785
        ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1786
        ^ nil.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1787
    ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1788
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1789
    "aContext selector must be #on:do: or #valueWithExceptionHandler:"
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1790
    ^ aContext argAt:1.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1791
!
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1792
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1793
handlerForSignal:exceptionHandler context:theContext originator:originator
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1794
    "answer the handler block for the exceptionHandler from originator.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1795
     The handler block is retrieved from aContext.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1796
     Answer nil if the exceptionHandler is not handled."
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1797
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1798
    |selector exceptionHandlerInContext|
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1799
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1800
    selector := theContext selector.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1801
    selector == #on:do: ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1802
        exceptionHandlerInContext := theContext argAt:1.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1803
        exceptionHandlerInContext isExceptionHandler ifFalse:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1804
            exceptionHandlerInContext isNil ifTrue:[
8723
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1805
                'Block [warning]: nil ExceptionHandler in on:do:on:do:-context' errorPrintCR.
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1806
            ] ifFalse:[(exceptionHandlerInContext isBehavior 
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1807
                        and:[exceptionHandlerInContext isLoaded not]) ifTrue:[
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1808
                "If the exception class is still autoloaded,
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1809
                 it does not accept our exception. Raising the exception would load the class"
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1810
                ^ nil
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1811
            ] ifFalse:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1812
                'Block [warning]: non-ExceptionHandler in on:do:-context' errorPrintCR.
8723
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1813
            ]].
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1814
            theContext fullPrint.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1815
            ^ nil.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1816
        ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1817
        (exceptionHandlerInContext == exceptionHandler 
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1818
         or:[exceptionHandlerInContext accepts:exceptionHandler]) ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1819
            ^ theContext argAt:2.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1820
        ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1821
    ] ifFalse:[selector == #on:do:on:do: ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1822
        exceptionHandlerInContext := theContext argAt:1.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1823
        exceptionHandlerInContext isExceptionHandler ifFalse:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1824
            exceptionHandlerInContext isNil ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1825
                'Block [warning]: nil ExceptionHandler in on:do:on:do:-context' errorPrintCR.
8723
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1826
            ] ifFalse:[(exceptionHandlerInContext isBehavior 
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1827
                        and:[exceptionHandlerInContext isLoaded not]) ifTrue:[
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1828
                "If the exception class is still autoloaded,
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1829
                 it does not accept our exception. Raising the exception would load the class"
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1830
                ^ nil
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1831
            ] ifFalse:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1832
                'Block [warning]: non-ExceptionHandler in on:do:on:do:-context' errorPrintCR.
8723
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1833
            ]].
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1834
            theContext fullPrint.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1835
            ^ nil.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1836
        ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1837
        (exceptionHandlerInContext == exceptionHandler 
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1838
         or:[exceptionHandlerInContext accepts:exceptionHandler]) ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1839
            ^ theContext argAt:2.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1840
        ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1841
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1842
        exceptionHandlerInContext := theContext argAt:3.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1843
        exceptionHandlerInContext isExceptionHandler ifFalse:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1844
            exceptionHandlerInContext isNil ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1845
                'Block [warning]: nil ExceptionHandler in on:do:on:do:-context' errorPrintCR.
8723
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1846
            ] ifFalse:[(exceptionHandlerInContext isBehavior 
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1847
                        and:[exceptionHandlerInContext isLoaded not]) ifTrue:[
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1848
                "If the exception class is still autoloaded,
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1849
                 it does not accept our exception. Raising the exception would load the class"
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1850
                ^ nil
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1851
            ] ifFalse:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1852
                'Block [warning]: non-ExceptionHandler in on:do:on:do:-context' errorPrintCR.
8723
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  1853
            ]].
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1854
            theContext fullPrint.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1855
            ^ nil.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1856
        ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1857
        (exceptionHandlerInContext == exceptionHandler 
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1858
         or:[exceptionHandlerInContext accepts:exceptionHandler]) ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1859
            ^ theContext argAt:4.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1860
        ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1861
    ] ifFalse:[selector == #valueWithExceptionHandler: ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1862
        ^ (theContext argAt:1) handlerForSignal:exceptionHandler.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1863
    ]]].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1864
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1865
    ^ nil
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1866
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1867
    "Created: / 25.7.1999 / 19:52:58 / stefan"
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1868
    "Modified: / 26.7.1999 / 14:30:42 / stefan"
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1869
!
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1870
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1871
handlerProtectedBlock:doBlock inContext:context
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1872
    "set the block that is protected by an exception handler in context.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1873
     This is the receiver of the  #on:do: or #valueWithExceptionHandler:.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1874
     Needed for #restartDo:"
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1875
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1876
    context receiver:doBlock
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1877
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1878
    "
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1879
      [1/0] on:Error do:[:ex| ex restartDo:[55]]
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1880
    "
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1881
! !
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  1882
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1883
!Block methodsFor:'looping'!
325
claus
parents: 319
diff changeset
  1884
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1885
doUntil:aBlock
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1886
    "repeat the receiver block until aBlock evaluates to true.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1887
     The receiver is evaluated at least once.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1888
     This is the same as '... doWhile:[... not]' "
325
claus
parents: 319
diff changeset
  1889
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1890
    "this implementation is for purists ... :-)"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1891
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1892
    self value.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1893
    aBlock value ifTrue:[^ nil].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1894
    thisContext restart
325
claus
parents: 319
diff changeset
  1895
claus
parents: 319
diff changeset
  1896
    "
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1897
     |n|
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1898
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1899
     n := 1.
8602
4de3880b3d93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8440
diff changeset
  1900
     [n printCR] doUntil:[ (n := n + 1) > 5 ]
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1901
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1902
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1903
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1904
doWhile:aBlock
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1905
    "repeat the receiver block until aBlock evaluates to false.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1906
     The receiver is evaluated at least once."
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1907
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1908
    "this implementation is for purists ... :-)"
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  1909
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1910
    self value.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1911
    aBlock value ifFalse:[^ nil].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1912
    thisContext restart
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1913
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1914
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1915
     |n|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1916
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1917
     n := 1.
8602
4de3880b3d93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8440
diff changeset
  1918
     [n printCR] doWhile:[ (n := n + 1) <= 5 ]
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1919
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1920
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1921
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1922
loop
1211
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1923
    "repeat the receiver forever 
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1924
     (the receiver block should contain a return somewhere).
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1925
     The implementation below was inspired by a corresponding Self method."
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1926
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1927
    self value.
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1928
    thisContext restart
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1929
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1930
    "
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1931
     |n|
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1932
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1933
     n := 1.
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1934
     [
8602
4de3880b3d93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8440
diff changeset
  1935
        n printCR.
4de3880b3d93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8440
diff changeset
  1936
        n >= 10 ifTrue:[^ nil].
4de3880b3d93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8440
diff changeset
  1937
        n := n + 1
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1938
     ] loop
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1939
    "
1211
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1940
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1941
    "Modified: 18.4.1996 / 13:50:40 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1942
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1943
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1944
loopWithExit
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1945
    "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
  1946
     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
  1947
     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
  1948
     Inspired by a corresponding Self method."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1949
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1950
    |exitBlock|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1951
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1952
    exitBlock := [:exitValue | ^ exitValue].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1953
    [true] whileTrue:[self value:exitBlock]
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1954
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1955
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1956
     |i|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1957
     i := 1.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1958
     [:exit |
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1316
diff changeset
  1959
	Transcript showCR:i.
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1960
	i == 5 ifTrue:[exit value:'thats it'].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1961
	i := i + 1
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1962
     ] loopWithExit
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1963
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1964
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1965
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1966
repeat
1211
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1967
    "repeat the receiver forever - same as loop, for ST-80 compatibility.
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1968
      (the receiver block should contain a return somewhere)."
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1969
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1970
    self value.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1971
    thisContext restart
1211
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1972
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1973
    "Modified: 18.4.1996 / 13:50:55 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1974
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1975
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1976
valueWithExit
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1977
    "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
  1978
     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
  1979
     value:-message. Used for premature returns to the caller.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1980
     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
  1981
1211
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1982
    ^ self value:[:exitValue | ^exitValue]
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1983
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1984
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1985
     [:exit |
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
  1986
	1 to:10 do:[:i |
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
  1987
	    Transcript showCR:i.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
  1988
	    i == 5 ifTrue:[exit value:'thats it']
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
  1989
	].
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
  1990
	'regular block-value; never returned'
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1991
     ] valueWithExit
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1992
    "
1211
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1993
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  1994
    "Modified: 18.4.1996 / 13:51:38 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1995
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  1996
5215
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  1997
valueWithRestart
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  1998
    |myContext restartAction|
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  1999
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2000
    myContext := thisContext.
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2001
    restartAction := [ myContext restart ].
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2002
    ^ self value:restartAction.
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2003
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2004
    "
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2005
     [:restart |
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2006
	(self confirm:'try again ?') ifTrue:[
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2007
	    restart value.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2008
	]
5215
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2009
     ] valueWithRestart
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2010
    "
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2011
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2012
    "Modified: / 25.1.2000 / 21:47:50 / cg"
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2013
!
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2014
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2015
whileFalse
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2016
    "evaluate the receiver while it evaluates to false (ST80 compatibility)"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2017
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2018
    "this implementation is for purists ... :-)"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2019
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2020
    self value ifTrue:[^ nil].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2021
    thisContext restart
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2022
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2023
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2024
     |n|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2025
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2026
     n := 1.
8602
4de3880b3d93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8440
diff changeset
  2027
     [n printCR. (n := n + 1) > 10] whileFalse
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2028
    "
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2029
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2030
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2031
whileFalse:aBlock
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2032
    "evaluate the argument, aBlock while the receiver evaluates to false.
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2033
     - usually open coded by compilers, but needed here for #perform 
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2034
       and expression evaluation."
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2035
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2036
    "this implementation is for purists ... :-)"
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2037
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2038
    self value ifTrue:[^ nil].
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2039
    aBlock value.
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2040
    thisContext restart
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2041
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2042
    "
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2043
     |n|
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2044
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2045
     n := 1.
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2046
     [n > 10] whileFalse:[
8602
4de3880b3d93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8440
diff changeset
  2047
        n printCR.
4de3880b3d93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8440
diff changeset
  2048
        n := n + 1
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2049
     ]
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2050
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2051
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2052
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2053
whileTrue
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2054
    "evaluate the receiver while it evaluates to true (ST80 compatibility)"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2055
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2056
    "this implementation is for purists ... :-)"
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2057
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2058
    self value ifFalse:[^ nil].
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2059
    thisContext restart
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2060
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2061
    "
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2062
     |n|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2063
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2064
     n := 1.
8602
4de3880b3d93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8440
diff changeset
  2065
     [n printCR. (n := n + 1) <= 10] whileTrue
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2066
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2067
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2068
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2069
whileTrue:aBlock
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2070
    "evaluate the argument, aBlock while the receiver evaluates to true.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2071
     - usually open coded by compilers, but needed here for #perform 
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2072
       and expression evaluation."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2073
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2074
    "this implementation is for purists ... :-)"
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2075
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2076
    self value ifFalse:[^ nil].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2077
    aBlock value.
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2078
    thisContext restart
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2079
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2080
    "
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2081
     |n|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2082
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2083
     n := 1.
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2084
     [n <= 10] whileTrue:[
8602
4de3880b3d93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8440
diff changeset
  2085
        n printCR.
4de3880b3d93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8440
diff changeset
  2086
        n := n + 1
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2087
     ]
68
59faa75185ba *** empty log message ***
claus
parents: 67
diff changeset
  2088
    "
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2089
! !
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2090
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2091
!Block methodsFor:'parallel evaluation'!
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2092
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2093
futureValue
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2094
    "Fork a synchronised evaluation of myself. 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2095
     Starts the evaluation in parallel now, but synchronizes
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2096
     any access to wait until the result is computed."
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2097
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2098
    ^ Future new block:self
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2099
!
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2100
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2101
futureValue:aValue 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2102
    "Fork a synchronised evaluation of myself. 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2103
     Starts the evaluation in parallel now, but synchronizes
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2104
     any access to wait until the result is computed."
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2105
    
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2106
    ^ Future new block:self value:aValue
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2107
!
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2108
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2109
futureValue:aValue value:anotherValue 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2110
    "Fork a synchronised evaluation of myself. 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2111
     Starts the evaluation in parallel now, but synchronizes
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2112
     any access to wait until the result is computed."
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2113
    
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2114
    ^ Future new 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2115
        block:self
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2116
        value:aValue
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2117
        value:anotherValue
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2118
!
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2119
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2120
futureValue:aValue value:anotherValue value:bValue 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2121
    "Fork a synchronised evaluation of myself. 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2122
     Starts the evaluation in parallel now, but synchronizes
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2123
     any access to wait until the result is computed."
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2124
    
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2125
    ^ Future new 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2126
        block:self
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2127
        value:aValue
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2128
        value:anotherValue
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2129
        value:bValue
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2130
!
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2131
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2132
futureValueWithArguments:anArray 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2133
    "Fork a synchronised evaluation of myself. 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2134
     Starts the evaluation in parallel now, but synchronizes
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2135
     any access to wait until the result is computed."
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2136
    
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2137
    ^ Future new block:self valueWithArguments:anArray
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2138
!
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2139
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2140
lazyValue
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2141
    "Fork a synchronised evaluation of myself. Only starts
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2142
     the evaluation when the result is requested."
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2143
    
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2144
    ^ Lazy new block:self
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2145
!
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2146
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2147
lazyValue:aValue 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2148
    "Fork a synchronised evaluation of myself. Only starts
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2149
     the evaluation when the result is requested."
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2150
    
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2151
    ^ Lazy new block:self value:aValue
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2152
!
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2153
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2154
lazyValue:aValue value:anotherValue 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2155
    "Fork a synchronised evaluation of myself. Only starts
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2156
     the evaluation when the result is requested."
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2157
    
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2158
    ^ Lazy new 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2159
        block:self
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2160
        value:aValue
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2161
        value:anotherValue
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2162
!
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2163
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2164
lazyValue:aValue value:anotherValue value:bValue 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2165
    "Fork a synchronised evaluation of myself. Only starts
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2166
     the evaluation when the result is requested."
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2167
    
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2168
    ^ Lazy new 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2169
        block:self
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2170
        value:aValue
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2171
        value:anotherValue
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2172
        value:bValue
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2173
!
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2174
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2175
lazyValueWithArguments:anArray 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2176
    "Fork a synchronised evaluation of myself. Only starts
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2177
     the evaluation when the result is requested."
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2178
    
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2179
    ^ Lazy new block:self valueWithArguments:anArray
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2180
! !
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2181
92
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
  2182
!Block methodsFor:'printing & storing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2183
7151
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
  2184
printBlockBracketsOn:aStream
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
  2185
    aStream nextPutAll:'[]'. 
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
  2186
!
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
  2187
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2188
printOn:aStream
44
b262907c93ea *** empty log message ***
claus
parents: 22
diff changeset
  2189
    "append a a printed representation of the block to aStream"
b262907c93ea *** empty log message ***
claus
parents: 22
diff changeset
  2190
6633
ef36668d5c96 Remove unused method var
Stefan Vogel <sv@exept.de>
parents: 6628
diff changeset
  2191
    |h sel methodClass|
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  2192
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  2193
    "cheap blocks have no home context, but a method instead"
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  2194
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  2195
    (home isNil or:[home isContext not]) ifTrue:[
6633
ef36668d5c96 Remove unused method var
Stefan Vogel <sv@exept.de>
parents: 6628
diff changeset
  2196
        aStream nextPutAll:'[] in '.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2197
6633
ef36668d5c96 Remove unused method var
Stefan Vogel <sv@exept.de>
parents: 6628
diff changeset
  2198
        "
ef36668d5c96 Remove unused method var
Stefan Vogel <sv@exept.de>
parents: 6628
diff changeset
  2199
         currently, some cheap blocks don't know where they have been created
ef36668d5c96 Remove unused method var
Stefan Vogel <sv@exept.de>
parents: 6628
diff changeset
  2200
        "
ef36668d5c96 Remove unused method var
Stefan Vogel <sv@exept.de>
parents: 6628
diff changeset
  2201
        aStream nextPutAll:' ??? (optimized)'.
ef36668d5c96 Remove unused method var
Stefan Vogel <sv@exept.de>
parents: 6628
diff changeset
  2202
        ^ self
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  2203
    ].
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  2204
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  2205
    "a full blown block (with home, but without method)"
7151
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
  2206
    self printBlockBracketsOn:aStream.
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
  2207
    aStream nextPutAll:' in '. 
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2208
    h := self methodHome.
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2209
    sel := h selector.
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2210
"/ old:
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2211
"/    home receiver class name printOn:aStream.
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2212
"/ new:
212
3edd10edefaf *** empty log message ***
claus
parents: 161
diff changeset
  2213
"/    (h searchClass whichClassImplements:sel) name printOn:aStream.
213
3b56a17534fd *** empty log message ***
claus
parents: 212
diff changeset
  2214
    methodClass := h methodClass.
3b56a17534fd *** empty log message ***
claus
parents: 212
diff changeset
  2215
    methodClass isNil ifTrue:[
6633
ef36668d5c96 Remove unused method var
Stefan Vogel <sv@exept.de>
parents: 6628
diff changeset
  2216
        'UnboundMethod' printOn:aStream.
213
3b56a17534fd *** empty log message ***
claus
parents: 212
diff changeset
  2217
    ] ifFalse:[
6633
ef36668d5c96 Remove unused method var
Stefan Vogel <sv@exept.de>
parents: 6628
diff changeset
  2218
        methodClass name printOn:aStream.
213
3b56a17534fd *** empty log message ***
claus
parents: 212
diff changeset
  2219
    ].
7157
935eaabbe6dc printString now "... in className >> sel"
Claus Gittinger <cg@exept.de>
parents: 7151
diff changeset
  2220
    aStream nextPutAll:'>>'.
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2221
    sel printOn:aStream.
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  2222
2841
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2223
"/
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2224
"/    aStream nextPutAll:'[] in '.
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2225
"/    homeClass := home containingClass.
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2226
"/    homeClass notNil ifTrue:[
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2227
"/      homeClass name printOn:aStream.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2228
"/      aStream space.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2229
"/      (homeClass selectorForMethod:home) printOn:aStream
2841
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2230
"/    ] ifFalse:[
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2231
"/      aStream nextPutAll:' ???' 
2841
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2232
"/    ]
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2233
"/
9253
a7d4f72181f2 no storeString
sr
parents: 9145
diff changeset
  2234
!
a7d4f72181f2 no storeString
sr
parents: 9145
diff changeset
  2235
a7d4f72181f2 no storeString
sr
parents: 9145
diff changeset
  2236
storeOn:aStream
9287
9fd70605f3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9253
diff changeset
  2237
    self error:'Blocks cannot be stored (yet)' mayProceed:true.
9fd70605f3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9253
diff changeset
  2238
    self printOn:aStream.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2239
! !
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2240
7257
b9f0fb923c72 method category rename
Claus Gittinger <cg@exept.de>
parents: 7157
diff changeset
  2241
!Block methodsFor:'private-accessing'!
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2242
5766
64d22218e98b must ensure that nArgs and nVar flag setting is correct
Claus Gittinger <cg@exept.de>
parents: 5744
diff changeset
  2243
byteCode:bCode numArgs:numArgs numVars:numVars  numStack:numStack sourcePosition:srcPos initialPC:iPC literals:lits
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2244
    "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
  2245
     DANGER ALERT: this interface is strictly private."
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2246
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2247
    byteCode := bCode.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2248
    nargs := numArgs.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2249
    sourcePos := srcPos.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2250
    initialPC := iPC.
1777
150a1516ef75 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1773
diff changeset
  2251
    flags := 0.
2542
555749f035f4 need stackSize when creating blocks.
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
  2252
    self stackSize:numStack.
1493
33e226c7d187 Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2253
    self literals:lits.
5766
64d22218e98b must ensure that nArgs and nVar flag setting is correct
Claus Gittinger <cg@exept.de>
parents: 5744
diff changeset
  2254
    self numberOfArgs:numArgs.   "/ must set the compiledCode flags as well
64d22218e98b must ensure that nArgs and nVar flag setting is correct
Claus Gittinger <cg@exept.de>
parents: 5744
diff changeset
  2255
    self numberOfVars:numVars.   "/ must set the compiledCode flags as well
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2256
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2257
    "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
  2258
    "Modified: 24.6.1996 / 12:37:37 / stefan"
2542
555749f035f4 need stackSize when creating blocks.
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
  2259
    "Created: 13.4.1997 / 00:00:57 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2260
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2261
5779
d7dcb078cc74 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5767
diff changeset
  2262
initialPC 
d7dcb078cc74 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5767
diff changeset
  2263
    "return the initial pc for evaluation."
d7dcb078cc74 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5767
diff changeset
  2264
d7dcb078cc74 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5767
diff changeset
  2265
    ^ initialPC
d7dcb078cc74 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5767
diff changeset
  2266
!
d7dcb078cc74 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5767
diff changeset
  2267
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2268
initialPC:initial 
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2269
    "set the initial pc for evaluation.
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2270
     DANGER ALERT: this interface is for the compiler only."
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2271
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2272
    initialPC := initial
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2273
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2274
    "Modified: 23.4.1996 / 16:05:39 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2275
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2276
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2277
numArgs:numArgs
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2278
    "set the number of arguments the receiver expects for evaluation.
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2279
     DANGER ALERT: this interface is for the compiler only."
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2280
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2281
    nargs := numArgs
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2282
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2283
    "Modified: 23.4.1996 / 16:05:52 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2284
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2285
5744
229241968e2a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5666
diff changeset
  2286
setHome:aContext
229241968e2a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5666
diff changeset
  2287
    home := aContext
229241968e2a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5666
diff changeset
  2288
!
229241968e2a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5666
diff changeset
  2289
7323
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2290
source 
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2291
    |m|
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2292
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2293
    sourcePos isString ifTrue:[    "/ misuses the sourcePosition slot
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2294
        ^ sourcePos
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2295
    ].
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2296
    m := self method.
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2297
    m notNil ifTrue:[
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2298
        ^ m source
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2299
    ].
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2300
    ^ nil
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2301
!
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2302
6981
3061136215fc source: - temporary interface
penk
parents: 6866
diff changeset
  2303
source:aString 
3061136215fc source: - temporary interface
penk
parents: 6866
diff changeset
  2304
    "set the source - only to be used, if the block is not contained in a method.
3061136215fc source: - temporary interface
penk
parents: 6866
diff changeset
  2305
     This interface is for knowledgable users only."
3061136215fc source: - temporary interface
penk
parents: 6866
diff changeset
  2306
3061136215fc source: - temporary interface
penk
parents: 6866
diff changeset
  2307
    sourcePos := aString  "/ misuse the sourcePosition slot
3061136215fc source: - temporary interface
penk
parents: 6866
diff changeset
  2308
!
3061136215fc source: - temporary interface
penk
parents: 6866
diff changeset
  2309
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2310
sourcePosition:position 
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2311
    "set the position of the source within my method.
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2312
     This interface is for the compiler only."
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2313
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2314
    sourcePos := position
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2315
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2316
    "Modified: 23.4.1996 / 16:06:19 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2317
! !
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2318
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2319
!Block methodsFor:'privileged evaluation'!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2320
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2321
valueUninterruptably
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2322
    "evaluate the receiver with interrupts blocked.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2323
     This does not prevent preemption by a higher priority processes
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2324
     if any becomes runnable due to the evaluation of the receiver
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2325
     (i.e. if a semaphore is signalled)."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2326
2301
e3976a1e863a in valueUninterruptably:
Claus Gittinger <cg@exept.de>
parents: 2286
diff changeset
  2327
    "we must keep track of blocking-state if this is called nested"
e3976a1e863a in valueUninterruptably:
Claus Gittinger <cg@exept.de>
parents: 2286
diff changeset
  2328
    (OperatingSystem blockInterrupts) ifTrue:[
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2329
	"/ already blocked.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2330
	^ self value
2301
e3976a1e863a in valueUninterruptably:
Claus Gittinger <cg@exept.de>
parents: 2286
diff changeset
  2331
    ].
864
9d034b442868 faster uninterruptablyDo:
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
  2332
6257
f77941a61a12 Fix comments. Use #ensure: instead of #valueNowOrOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6236
diff changeset
  2333
    ^ self ensure:[OperatingSystem unblockInterrupts].
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2334
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2335
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2336
valueUnpreemptively
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2337
    "evaluate the receiver without the possiblity of preemption
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2338
     (i.e. at a very high priority)"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2339
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2340
    |oldPrio activeProcess|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2341
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2342
    activeProcess := Processor activeProcess.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2343
    oldPrio := activeProcess changePriority:(Processor highestPriority).
6257
f77941a61a12 Fix comments. Use #ensure: instead of #valueNowOrOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6236
diff changeset
  2344
    ^ self ensure:[
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2345
	activeProcess priority:oldPrio
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2346
    ]
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2347
! !
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2348
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2349
!Block methodsFor:'process creation'!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2350
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2351
fork
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2352
    "create a new process executing the receiver at the current priority."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2353
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2354
    ^ self newProcess resume
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2355
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2356
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2357
forkAt:priority
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2358
    "create a new process executing the receiver at a different priority."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2359
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2360
    ^ (self newProcess priority:priority) resume
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2361
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2362
6609
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2363
forkNamed:aString
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2364
    "create a new process, give it a name and let it start 
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2365
     executing the receiver at the current priority."
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2366
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2367
    |newProcess|
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2368
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2369
    newProcess := self newProcess. 
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2370
    newProcess name:aString.
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2371
    newProcess resume.
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2372
    ^ newProcess.
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2373
!
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2374
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2375
forkWith:argArray
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2376
    "create a new process executing the receiver,
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2377
     passing elements in argArray as arguments to the receiver block."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2378
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2379
    ^ [self valueWithArguments:argArray] fork.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2380
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2381
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2382
newProcess
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2383
    "create a new (unscheduled) process executing the receiver"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2384
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2385
    ^ Process for:self priority:(Processor activePriority)
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2386
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2387
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2388
newProcessWithArguments:argArray
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2389
    "create a new (unscheduled) process executing the receiver,
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2390
     passing the elements in argArray as arguments to the receiver block."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2391
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2392
    ^ [self valueWithArguments:argArray] newProcess
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2393
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2394
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2395
promise
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2396
    "create a promise on the receiver. The promise will evaluate the
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2397
     receiver and promise to return the value with the #value message.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2398
     The evaluation will be performed as a separate process.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2399
     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
  2400
     (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
  2401
     immediately."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2402
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2403
    ^ Promise value:self
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2404
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2405
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2406
     |p|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2407
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2408
     p := [1000 factorial] promise.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2409
     'do something else ...'.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2410
     p value
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2411
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2412
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2413
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2414
promiseAt:prio
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2415
    "create a promise on the receiver. The promise will evaluate the
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2416
     receiver and promise to return the value with the #value message.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2417
     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
  2418
     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
  2419
     (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
  2420
     immediately."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2421
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2422
    ^ Promise value:self priority:prio
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2423
! !
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2424
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2425
!Block methodsFor:'testing'!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2426
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2427
isBlock
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2428
    "return true, if this is a block - yes I am"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2429
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2430
    ^ true
2237
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2431
!
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2432
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2433
isVarArgBlock
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2434
    "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
  2435
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2436
    ^ false
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2437
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2438
    "Created: 23.1.1997 / 04:59:51 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2439
! !
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2440
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2441
!Block methodsFor:'unwinding'!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2442
4479
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  2443
unwindHandlerInContext:aContext
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  2444
    "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
  2445
     retrieve the handler block.
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  2446
     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
  2447
     #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
  2448
     methods to be added)"
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  2449
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2450
    aContext selector == #'value:onUnwindDo:' ifTrue:[
6608
fb064735d73c Comments
Stefan Vogel <sv@exept.de>
parents: 6587
diff changeset
  2451
        ^ aContext argAt:2
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2452
    ].
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2453
4479
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  2454
    "/ for now, only #valueNowOrOnUnwindDo:
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2455
    "/          or   #valueOnUnwindDo:
5666
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
  2456
    "/          or   #ensure:
6608
fb064735d73c Comments
Stefan Vogel <sv@exept.de>
parents: 6587
diff changeset
  2457
    "/          or   #ifCurtailed:
4479
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  2458
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  2459
    ^ aContext argAt:1
6257
f77941a61a12 Fix comments. Use #ensure: instead of #valueNowOrOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6236
diff changeset
  2460
! !
f77941a61a12 Fix comments. Use #ensure: instead of #valueNowOrOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6236
diff changeset
  2461
f77941a61a12 Fix comments. Use #ensure: instead of #valueNowOrOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6236
diff changeset
  2462
!Block methodsFor:'unwinding-old'!
4479
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  2463
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2464
value:arg onUnwindDo:aBlock
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2465
    "evaluate the receiver, passing it one argument
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2466
     - when some method sent within unwinds (i.e. does
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2467
     a long return), evaluate the argument, aBlock.
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2468
     This is used to make certain that cleanup actions (for example closing files etc.) are
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2469
     executed regardless of error actions"
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2470
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2471
    <exception: #unwind>
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2472
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2473
    |v|
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2474
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2475
    "/ thisContext markForUnwind. -- same as above pragma
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2476
    v := self value:arg.       "the real logic is in Context>>unwind"
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2477
    thisContext unmarkForUnwind.
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2478
    ^ v
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2479
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2480
    "
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2481
     |s|
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2482
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2483
     s := 'Makefile' asFilename readStream.
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2484
     [:arg |
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2485
	^ self
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2486
     ] value:12345 onUnwindDo:[
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2487
	Transcript showCR:'closing the stream - even though a return occurred'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2488
	s close
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2489
     ]
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2490
    "
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2491
    "
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2492
     [
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2493
	 |s|
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2494
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2495
	 s := 'Makefile' asFilename readStream.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2496
	 [:arg |
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2497
	    Processor activeProcess terminate
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2498
	 ] value:12345 onUnwindDo:[
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2499
	    Transcript showCR:'closing the stream - even though process was terminated'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2500
	    s close
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2501
	 ]
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2502
     ] fork
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2503
    "
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2504
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2505
!
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2506
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2507
valueNowOrOnUnwindDo:aBlock
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2508
    "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
  2509
     a long return), evaluate the argument, aBlock.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2510
     This is used to make certain that cleanup actions (for example closing files etc.) are
6257
f77941a61a12 Fix comments. Use #ensure: instead of #valueNowOrOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6236
diff changeset
  2511
     executed regardless of error actions.
f77941a61a12 Fix comments. Use #ensure: instead of #valueNowOrOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6236
diff changeset
  2512
     Same as the more modern #ensure:"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2513
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  2514
    <exception: #unwind>
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  2515
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2516
    |v|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2517
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  2518
    "/ thisContext markForUnwind. -- same as above pragma
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2519
    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
  2520
    thisContext unmarkForUnwind.
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2521
    aBlock value.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2522
    ^ v
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2523
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2524
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2525
     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
  2526
     returns with 'oops'. There are many more applications of this kind
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2527
     found in the system.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2528
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2529
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2530
     |f|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2531
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2532
     f := 'Makefile' asFilename readStream.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2533
     [
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2534
	l := f nextLine.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2535
	l isNil ifTrue:[^ 'oops']
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2536
     ] valueNowOrOnUnwindDo:[
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2537
	f close
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2538
     ]
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2539
    "
1187
619ff79bc665 valueNowOrOnUnwindDo: don't execute unwind block when block is currently executed 'now'.
Stefan Vogel <sv@exept.de>
parents: 1181
diff changeset
  2540
619ff79bc665 valueNowOrOnUnwindDo: don't execute unwind block when block is currently executed 'now'.
Stefan Vogel <sv@exept.de>
parents: 1181
diff changeset
  2541
    "Modified: 16.4.1996 / 11:05:26 / stefan"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2542
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2543
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2544
valueOnUnwindDo:aBlock
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2545
    "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
  2546
     a long return), evaluate the argument, aBlock.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2547
     This is used to make certain that cleanup actions (for example closing files etc.) are
6257
f77941a61a12 Fix comments. Use #ensure: instead of #valueNowOrOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6236
diff changeset
  2548
     executed regardless of error actions
f77941a61a12 Fix comments. Use #ensure: instead of #valueNowOrOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6236
diff changeset
  2549
     Same as the more modern #ifCurtailed:"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2550
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  2551
    <exception: #unwind>
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  2552
2286
e04f03c7cb75 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2241
diff changeset
  2553
    |v|
e04f03c7cb75 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2241
diff changeset
  2554
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  2555
    "/ thisContext markForUnwind. -- same as above pragma
2286
e04f03c7cb75 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2241
diff changeset
  2556
    v := self value.       "the real logic is in Context>>unwind"
e04f03c7cb75 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2241
diff changeset
  2557
    thisContext unmarkForUnwind.
e04f03c7cb75 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2241
diff changeset
  2558
    ^ v
e04f03c7cb75 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2241
diff changeset
  2559
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2560
    "
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2561
     |s|
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2562
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2563
     s := 'Makefile' asFilename readStream.
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2564
     [
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2565
	^ self
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2566
     ] valueOnUnwindDo:[
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2567
	Transcript showCR:'closing the stream - even though a return occurred'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2568
	s close
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2569
     ]
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2570
    "
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2571
    "
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2572
     [
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2573
	 |s|
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2574
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2575
	 s := 'Makefile' asFilename readStream.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2576
	 [
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2577
	    Processor activeProcess terminate
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2578
	 ] valueOnUnwindDo:[
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2579
	    Transcript showCR:'closing the stream - even though process was terminated'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2580
	    s close
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2581
	 ]
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2582
     ] fork
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2583
    "
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2584
! !
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2585
8394
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8009
diff changeset
  2586
!Block methodsFor:'visiting'!
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8009
diff changeset
  2587
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8009
diff changeset
  2588
acceptVisitor:aVisitor with:aParameter
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8009
diff changeset
  2589
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8009
diff changeset
  2590
    ^ aVisitor visitBlock:self with:aParameter
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8009
diff changeset
  2591
! !
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8009
diff changeset
  2592
1773
442d1b73ecb9 no longer allow Blocks with a dynamic-bit to be created
Claus Gittinger <cg@exept.de>
parents: 1672
diff changeset
  2593
!Block class methodsFor:'documentation'!
1181
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
  2594
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
  2595
version
9602
23539401ab1b leftover halt.
Claus Gittinger <cg@exept.de>
parents: 9486
diff changeset
  2596
    ^ '$Header: /cvs/stx/stx/libbasic/Block.st,v 1.153 2006-08-21 10:13:41 cg Exp $'
1181
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
  2597
! !
6785
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  2598
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2599
Block initialize!