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