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