MessageNode.st
author Jan Vrany <jan.vrany@labware.com>
Thu, 27 Oct 2022 14:53:59 +0100
branchjv
changeset 4735 3b11fb3ede98
parent 4728 afa674474f27
permissions -rw-r--r--
Allow single underscore as method / block argument and temporaries This commit is a follow up for 38b221e.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
     1
"
4
f6fd83437415 *** empty log message ***
claus
parents: 3
diff changeset
     2
 COPYRIGHT (c) 1989 by Claus Gittinger
4663
73191a0db2d8 Do not optimize `^ x and: y` and `^ x or: y`
Jan Vrany <jan.vrany@labware.com>
parents: 4387
diff changeset
     3
 COPYRIGHT (c) 2021 LabWare
4728
afa674474f27 Adding missing endPosition for MessageNode.
Patrik Svestka <patrik.svestka@gmail.com>
parents: 4727
diff changeset
     4
 COPYRIGHT (c) 2021 Patrik Svestka
1727
58820b0c1e7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
     5
              All Rights Reserved
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
     6
7ad01559b262 Initial revision
claus
parents:
diff changeset
     7
 This software is furnished under a license and may be used
7ad01559b262 Initial revision
claus
parents:
diff changeset
     8
 only in accordance with the terms of that license and with the
7ad01559b262 Initial revision
claus
parents:
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
7ad01559b262 Initial revision
claus
parents:
diff changeset
    10
 be provided or otherwise made available to, or used by, any
7ad01559b262 Initial revision
claus
parents:
diff changeset
    11
 other person.  No title to or ownership of the software is
7ad01559b262 Initial revision
claus
parents:
diff changeset
    12
 hereby transferred.
7ad01559b262 Initial revision
claus
parents:
diff changeset
    13
"
1045
ee448a958d19 migration support
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
    14
"{ Package: 'stx:libcomp' }"
ee448a958d19 migration support
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
    15
3573
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
    16
"{ NameSpace: Smalltalk }"
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
    17
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    18
ParseNode subclass:#MessageNode
2496
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
    19
	instanceVariableNames:'receiver selector argArray lineNr selectorPosition lines
3290
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
    20
		endLineNr endCharPosition selectorPartPositions'
1791
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
    21
	classVariableNames:''
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
    22
	poolDictionaries:''
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
    23
	category:'System-Compiler-Support'
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    24
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
    25
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
    26
!MessageNode class methodsFor:'documentation'!
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    27
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    28
copyright
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    29
"
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    30
 COPYRIGHT (c) 1989 by Claus Gittinger
4663
73191a0db2d8 Do not optimize `^ x and: y` and `^ x or: y`
Jan Vrany <jan.vrany@labware.com>
parents: 4387
diff changeset
    31
 COPYRIGHT (c) 2021 LabWare
4728
afa674474f27 Adding missing endPosition for MessageNode.
Patrik Svestka <patrik.svestka@gmail.com>
parents: 4727
diff changeset
    32
 COPYRIGHT (c) 2021 Patrik Svestka
1727
58820b0c1e7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
    33
              All Rights Reserved
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    34
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    35
 This software is furnished under a license and may be used
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    36
 only in accordance with the terms of that license and with the
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    37
 inclusion of the above copyright notice.   This software may not
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    38
 be provided or otherwise made available to, or used by, any
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    39
 other person.  No title to or ownership of the software is
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    40
 hereby transferred.
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    41
"
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    42
!
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    43
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    44
documentation
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    45
"
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    46
    node for parse-trees, representing message sends
261
0372e948ca2d commentary
Claus Gittinger <cg@exept.de>
parents: 253
diff changeset
    47
    This is a helper class for the compiler.
263
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 261
diff changeset
    48
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 261
diff changeset
    49
    [author:]
1727
58820b0c1e7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
    50
        Claus Gittinger
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    51
"
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    52
! !
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    53
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
    54
!MessageNode class methodsFor:'instance creation'!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    55
7ad01559b262 Initial revision
claus
parents:
diff changeset
    56
receiver:recNode selector:selectorString 
4221
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
    57
    ^ self receiver:recNode selector:selectorString args:nil lineno:0
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
    58
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
    59
    "Modified: / 26-03-2018 / 15:34:28 / stefan"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    60
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
    61
1266
35e2c67fbdd9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1248
diff changeset
    62
receiver:recNode selector:selectorString arg1:arg1Node arg2:arg2Node
4703
72c1195f5874 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 4554
diff changeset
    63
    "return a new MessageNode for a message with 2 arguments"
72c1195f5874 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 4554
diff changeset
    64
1266
35e2c67fbdd9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1248
diff changeset
    65
    ^ self receiver:recNode selector:selectorString arg1:arg1Node arg2:arg2Node fold:nil
35e2c67fbdd9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1248
diff changeset
    66
!
35e2c67fbdd9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1248
diff changeset
    67
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    68
receiver:recNode selector:selectorString arg1:argNode1 arg2:argNode2 fold:folding
4221
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
    69
    |result recVal argVal selector cls|
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    70
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    71
    "
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    72
     This is just a demonstration - of how complex constants can be folded.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    73
     This was inspired by some discussion in c.l.s about enhancing the language - I prefer
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    74
     enhancing the compiler ....
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    75
     The following optimization will convert '#(...) with:#(...) collect:[...]' into an array constant,
212
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 204
diff changeset
    76
     allowing constant arrays of complex objects.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    77
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    78
     Notice: this method is normally disabled - its just a demo after all.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    79
    "
212
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 204
diff changeset
    80
    folding notNil ifTrue:[
1397
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    81
        "/
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    82
        "/ do constant folding ...
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    83
        "/
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    84
        (recNode isConstant and:[argNode1 isConstant]) ifTrue:[
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    85
            "check if we can do it ..."
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    86
            selector := selectorString asSymbolIfInterned.
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    87
            selector notNil ifTrue:[
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    88
                recVal := recNode evaluate.
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    89
                (recVal respondsTo:selector) ifTrue:[
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    90
                    "
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    91
                     we could do much more here - but then, we need a dependency from
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    92
                     the folded selectors method to the method we generate code for ...
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    93
                     limit optimizations to those that will never change
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    94
                     (or - if you change them - you will crash so bad ...)
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    95
                    "
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    96
                    argVal := argNode1 evaluate.
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    97
                    ((recVal isMemberOf:Array) and:[argVal isMemberOf:Array]) ifTrue:[
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    98
                        folding == #full ifTrue:[
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    99
                            (selector == #with:collect:) ifTrue:[
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
   100
                                (argNode2 isBlock) ifTrue:[
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
   101
                                    SignalSet anySignal handle:[:ex |
1533
bff4a03d6d48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   102
                                        ^ ParseErrorNode errorString:'error in constant expression (' , ex description , ')'
1397
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
   103
                                    ] do:[
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
   104
                                        result := recVal perform:selector with:argVal with:(argNode2 evaluate).
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
   105
                                    ].
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
   106
                                    ^ ConstantNode type:(ConstantNode typeOfConstant:result) value:result
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
   107
                                ]
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
   108
                            ]
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
   109
                        ]
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
   110
                    ]
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
   111
                ]
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
   112
            ]
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
   113
        ]
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   114
    ].
4221
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   115
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   116
    cls := self.
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   117
    cls == MessageNode ifTrue:[
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   118
        "if sent to MessageNode (and not a concrete class), create concrete nodes"
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   119
        selectorString isUnarySelector ifTrue:[
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   120
            cls := UnaryNode.
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   121
        ] ifFalse:[selectorString isBinarySelector ifTrue:[
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   122
            cls := BinaryNode.
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   123
        ]].
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   124
    ].
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   125
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   126
    ^ self receiver:recNode selector:selectorString args:(Array with:argNode1 with:argNode2) lineno:0
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   127
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   128
    "Modified: / 28-06-1997 / 15:16:01 / cg"
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   129
    "Modified: / 26-03-2018 / 15:34:14 / stefan"
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   130
!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   131
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   132
receiver:recNode selector:selectorString arg:argNode
212
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 204
diff changeset
   133
    ^ self receiver:recNode selector:selectorString arg:argNode fold:nil
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   134
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
   135
7ad01559b262 Initial revision
claus
parents:
diff changeset
   136
receiver:recNode selector:selectorString arg:argNode fold:folding
212
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 204
diff changeset
   137
    |result recVal argVal selector globalName canFold|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   138
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   139
   "
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   140
     The constant folding code can usually not optimize much
639
f3dce3a697f0 inline #perform: messages with constant selector
Claus Gittinger <cg@exept.de>
parents: 627
diff changeset
   141
     - this may change when some kind of constant/macro declaration is added to smalltalk,
f3dce3a697f0 inline #perform: messages with constant selector
Claus Gittinger <cg@exept.de>
parents: 627
diff changeset
   142
     so that constant classVars can be inlined.
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   143
    "
3583
03a93dbf05fa class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3573
diff changeset
   144
    (folding notNil and:[ folding ~~ false]) ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   145
        selector := selectorString asSymbolIfInterned.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   146
        selector notNil ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   147
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   148
            "/
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   149
            "/ do constant folding ...
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   150
            "/
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   151
            canFold := false.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   152
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   153
            (recNode isGlobal and:[argNode isConstant]) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   154
                globalName := recNode name.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   155
                recVal := recNode evaluate.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   156
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   157
                (globalName = 'SmallInteger') ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   158
                    ( #( bitMaskFor: ) includes:selector)
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   159
                    ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   160
                        canFold := true
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   161
                    ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   162
                ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   163
            ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   164
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   165
            (recNode isConstant and:[argNode isConstant]) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   166
                "check if we can do it ..."
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   167
                recVal := recNode evaluate.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   168
                "
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   169
                 we could do much more here - but then, we need a dependency from
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   170
                 the folded selectors method to the method we generate code for ...
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   171
                 limit optimizations to those that will never change
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   172
                 (or - if you change them - you will crash so bad ...)
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   173
                "
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   174
                argVal := argNode evaluate.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   175
                (recVal respondsToArithmetic and:[argVal respondsToArithmetic]) ifTrue:[
2197
c92fee01c220 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2102
diff changeset
   176
                    ( #( + - * / // \\ min: max: quo: raisedTo:) includes:selector) ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   177
                        (#( / // \\ ) includes:selector) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   178
                            argVal = 0 ifTrue:[
1533
bff4a03d6d48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   179
                                ^ ParseErrorNode errorString:'division by zero in constant expression'
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   180
                            ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   181
                        ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   182
                        canFold := true
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   183
                    ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   184
                    ( #( @ ) includes:selector) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   185
                        canFold := (folding == #full)
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   186
                    ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   187
                ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   188
                (recVal isInteger and:[argVal isInteger]) ifTrue:[
1017
c923ff9f397e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 993
diff changeset
   189
                    ( #( bitShift: bitOr: bitAnd: ) includes:selector) ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   190
                        canFold := true
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   191
                    ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   192
                ].
3502
4002c7b6b01d class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   193
                (recVal isSingleByteString) ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   194
                    (argVal isInteger and:[selector == #at:]) ifTrue:[
993
902eec8d132b oops - folding argument is not always a symbol.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   195
                        canFold := folding isSymbol
902eec8d132b oops - folding argument is not always a symbol.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   196
                                   and:[(folding >= #level2) or:[folding == #full]].
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   197
                    ].
1093
41e224d479b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1080
diff changeset
   198
                    selector == #',' ifTrue:[
3502
4002c7b6b01d class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   199
                        (argVal isSingleByteString) ifTrue:[
1093
41e224d479b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1080
diff changeset
   200
                            canFold := folding isSymbol
41e224d479b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1080
diff changeset
   201
                                       and:[(folding >= #level2) or:[folding == #full]].
41e224d479b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1080
diff changeset
   202
                        ].
41e224d479b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1080
diff changeset
   203
                        (argVal isMemberOf:Character) ifTrue:[
41e224d479b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1080
diff changeset
   204
                            canFold := folding isSymbol
41e224d479b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1080
diff changeset
   205
                                       and:[(folding >= #level2) or:[folding == #full]].
41e224d479b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1080
diff changeset
   206
                        ].
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   207
                    ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   208
                ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   209
            ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   210
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   211
            canFold ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   212
                (recVal respondsTo:selector) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   213
                    SignalSet anySignal handle:[:ex |
1533
bff4a03d6d48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   214
                        ^ ParseErrorNode errorString:'error in constant expression (' , ex description , ')'
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   215
                    ] do:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   216
                        result := recVal perform:selector with:argVal.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   217
                    ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   218
                    ^ ConstantNode type:(ConstantNode typeOfConstant:result) value:result
2617
160ca364f3d3 More fixes for start/end position
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2610
diff changeset
   219
                                   from: recNode startPosition to: argNode endPosition
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   220
                ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   221
            ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   222
        ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   223
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   224
        "/
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   225
        "/ #perform with a constant selector
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   226
        "/
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   227
        (selector == #perform: 
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   228
        and:[argNode isConstant]) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   229
            argVal := argNode evaluate.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   230
            argVal isSymbol ifTrue:[
2620
25babff22da4 start/end position fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2617
diff changeset
   231
                ^ (UnaryNode receiver:recNode selector:argVal fold:folding)
25babff22da4 start/end position fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2617
diff changeset
   232
                    startPosition: recNode startPosition endPosition: argNode endPosition.
25babff22da4 start/end position fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2617
diff changeset
   233
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   234
            ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   235
        ].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   236
    ].
212
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 204
diff changeset
   237
4221
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   238
    ^ self receiver:recNode selector:selectorString args:(Array with:argNode) lineno:0
576
5cb4af0eea67 also inline and:/or: ...
Claus Gittinger <cg@exept.de>
parents: 574
diff changeset
   239
2617
160ca364f3d3 More fixes for start/end position
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2610
diff changeset
   240
    "Modified: / 16-11-1999 / 21:50:33 / cg"
2620
25babff22da4 start/end position fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2617
diff changeset
   241
    "Modified: / 01-08-2011 / 12:31:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4221
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   242
    "Modified: / 26-03-2018 / 15:34:03 / stefan"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   243
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
   244
7ad01559b262 Initial revision
claus
parents:
diff changeset
   245
receiver:recNode selector:selectorString args:anArray
212
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 204
diff changeset
   246
    ^ self receiver:recNode selector:selectorString args:anArray fold:nil
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   247
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
   248
7ad01559b262 Initial revision
claus
parents:
diff changeset
   249
receiver:recNode selector:selectorString args:argArray fold:folding
639
f3dce3a697f0 inline #perform: messages with constant selector
Claus Gittinger <cg@exept.de>
parents: 627
diff changeset
   250
    |numArgs arg1 arg1Val|
117
claus
parents: 111
diff changeset
   251
212
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 204
diff changeset
   252
    folding notNil ifTrue:[
715
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   253
        numArgs := argArray size.
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   254
        numArgs > 0 ifTrue:[
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   255
            arg1 := (argArray at:1).
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   256
            (numArgs == 1) ifTrue:[
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   257
                ^ self receiver:recNode selector:selectorString arg:arg1 fold:folding 
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   258
            ].
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   259
715
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   260
            "/
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   261
            "/ #perform:... with a constant selector
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   262
            "/
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   263
            numArgs <= 6 ifTrue:[
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   264
                (#(nil
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   265
                   #'perform:with:'
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   266
                   #'perform:with:with:'
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   267
                   #'perform:with:with:with:'
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   268
                   #'perform:with:with:with:with:'
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   269
                   #'perform:with:with:with:with:with:'
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   270
                   #'perform:with:with:with:with:with:with:'
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   271
                ) at:numArgs) = selectorString 
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   272
                ifTrue:[
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   273
                    arg1 isConstant ifTrue:[    
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   274
                        arg1Val := arg1 evaluate.
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   275
                        arg1Val isSymbol ifTrue:[
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   276
                            ^ MessageNode 
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   277
                                    receiver:recNode 
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   278
                                    selector:arg1Val
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   279
                                    args:(argArray copyFrom:2)
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   280
                                    fold:folding
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   281
                        ]
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   282
                    ]
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   283
                ]
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   284
            ].
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   285
        ].
639
f3dce3a697f0 inline #perform: messages with constant selector
Claus Gittinger <cg@exept.de>
parents: 627
diff changeset
   286
715
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   287
        (numArgs == 2) ifTrue:[
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   288
            ^ self receiver:recNode selector:selectorString arg1:arg1 arg2:(argArray at:2) fold:folding 
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   289
        ].
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   290
        numArgs > Method maxNumberOfArguments ifTrue:[
1533
bff4a03d6d48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   291
            ^ ParseErrorNode errorString:'too many arguments for current VM implementation'.
715
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   292
        ].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   293
    ].
117
claus
parents: 111
diff changeset
   294
4221
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   295
    ^ self receiver:recNode selector:selectorString args:argArray lineno:0
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   296
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   297
    "Modified: / 03-09-1995 / 16:41:39 / claus"
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   298
    "Modified: / 15-05-1998 / 15:32:05 / cg"
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   299
    "Modified: / 26-03-2018 / 15:33:42 / stefan"
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   300
!
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   301
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   302
receiver:recNode selector:selectorString args:argArray lineno:lineNo
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   303
    |cls|
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   304
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   305
    cls := self.
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   306
    cls == MessageNode ifTrue:[
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   307
        "if sent to MessageNode (and not a concrete class), create concrete nodes"
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   308
        selectorString isUnarySelector ifTrue:[
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   309
            cls := UnaryNode.
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   310
        ] ifFalse:[selectorString isBinarySelector ifTrue:[
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   311
            cls := BinaryNode.
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   312
        ]].
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   313
    ].
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   314
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   315
    ^ cls basicNew receiver:recNode selector:selectorString args:argArray lineno:lineNo
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   316
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   317
    "Created: / 26-03-2018 / 15:33:29 / stefan"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   318
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
   319
4472
83c94dd5577b #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4395
diff changeset
   320
!MessageNode methodsFor:'RBParser compatibility'!
83c94dd5577b #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4395
diff changeset
   321
83c94dd5577b #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4395
diff changeset
   322
buildSelectorString
83c94dd5577b #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4395
diff changeset
   323
    "for RBParser compat."
83c94dd5577b #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4395
diff changeset
   324
83c94dd5577b #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4395
diff changeset
   325
    ^ selector
83c94dd5577b #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4395
diff changeset
   326
! !
83c94dd5577b #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4395
diff changeset
   327
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   328
!MessageNode methodsFor:'accessing'!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   329
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   330
arg1
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   331
    ^ argArray at:1
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   332
!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   333
1639
65686abde429 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   334
arg2
65686abde429 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   335
    ^ argArray at:2
65686abde429 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   336
!
65686abde429 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   337
4299
659a874f103a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   338
arg3
659a874f103a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   339
    ^ argArray at:3
659a874f103a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   340
659a874f103a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   341
    "Created: / 30-08-2018 / 13:03:59 / Claus Gittinger"
659a874f103a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   342
!
659a874f103a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   343
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   344
args
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   345
    ^ argArray
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   346
!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   347
543
de47f8969fd9 more ST80 compatible enumeration
Claus Gittinger <cg@exept.de>
parents: 539
diff changeset
   348
arguments
de47f8969fd9 more ST80 compatible enumeration
Claus Gittinger <cg@exept.de>
parents: 539
diff changeset
   349
    ^ argArray ? #()
de47f8969fd9 more ST80 compatible enumeration
Claus Gittinger <cg@exept.de>
parents: 539
diff changeset
   350
de47f8969fd9 more ST80 compatible enumeration
Claus Gittinger <cg@exept.de>
parents: 539
diff changeset
   351
    "Created: 19.6.1997 / 17:31:14 / cg"
de47f8969fd9 more ST80 compatible enumeration
Claus Gittinger <cg@exept.de>
parents: 539
diff changeset
   352
    "Modified: 19.6.1997 / 17:32:25 / cg"
de47f8969fd9 more ST80 compatible enumeration
Claus Gittinger <cg@exept.de>
parents: 539
diff changeset
   353
!
de47f8969fd9 more ST80 compatible enumeration
Claus Gittinger <cg@exept.de>
parents: 539
diff changeset
   354
2496
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   355
endCharPosition
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   356
    ^ endCharPosition
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   357
!
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   358
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   359
endCharPosition:something
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   360
    endCharPosition := something.
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   361
!
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   362
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   363
endLineNr
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   364
    ^ endLineNr
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   365
!
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   366
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   367
endLineNr:something
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   368
    endLineNr := something.
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   369
!
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   370
4347
91326875053c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4299
diff changeset
   371
javaScriptSelector
91326875053c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4299
diff changeset
   372
    ^ self selector
91326875053c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4299
diff changeset
   373
91326875053c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4299
diff changeset
   374
    "Created: / 14-02-2019 / 14:38:08 / Claus Gittinger"
91326875053c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4299
diff changeset
   375
!
91326875053c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4299
diff changeset
   376
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   377
lineNumber
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   378
     ^ lineNr
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   379
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
   380
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   381
lineNumber:num
3467
ecc8ee9a1a0a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   382
    lineNr := num.
ecc8ee9a1a0a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   383
    self assert:(lineNr >= 0)
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   384
!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   385
2496
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   386
lines
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   387
    ^ lines
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   388
!
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   389
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   390
lines:something
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   391
    lines := something.
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   392
!
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   393
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   394
receiver
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   395
    ^ receiver
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   396
!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   397
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   398
receiver:r selector:s args:a lineno:l
3290
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   399
    receiver notNil ifTrue:[ receiver parent: nil].
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   400
    receiver := r.
3290
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   401
    receiver notNil ifTrue:[
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   402
        receiver parent notNil ifTrue:[self breakPoint:#cg].
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   403
        receiver parent: self
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   404
    ].
1500
3c4cb012b24b Lazy conversion of selector strings to symbols.
Stefan Vogel <sv@exept.de>
parents: 1480
diff changeset
   405
2610
398820190422 More fixes to keep node position in the source. Not yet fully implemented
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2601
diff changeset
   406
    startPosition := receiver startPosition.
4728
afa674474f27 Adding missing endPosition for MessageNode.
Patrik Svestka <patrik.svestka@gmail.com>
parents: 4727
diff changeset
   407
    endPosition := receiver endPosition.
2610
398820190422 More fixes to keep node position in the source. Not yet fully implemented
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2601
diff changeset
   408
4519
3193f6d9f790 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4512
diff changeset
   409
    "/ create the symbol only, if the symbol is already known in the system.
3193f6d9f790 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4512
diff changeset
   410
    "/ otherwise a lot of partial symbols will be created by the SyntaxHighlighter
3193f6d9f790 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4512
diff changeset
   411
    "/ during typing
3193f6d9f790 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4512
diff changeset
   412
    "/    selector := s asSymbol.
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
   413
    selector := s asSymbolIfInternedOrSelf.
1500
3c4cb012b24b Lazy conversion of selector strings to symbols.
Stefan Vogel <sv@exept.de>
parents: 1480
diff changeset
   414
3336
1b4396f06cbf class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3330
diff changeset
   415
    argArray notNil ifTrue:[argArray do:[:each| each parent:nil]].
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   416
    argArray := a.
2865
cc62390767a2 changed: #receiver:selector:args:lineno:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2849
diff changeset
   417
    "JV@2012-04-20: I hate this #Error being returned. We should not
cc62390767a2 changed: #receiver:selector:args:lineno:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2849
diff changeset
   418
     be lazy to create a new class - ErrorNode. Results in a mess!!"
cc62390767a2 changed: #receiver:selector:args:lineno:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2849
diff changeset
   419
    argArray ~~ #Error ifTrue:[
2869
819a9e78f728 changed: #receiver:selector:args:lineno:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2865
diff changeset
   420
        argArray notEmptyOrNil ifTrue:[
4530
f26778a28667 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 4519
diff changeset
   421
            argArray do:[:each| each isSymbol ifFalse:[each parent:self]].
f26778a28667 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 4519
diff changeset
   422
            argArray last isSymbol ifFalse:[
f26778a28667 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 4519
diff changeset
   423
                endPosition := argArray last endPosition ? endPosition.
f26778a28667 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 4519
diff changeset
   424
            ].
3336
1b4396f06cbf class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3330
diff changeset
   425
        ].
2610
398820190422 More fixes to keep node position in the source. Not yet fully implemented
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2601
diff changeset
   426
    ].
398820190422 More fixes to keep node position in the source. Not yet fully implemented
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2601
diff changeset
   427
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   428
    lineNr := l.
3467
ecc8ee9a1a0a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   429
    self assert:(lineNr >= 0).
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   430
    self checkInlinability.
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   431
2601
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
   432
    "Modified: / 02-07-1997 / 17:01:24 / cg"
2869
819a9e78f728 changed: #receiver:selector:args:lineno:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2865
diff changeset
   433
    "Modified: / 08-05-2012 / 17:07:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
   434
    "Modified: / 19-07-2018 / 14:09:59 / Stefan Vogel"
4728
afa674474f27 Adding missing endPosition for MessageNode.
Patrik Svestka <patrik.svestka@gmail.com>
parents: 4727
diff changeset
   435
    "Modified: / 23-11-2021 / 10:24:10 / Patrik Svestka <patrik.svestka@gmail.com>"
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   436
!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   437
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   438
selector
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   439
    ^ selector
595
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   440
!
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   441
1384
0db9682870d9 evaluate -> evaluateIn:
Claus Gittinger <cg@exept.de>
parents: 1382
diff changeset
   442
selector:s
4519
3193f6d9f790 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4512
diff changeset
   443
    "/ create the symbol only, if the symbol is already known in the system.
3193f6d9f790 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4512
diff changeset
   444
    "/ otherwise a lot of partial symbols will be created by the SyntaxHighlighter
3193f6d9f790 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4512
diff changeset
   445
    "/ during typing
3193f6d9f790 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4512
diff changeset
   446
    "/    selector := s asSymbol.
3193f6d9f790 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4512
diff changeset
   447
    selector := s asSymbolIfInternedOrSelf.
1384
0db9682870d9 evaluate -> evaluateIn:
Claus Gittinger <cg@exept.de>
parents: 1382
diff changeset
   448
!
0db9682870d9 evaluate -> evaluateIn:
Claus Gittinger <cg@exept.de>
parents: 1382
diff changeset
   449
3290
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   450
selectorPartPositions
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   451
    ^ selectorPartPositions
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   452
!
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   453
4395
a22b835bed4e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4389
diff changeset
   454
selectorPartPositions:aCollectionOfIntervals
a22b835bed4e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4389
diff changeset
   455
    selectorPartPositions := aCollectionOfIntervals.
a22b835bed4e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4389
diff changeset
   456
a22b835bed4e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4389
diff changeset
   457
    "Modified (format): / 20-03-2019 / 20:51:09 / Claus Gittinger"
3290
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   458
!
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   459
595
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   460
selectorPosition
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   461
    "return the value of the instance variable 'selectorPosition' (automatically generated)"
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   462
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   463
    ^ selectorPosition
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   464
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   465
    "Created: 5.8.1997 / 02:49:27 / cg"
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   466
!
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   467
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   468
selectorPosition:something
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   469
    "set the value of the instance variable 'selectorPosition' (automatically generated)"
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   470
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   471
    selectorPosition := something.
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   472
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   473
    "Created: 5.8.1997 / 02:49:27 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   474
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
   475
7ad01559b262 Initial revision
claus
parents:
diff changeset
   476
!MessageNode methodsFor:'checks'!
7ad01559b262 Initial revision
claus
parents:
diff changeset
   477
1626
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   478
checkCondition
3310
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   479
    "check ifTrue/ifFalse for plausibility.
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   480
     TODO: rewite to use lint/lint rules and apply them before accepting"
2489
da5775ff9f1f comment
Michael Beyl <mb@exept.de>
parents: 2429
diff changeset
   481
2102
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   482
    |args lastArg receiverSelector or1 or2|
1626
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   483
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   484
    receiver isBlock ifTrue:[
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   485
        (Block canUnderstand:selector) ifFalse:[
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   486
            ^ 'blocks usually do not respond to ' , selector , ' messages'
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   487
        ].
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   488
    ].
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   489
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   490
    "/ (rr keyw:ra = a) ifTrue:[ ...]
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   491
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   492
    receiver isMessage ifTrue:[
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   493
        (receiver numArgs > 0) ifTrue:[
3330
6abed184183c class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3317
diff changeset
   494
            receiverSelector := receiver selector.
3869
09e8c7e4e171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3679
diff changeset
   495
            (receiverSelector isKeywordSelector) ifTrue:[
1626
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   496
                (args := receiver arguments) notEmptyOrNil ifTrue:[
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   497
                    (lastArg := args last) isMessage ifTrue:[
1989
e6a763ac2587 oops - parenthesized was written with typo
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
   498
                        lastArg parenthesized ifFalse:[
1626
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   499
                            (#( #'=' #'~=' #'==' #'~~' '>' '<' '>=' '<=') 
1629
8f69fe5b0fea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1628
diff changeset
   500
                            includes:(lastArg selector asSymbol)) ifTrue:[
1628
9641d61e717f precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1627
diff changeset
   501
                                ^ 'possible precedence error in condition (missing parenthesis ?)'
1626
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   502
                            ]
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   503
                        ]
2102
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   504
                    ].
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   505
                ].
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   506
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   507
                (selector == #ifFalse: or:[ selector == #ifFalse:ifTrue: ]) ifTrue:[
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   508
                    receiverSelector == #or: ifTrue:[
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   509
                        or1 := receiver receiver.    
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   510
                        or2 := receiver arg1.
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   511
                        (or1 isMessage and:[or1 selector = '~~']) ifTrue:[
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   512
                            (or2 isBlock 
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   513
                            and:[ or2 isSingleExpressionBlock
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   514
                            and:[ or2 statements expression isMessage 
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   515
                            and:[ or2 statements expression selector = '~~']]]) ifTrue:[
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   516
                                ^ 'please use "((...==...) and:[...==...]) ifTrue:" here\\(are you obfuscating by purpose ?)'
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   517
                            ].
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   518
                        ].
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   519
                    ].
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   520
                ].
1626
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   521
            ]
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   522
        ].
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   523
    ].
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   524
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   525
    ^ nil
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   526
!
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   527
2208
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   528
checkGlobalFromNameSpaceConflictFor:aNode
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   529
    "check if aNode is a local-nameSpace's variable,
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   530
     which hides a global from Smalltalk with the same name.
3310
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   531
     This is especially bad for Error handle: do:... 
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   532
     TODO: rewite to use lint/lint rules and apply them before accepting"
2208
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   533
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   534
    |fullName shortName|
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   535
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   536
    aNode isGlobalVariable ifTrue:[
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   537
        fullName := aNode name.
3409
1e083fdee371 class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3385
diff changeset
   538
        shortName := (Class nameWithoutPrefix:fullName) asSymbolIfInterned.
1e083fdee371 class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3385
diff changeset
   539
        (shortName ~= fullName and:[shortName notNil]) ifTrue:[
2208
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   540
            (Smalltalk includesKey:shortName) ifTrue:[
4138
f5d3b5441a87 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
   541
                ^ '\Possible name conflict: local "%1" vs. "Smalltalk::%1"\The value here is %2.\The value in Smalltalk is %3.' 
f5d3b5441a87 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
   542
                    bindWith:shortName
f5d3b5441a87 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
   543
                    with:(Smalltalk at:fullName asSymbol) printString
f5d3b5441a87 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
   544
                    with:(Smalltalk at:shortName) printString.
2208
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   545
            ].
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   546
        ].
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   547
    ].
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   548
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   549
    ^ nil.
4138
f5d3b5441a87 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
   550
f5d3b5441a87 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
   551
    "Modified: / 08-03-2017 / 12:01:46 / cg"
2208
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   552
!
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   553
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   554
checkIdentityCompare
3310
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   555
    "check #== applied to Floats, Strings or Fractions
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   556
     TODO: rewite to use lint/lint rules and apply them before accepting"
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   557
2208
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   558
    |rec arg1 arg1Value operand|
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   559
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   560
    ((selector == #==) or:[selector == #~~]) ifTrue:[
4371
4b418ce7d687 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4347
diff changeset
   561
        (argArray size ~~ 0) ifTrue:[
2208
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   562
            arg1 := argArray at:1
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   563
        ].
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   564
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   565
        "
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   566
         it once took me almost an hour, to find a '==' which
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   567
         should have been an '=' (you cannot compare floats with ==)
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   568
         (well, I looked at the '==' at least 50 times -
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   569
          - but didn't think about it ...).
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   570
         that's reason enough to add this check here.
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   571
         I will add more as heuristic knowledge increases ...
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   572
         (send me comments on common programming errors...)
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   573
        "
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   574
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   575
        receiver isConstant ifTrue:[
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   576
            rec := receiver evaluate.
3502
4002c7b6b01d class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   577
            ((rec isSingleByteString) or:[
2208
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   578
             (rec isMemberOf:Float) or:[
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   579
             (rec isMemberOf:Fraction)]]) ifTrue:[
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   580
                operand := rec
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   581
            ].
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   582
        ].
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   583
        arg1 isConstant ifTrue:[
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   584
            arg1Value := arg1 evaluate.
3502
4002c7b6b01d class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   585
            ((arg1Value isSingleByteString) or:[
2208
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   586
             (arg1Value isMemberOf:Float) or:[
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   587
             (arg1Value isMemberOf:Fraction)]]) ifTrue:[
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   588
                operand := arg1Value
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   589
            ].
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   590
        ].
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   591
        operand notNil ifTrue:[
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   592
            (selector == #==) ifTrue:[
2849
fa7f159cbbb0 changed: #checkIdentityCompare
Claus Gittinger <cg@exept.de>
parents: 2620
diff changeset
   593
                ^ 'identity compare is unsafe here (will usually return false here. Consider changing to "=")'
2208
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   594
            ].
2849
fa7f159cbbb0 changed: #checkIdentityCompare
Claus Gittinger <cg@exept.de>
parents: 2620
diff changeset
   595
            ^ 'identity compare is unsafe here (will usually return true here. Consider changing to "~=")'
2208
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   596
        ]
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   597
    ].
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   598
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   599
    ^ nil
2849
fa7f159cbbb0 changed: #checkIdentityCompare
Claus Gittinger <cg@exept.de>
parents: 2620
diff changeset
   600
fa7f159cbbb0 changed: #checkIdentityCompare
Claus Gittinger <cg@exept.de>
parents: 2620
diff changeset
   601
    "Modified: / 08-03-2012 / 01:07:33 / cg"
4371
4b418ce7d687 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4347
diff changeset
   602
    "Modified: / 01-03-2019 / 15:59:19 / Claus Gittinger"
2208
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   603
!
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   604
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   605
checkInlinability
3310
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   606
    "early check for possible inlinability.
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   607
     TODO: rewite to use lint/lint rules and apply them before accepting"
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   608
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   609
    |numArgs arg1 arg2 arg3|
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   610
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   611
    (numArgs := argArray size) >= 1 ifTrue:[
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   612
        arg1 := argArray at:1.
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   613
    ].
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   614
    numArgs == 0 ifTrue:[
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   615
        (selector == #whileTrue 
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   616
        or:[selector == #whileFalse]) ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   617
            receiver isBlock ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   618
                receiver possiblyInlined:true
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   619
            ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   620
        ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   621
        (selector == #value) ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   622
            receiver isBlock ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   623
                receiver possiblyInlined:true
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   624
            ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   625
        ].
1425
4f698bf5ff76 inline [...] loop
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
   626
        ((selector == #repeat) or:[selector == #loop]) ifTrue:[
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   627
            receiver isBlock ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   628
                receiver possiblyInlined:true
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   629
            ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   630
        ].
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   631
    ].
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   632
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   633
    numArgs == 1 ifTrue:[
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   634
        (selector == #or: 
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   635
        or:[selector == #and:]) ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   636
            arg1 isBlock ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   637
                arg1 possiblyInlined:true
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   638
            ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   639
        ].
576
5cb4af0eea67 also inline and:/or: ...
Claus Gittinger <cg@exept.de>
parents: 574
diff changeset
   640
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   641
        (selector == #ifTrue: 
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
   642
        or:[selector == #ifFalse:
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
   643
        or:[selector == #ifNil:
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
   644
        or:[selector == #ifNotNil:]]]) ifTrue:[
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   645
            arg1 isBlock ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   646
                arg1 possiblyInlined:true
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   647
            ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   648
        ].
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   649
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   650
        (selector == #whileTrue: 
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   651
        or:[selector == #whileFalse:]) ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   652
            arg1 isBlock ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   653
                arg1 possiblyInlined:true
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   654
            ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   655
            receiver isBlock ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   656
                receiver possiblyInlined:true
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   657
            ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   658
        ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   659
        selector == #timesRepeat: ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   660
            arg1 isBlock ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   661
                arg1 possiblyInlined:true withSelector:selector.
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   662
            ]
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   663
        ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   664
        ^ self
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   665
    ].
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   666
    numArgs >= 2 ifTrue:[
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   667
        arg2 := argArray at:2.
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   668
    ].    
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   669
    numArgs == 2 ifTrue:[
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   670
        (selector == #ifTrue:ifFalse:
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
   671
        or:[selector == #ifFalse:ifTrue:
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
   672
        or:[selector == #ifNil:ifNotNil:
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
   673
        or:[selector == #ifNotNil:ifNil:]]]) ifTrue:[
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   674
            (arg1 isBlock 
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   675
            and:[arg2 isBlock]) ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   676
                arg1 possiblyInlined:true.
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   677
                arg2 possiblyInlined:true.
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   678
            ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   679
        ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   680
        selector == #to:do: ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   681
            arg2 isBlock ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   682
                arg2 possiblyInlined:true withSelector:selector.
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   683
            ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   684
        ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   685
        ^ self
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   686
    ].
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   687
    numArgs >= 3 ifTrue:[
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   688
        arg3 := argArray at:3.
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   689
    ].    
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   690
    numArgs == 3 ifTrue:[
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   691
        selector == #to:by:do: ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   692
            arg3 isBlock ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   693
                arg3 possiblyInlined:true withSelector:selector.
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   694
            ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   695
        ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   696
        ^ self
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   697
    ].
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   698
    ^ self
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   699
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   700
    "Created: / 2.7.1997 / 17:01:10 / cg"
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   701
    "Modified: / 2.4.1998 / 19:08:54 / cg"
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   702
!
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   703
2096
b993f62fab49 alreadyWarned selectors
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
   704
plausibilityCheckIn:aParser
3310
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   705
    "some useful checks applied when accepting in a browser.
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   706
     TODO: rewite to use lint/lint rules and apply them before accepting"
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   707
2208
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   708
    |arg1 msg|
902
4ceee83e5e07 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
   709
4371
4b418ce7d687 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4347
diff changeset
   710
    (argArray size ~~ 0) ifTrue:[
902
4ceee83e5e07 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
   711
        arg1 := argArray at:1
4ceee83e5e07 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
   712
    ].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   713
3
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
   714
    "
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
   715
     check #== applied to Floats, Strings or Fractions
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   716
    "
7ad01559b262 Initial revision
claus
parents:
diff changeset
   717
    ((selector == #==) or:[selector == #~~]) ifTrue:[
2208
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   718
        (msg := self checkIdentityCompare) notNil ifTrue:[^ msg].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   719
    ].
3
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
   720
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
   721
    "
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   722
     [...] ifTrue:...
3
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
   723
     an error often occuring when you are a beginner ...
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
   724
    "
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
   725
    ((selector == #ifTrue:) or:[selector == #ifFalse:]) ifTrue:[
1626
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   726
        (msg := self checkCondition) notNil ifTrue:[^ msg].
3
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
   727
    ].
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   728
    ((selector == #ifTrue:ifFalse:) or:[selector == #ifFalse:ifTrue:]) ifTrue:[
1626
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   729
        (msg := self checkCondition) notNil ifTrue:[^ msg].
3
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
   730
    ].
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   731
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   732
    "
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   733
     (...) whileTrue:[
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   734
    "
3
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
   735
    ((selector == #whileTrue:) or:[selector == #whileFalse:]) ifTrue:[
2028
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   736
        (receiver isBlock not and:[ receiver parenthesized ]) ifTrue:[
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   737
            "/ only warn, if code was originally parenthized
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   738
            ^ 'will fail at runtime, if receiver of ' , selector , ' does not evaluate to a block or respond reasonable to #value'
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
   739
        ].
902
4ceee83e5e07 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
   740
        arg1 isBlock ifFalse:[
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
   741
            ^ 'will fail at runtime, if argument to ' , selector , ' does not evaluate to a block or respond reasonable to #value'
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
   742
        ].
3
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
   743
    ].
902
4ceee83e5e07 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
   744
2028
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   745
    "
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   746
     [...] ensure:[...]
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   747
    "
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   748
    ((selector == #ensure:) or:[(selector == #ifCurtailed:)]) ifTrue:[
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   749
        (receiver isBlock not and:[ receiver parenthesized ]) ifTrue:[
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   750
            "/ only warn, if code was originally parenthized
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   751
            ^ 'will fail at runtime, if receiver of ' , selector , ' does not evaluate to a block or respond reasonable to #value'
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   752
        ].
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   753
        (arg1 isBlock not and:[ arg1 parenthesized ]) ifTrue:[
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   754
            ^ 'will fail at runtime, if receiver of ' , selector , ' does not evaluate to a block or respond reasonable to #value'
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   755
        ].
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   756
        (arg1 isBlock and:[arg1 isEmptyBlock]) ifTrue:[
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   757
            ^ 'useless ensure (empty block)'
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   758
        ].
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   759
    ].
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   760
905
9d5500bffa74 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
   761
    argArray size > 0 ifTrue:[
9d5500bffa74 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
   762
        "/ check for a beginners error (using super as arg)
9d5500bffa74 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
   763
        "/ as in (something ? super) foo
3310
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   764
        "/ let him know, that this will not be a "super foo"
4137
0954014c1068 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
   765
        argArray do:[:arg | 
0954014c1068 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
   766
            arg isSuper ifTrue:[
0954014c1068 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
   767
                ^ 'super special semantic only with receiver of message sends'
0954014c1068 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
   768
            ]
0954014c1068 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
   769
        ].
905
9d5500bffa74 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
   770
    ].
1154
8c8787349aaf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1134
diff changeset
   771
2208
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   772
    (selector = #'handle:do:' 
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   773
    or:[ selector = #'handle:from:do:'
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   774
    or:[ selector = #'ignoreIn:'
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   775
    or:[ selector = #'catch:' ]]]) ifTrue:[
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   776
        (msg := self checkGlobalFromNameSpaceConflictFor:receiver) notNil ifTrue:[^ msg].
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   777
    ].
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   778
    (selector = #'on:do:'
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   779
    or:[ selector = #'on:do:ensure:'
3679
c76366470cc9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 3677
diff changeset
   780
    or:[ selector = #'on:do:ifCurtailed:'
c76366470cc9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 3677
diff changeset
   781
    or:[ selector = #'on:do:on:do:' ]]]) ifTrue:[
2208
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   782
        (msg := self checkGlobalFromNameSpaceConflictFor:arg1) notNil ifTrue:[^ msg].
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   783
    ].
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   784
1154
8c8787349aaf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1134
diff changeset
   785
"/    receiver isBlock ifTrue:[
8c8787349aaf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1134
diff changeset
   786
"/        ([] respondsTo:selector) ifFalse:[
8c8787349aaf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1134
diff changeset
   787
"/            ^ 'blocks do not respond to ' , selector , '; Missing ''.'' between statements ?'
8c8787349aaf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1134
diff changeset
   788
"/        ].
8c8787349aaf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1134
diff changeset
   789
"/    ].
8c8787349aaf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1134
diff changeset
   790
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   791
    ^ nil
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
   792
2028
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   793
    "Modified: / 28-03-2007 / 14:14:28 / cg"
4137
0954014c1068 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
   794
    "Modified (format): / 08-03-2017 / 11:36:03 / cg"
4371
4b418ce7d687 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4347
diff changeset
   795
    "Modified: / 01-03-2019 / 15:59:30 / Claus Gittinger"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   796
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
   797
7ad01559b262 Initial revision
claus
parents:
diff changeset
   798
!MessageNode methodsFor:'code generation'!
7ad01559b262 Initial revision
claus
parents:
diff changeset
   799
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   800
codeOn:aStream inBlock:b for:aCompiler
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   801
    self codeOn:aStream inBlock:b valueNeeded:true for:aCompiler
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   802
!
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   803
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   804
codeOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
2345
d3c1bbb5cddc comment/format in: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2344
diff changeset
   805
    "most work is in checking for inlinable code here."
d3c1bbb5cddc comment/format in: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2344
diff changeset
   806
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   807
    |recType nargs isBuiltIn litIndex cls clsLitIndex code isSpecial
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
   808
     specialCode stackTop arg1 arg2 arg3 isSuper realReceiver 
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
   809
     noSendDrop alreadyDropped
1994
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
   810
     useSelfSend usedSelector|
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
   811
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   812
    selector := selector asSymbol.
1994
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
   813
    usedSelector := aCompiler nameSpaceSelectorFor:selector.
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
   814
4297
1e66c13ff84b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   815
    "/ must be added for browser's-search to work on optimized nodes
1994
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
   816
    usedSelector ~~ selector ifTrue:[ aCompiler addLiteral:selector ].
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
   817
    litIndex := aCompiler addLiteral:usedSelector.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   818
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   819
    noSendDrop := aCompiler class newCodeSet == true.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   820
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   821
    realReceiver := self realReceiver.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   822
    isSuper := realReceiver isSuper.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   823
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   824
    argArray isNil ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   825
        nargs := 0
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   826
    ] ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   827
        nargs := argArray size.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   828
        nargs > 0 ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   829
            arg1 := argArray at:1.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   830
            nargs > 1 ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   831
                arg2 := argArray at:2.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   832
                nargs > 2 ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   833
                    arg3 := argArray at:3.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   834
                ]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   835
            ]    
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   836
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   837
    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   838
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   839
    recType := receiver type.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   840
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   841
    (nargs == 0) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   842
        (recType == #ThisContext) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   843
            valueNeeded ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   844
                "for now, only do it in methods"
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   845
                b isNil ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   846
                    (selector == #restart) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   847
                        aStream nextPut:#jump; nextPut:1.      "jump to start"
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   848
                        ^ self
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   849
                    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   850
                ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   851
                (selector == #return) ifTrue:[  "^ nil"
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   852
                    aStream nextPut:#retNil.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   853
                    ^ self
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   854
                ].
2562
be17095cbb21 comment/format in: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2542
diff changeset
   855
            ].
be17095cbb21 comment/format in: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2542
diff changeset
   856
            "/ aCompiler rememberContextReturnablePragma
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   857
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   858
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   859
        (receiver isBlock 
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   860
        and:[receiver numArgs == 0
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   861
        and:[receiver isInlinable]]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   862
            selector == #value ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   863
                receiver codeInlineOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   864
                ^ self
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   865
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   866
            ((selector == #whileTrue) or:[selector == #whileFalse]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   867
                ^ self codeWhileOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   868
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   869
            ((selector == #repeat) or:[selector == #loop]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   870
                valueNeeded ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   871
                    ^ self codeRepeatOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   872
                ]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   873
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   874
        ].
3677
b344c261b4ad #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
   875
        
b344c261b4ad #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
   876
        "/ this optimization is for javaScript where we have to write "foo".asSymbol()
b344c261b4ad #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
   877
        selector == #asSymbol ifTrue:[
b344c261b4ad #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
   878
            (receiver isConstant and:[receiver evaluate isString]) ifTrue:[
b344c261b4ad #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
   879
                (ConstantNode value:receiver evaluate asSymbol) codeOn:aStream inBlock:b for:aCompiler.
b344c261b4ad #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
   880
                ^ self
b344c261b4ad #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
   881
            ].    
b344c261b4ad #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
   882
        ].    
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   883
    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   884
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   885
    (nargs == 1) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   886
        (recType == #ThisContext) ifTrue:[
2343
e3c3dad6a800 changed: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   887
            (selector == #return:) ifTrue:[
e3c3dad6a800 changed: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   888
                arg1 codeOn:aStream inBlock:b for:aCompiler.  "^ value"
e3c3dad6a800 changed: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   889
                aStream nextPut:#retTop.
e3c3dad6a800 changed: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   890
                valueNeeded ifTrue:[
e3c3dad6a800 changed: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   891
                    "/ although we know, that it is useless, we generate a push-nil
2344
4cfbc5060382 comment/format in: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2343
diff changeset
   892
                    "/ to make any stack-checkers happy (caller will generate a pop).
2343
e3c3dad6a800 changed: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   893
                    aStream nextPut:#pushNil.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   894
                ].
2343
e3c3dad6a800 changed: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   895
                ^ self.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   896
             ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   897
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   898
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   899
        ((selector == #ifNil:) or:[selector == #ifNotNil:]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   900
            receiver isBlock ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   901
                (arg1 isBlock not
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   902
                or:[arg1 numArgs == 0]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   903
                    ^ self codeIfNilOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   904
                ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   905
                (arg1 isConstant or:[arg1 isVariable]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   906
                    ^ self codeIfNilOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   907
                ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   908
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   909
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   910
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   911
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   912
        (arg1 isBlock 
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   913
        and:[arg1 isInlinable
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   914
        and:[arg1 numArgs == 0]]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   915
            ((selector == #ifTrue:) or:[selector == #ifFalse:]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   916
                receiver isBlock ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   917
                    ^ self codeIfOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   918
                ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   919
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   920
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   921
            (selector == #or:) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   922
                ^ self codeOrOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   923
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   924
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   925
            (selector == #and:) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   926
                ^ self codeAndOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   927
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   928
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   929
            (selector == #timesRepeat:) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   930
                "/ now, always inline #timesRepeat:;
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   931
                "/ the receiver must understand #> and #-
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
   932
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   933
               ^ self codeTimesRepeatOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   934
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   935
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   936
            ((selector == #whileTrue:) or:[selector == #whileFalse:]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   937
                (receiver isBlock 
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   938
                and:[receiver isInlinable
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   939
                and:[receiver numArgs == 0]]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   940
                    ^ self codeWhileOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   941
                ]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   942
            ]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   943
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   944
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   945
        ((selector == #ifTrue:) or:[selector == #ifFalse:]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   946
            (arg1 isConstant or:[arg1 isVariable]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   947
                ^ self codeIfOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   948
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   949
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   950
1994
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
   951
        usedSelector == #? ifTrue:[
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   952
            "/ only do short-circuit optimization, if arg is not a message;
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   953
            "/ (could have side-effects)
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   954
            "/
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   955
            arg1 isMessage ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   956
                ^ self codeQuestOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   957
            ]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   958
        ].
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
   959
        (selector == #caseOf:) ifTrue:[
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
   960
            (self codeCaseOfOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler) ifTrue:[
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
   961
                ^ self
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
   962
            ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
   963
        ].
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   964
    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   965
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   966
    (nargs == 2) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   967
        receiver isBlock ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   968
            (arg1 isBlock 
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   969
            and:[arg1 isInlinable
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   970
            and:[arg1 numArgs == 0
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   971
            and:[arg2 isBlock 
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   972
            and:[arg2 isInlinable
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   973
            and:[arg2 numArgs == 0]]]]]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   974
                ((selector == #ifTrue:ifFalse:) or:[selector == #ifFalse:ifTrue:]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   975
                    ^ self codeIfElseOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   976
                ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   977
                ((selector == #ifNil:ifNotNil:) or:[selector == #ifNotNil:ifNil:]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   978
                    ^ self codeIfNilNotNilOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   979
                ]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   980
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   981
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   982
            ((arg1 isConstant or:[arg1 isVariable])
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   983
            and:[arg2 isConstant or:[arg2 isVariable]]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   984
                ((selector == #ifTrue:ifFalse:) or:[selector == #ifFalse:ifTrue:]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   985
                    ^ self codeIfElseOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   986
                ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   987
                ((selector == #ifNil:ifNotNil:) or:[selector == #ifNotNil:ifNil:]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   988
                    ^ self codeIfNilNotNilOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   989
                ]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   990
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   991
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   992
        selector == #to:do: ifTrue:[
4389
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   993
            (receiver isConstant
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   994
              and:[receiver type == #Integer
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   995
              and:[arg2 isBlock 
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   996
              and:[arg2 isInlinable 
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   997
              and:[arg2 numArgs == 1]]]]
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   998
            ) ifTrue:[
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   999
                ^ self codeToDoOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1000
            ]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1001
        ].
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1002
        (selector == #'caseOf:otherwise:') ifTrue:[
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1003
            (self codeCaseOfOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler) ifTrue:[
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1004
                ^ self
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1005
            ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1006
        ].
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1007
    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1008
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1009
    (nargs == 3) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1010
        selector == #to:by:do: ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1011
            "/ step must be a constant (need to know how to compare)
4389
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  1012
            (receiver isConstant
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  1013
              and:[receiver type == #Integer
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  1014
              and:[arg2 isConstant 
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  1015
              and:[arg2 type == #Integer
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  1016
              and:[arg3 isBlock 
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  1017
              and:[arg3 isInlinable 
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  1018
              and:[arg3 numArgs == 1]]]]]]
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  1019
            ) ifTrue:[
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1020
                ^ self codeToByDoOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1021
            ]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1022
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1023
    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1024
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1025
    isBuiltIn := isSpecial := false.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1026
    isSuper ifFalse:[
1994
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
  1027
        isBuiltIn := aCompiler isBuiltInSelector:usedSelector forReceiver:receiver.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1028
        isBuiltIn ifFalse:[
1994
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
  1029
            specialCode := aCompiler specialSendCodeFor:usedSelector.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1030
            isSpecial := specialCode notNil.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1031
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1032
    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1033
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1034
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1035
    "can we use a send-bytecode ?"
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1036
    (isBuiltIn or:[isSpecial]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1037
        receiver codeOn:aStream inBlock:b for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1038
        (nargs > 0) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1039
            arg1 codeOn:aStream inBlock:b for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1040
            (nargs > 1) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1041
                arg2 codeOn:aStream inBlock:b for:aCompiler
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1042
            ]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1043
        ].
3108
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  1044
        lineNr >= 255 ifTrue:[
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  1045
            self codeLineNumber: lineNr on: aStream for:aCompiler.  
3108
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  1046
        ].
1994
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
  1047
        aStream nextPut:usedSelector.
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
  1048
        (aCompiler hasLineNumber:usedSelector) ifTrue:[
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1049
            aStream nextPut:lineNr.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1050
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1051
        isSpecial ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1052
            aStream nextPut:specialCode
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1053
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1054
        valueNeeded ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1055
            aStream nextPut:#drop
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1056
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1057
        ^ self
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1058
    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1059
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1060
    ((nargs == 0) and:[selector == #yourself]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1061
        "yourself is often added to get the receiver -
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1062
         we get it without the yourself-message"
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1063
2429
89d05ce26891 changed: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2399
diff changeset
  1064
        (valueNeeded or:[receiver isMessage]) ifTrue:[
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1065
            receiver codeOn:aStream inBlock:b for:aCompiler
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1066
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1067
        ^ self
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1068
    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1069
2345
d3c1bbb5cddc comment/format in: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2344
diff changeset
  1070
    "not inlinable - generate a send"
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1071
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1072
    stackTop := nil.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1073
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1074
    useSelfSend := isSuper not and:[ recType == #Self and:[ litIndex <= 16rFFFF ] ].
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1075
    useSelfSend ifFalse:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1076
        receiver codeOn:aStream inBlock:b for:aCompiler.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1077
        receiver isConstant ifTrue:[ 
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1078
            stackTop := receiver
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1079
        ].
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1080
    ].
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1081
    argArray notNil ifTrue:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1082
        argArray do:[:arg |
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1083
            (stackTop notNil and:[arg canReuseAsArg:stackTop]) ifTrue:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1084
                aStream nextPut:#dup.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1085
                "/ 'reuse:' print. stackTop print. ' in ' print. aCompiler selector printNL.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1086
            ] ifFalse:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1087
                arg codeOn:aStream inBlock:b for:aCompiler.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1088
                stackTop := arg.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1089
            ]
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1090
        ]
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1091
    ].
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1092
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1093
    isSuper ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1094
        cls := aCompiler targetClass.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1095
        realReceiver isHere ifTrue:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1096
            "/ same code as supersend, but targetClass starts search
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1097
        ] ifFalse:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1098
            "/ targetClasses superclass starts search
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1099
            cls := cls superclass.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1100
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1101
        clsLitIndex := aCompiler addLiteral:cls.
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  1102
        self emitSuperSendLiteralIndex:litIndex classLiteralIndex:clsLitIndex numArgs:nargs line:lineNr on:aStream for:aCompiler.
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1103
        valueNeeded ifFalse:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1104
            aStream nextPut:#drop
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1105
        ].
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1106
        ^ self.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1107
    ].
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1108
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1109
    valueNeeded ifTrue:[ noSendDrop := true ].
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1110
    alreadyDropped := false.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1111
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1112
    (litIndex <= 255) ifTrue:[
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1113
        (nargs <= 3) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1114
            |codes|
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1115
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1116
            noSendDrop ifTrue:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1117
                useSelfSend ifTrue:[
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1118
                    codes := #(sendSelf0 sendSelf1 sendSelf2 sendSelf3)
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1119
                ] ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1120
                    codes := #(send0 send1 send2 send3)
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1121
                ]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1122
            ] ifFalse:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1123
                useSelfSend ifTrue:[
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1124
                    codes := #(sendSelfDrop0 sendSelfDrop1 sendSelfDrop2 sendSelfDrop3)
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1125
                ] ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1126
                    codes := #(sendDrop0 sendDrop1 sendDrop2 sendDrop3)
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1127
                ].
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1128
                alreadyDropped := true.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1129
            ].
3108
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  1130
            lineNr >= 255 ifTrue:[
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  1131
                self codeLineNumber: lineNr on: aStream for: aCompiler.
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  1132
            ].
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1133
            aStream nextPut:(codes at:(nargs + 1)); nextPut:lineNr; nextPut:litIndex.
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1134
            valueNeeded ifFalse:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1135
                alreadyDropped ifFalse:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1136
                    aStream nextPut:#drop
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1137
                ].
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1138
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1139
            ^ self
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1140
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1141
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1142
        useSelfSend ifTrue:[
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1143
            code := #sendSelf
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1144
        ] ifFalse:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1145
            noSendDrop ifTrue:[
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1146
                code := #send
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1147
            ] ifFalse:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1148
                code := #sendDrop.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1149
                alreadyDropped := true.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1150
            ]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1151
        ].
3108
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  1152
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  1153
        lineNr >= 255 ifTrue:[
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  1154
            self codeLineNumber: lineNr on: aStream for: aCompiler.
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  1155
        ].           
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1156
        aStream nextPut:code; nextPut:lineNr; nextPut:litIndex; nextPut:nargs.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1157
        valueNeeded ifFalse:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1158
            alreadyDropped ifFalse:[
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1159
                aStream nextPut:#drop
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1160
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1161
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1162
        ^ self
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1163
    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1164
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1165
    "needs 16bit literal index"
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1166
    (litIndex <= 16rFFFF) ifTrue:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1167
        useSelfSend ifTrue:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1168
            aStream nextPut:#sendSelfL; nextPut:lineNr; nextPut:litIndex; nextPut:0; nextPut:nargs.
1801
9fd56369b7f1 more long ops
Claus Gittinger <cg@exept.de>
parents: 1791
diff changeset
  1169
        ] ifFalse:[
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  1170
            self emitSendLiteralIndex:litIndex numArgs:nargs line:lineNr on:aStream for:aCompiler.
1801
9fd56369b7f1 more long ops
Claus Gittinger <cg@exept.de>
parents: 1791
diff changeset
  1171
        ].
9fd56369b7f1 more long ops
Claus Gittinger <cg@exept.de>
parents: 1791
diff changeset
  1172
    ] ifFalse:[
9fd56369b7f1 more long ops
Claus Gittinger <cg@exept.de>
parents: 1791
diff changeset
  1173
        "needs 32bit literal index"
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  1174
        self emitSendLiteralIndex:litIndex numArgs:nargs line:lineNr on:aStream for:aCompiler.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1175
    ].
1801
9fd56369b7f1 more long ops
Claus Gittinger <cg@exept.de>
parents: 1791
diff changeset
  1176
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1177
    valueNeeded ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1178
        aStream nextPut:#drop
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1179
    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1180
1994
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
  1181
    "Modified: / 03-09-1995 / 12:55:42 / claus"
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1182
    "Modified: / 25-05-2012 / 11:29:47 / cg"
3108
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  1183
    "Modified: / 12-04-2013 / 22:42:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4389
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  1184
    "Modified: / 06-03-2019 / 19:40:30 / Claus Gittinger"
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1185
! !
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1186
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1187
!MessageNode methodsFor:'enumerating'!
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1188
4235
fa13c6aa5831 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
  1189
allSubNodesDo:aBlock
fa13c6aa5831 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
  1190
    "evaluate aBlock for each subnode"
fa13c6aa5831 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
  1191
3336
1b4396f06cbf class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3330
diff changeset
  1192
    receiver allNodesDo:aBlock.
1b4396f06cbf class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3330
diff changeset
  1193
    argArray notNil ifTrue:[
1b4396f06cbf class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3330
diff changeset
  1194
        argArray do:[:arg | arg allNodesDo:aBlock].
1b4396f06cbf class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3330
diff changeset
  1195
    ]
1b4396f06cbf class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3330
diff changeset
  1196
!
1b4396f06cbf class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3330
diff changeset
  1197
4384
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4235
diff changeset
  1198
blockNodesDo:aBlock recursively: aBoolean
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4235
diff changeset
  1199
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4235
diff changeset
  1200
    receiver blockNodesDo:aBlock recursively: aBoolean.
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4235
diff changeset
  1201
    argArray notNil ifTrue:[
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4235
diff changeset
  1202
        argArray do:[:arg | arg blockNodesDo:aBlock recursively: aBoolean].
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4235
diff changeset
  1203
    ]
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4235
diff changeset
  1204
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4235
diff changeset
  1205
    "Created: / 15-07-2018 / 10:35:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4235
diff changeset
  1206
!
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4235
diff changeset
  1207
4512
600025238b72 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 4472
diff changeset
  1208
childrenDo:aBlock
600025238b72 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 4472
diff changeset
  1209
    "evaluate aBlock for each subnode"
600025238b72 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 4472
diff changeset
  1210
600025238b72 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 4472
diff changeset
  1211
    aBlock value:receiver.
600025238b72 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 4472
diff changeset
  1212
    argArray notNil ifTrue:[
600025238b72 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 4472
diff changeset
  1213
        argArray do:aBlock.
600025238b72 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 4472
diff changeset
  1214
    ]
600025238b72 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 4472
diff changeset
  1215
!
600025238b72 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 4472
diff changeset
  1216
3278
73ef6a07d279 class: ParseNode
Claus Gittinger <cg@exept.de>
parents: 3274
diff changeset
  1217
messageSelectorsDo:aBlock
73ef6a07d279 class: ParseNode
Claus Gittinger <cg@exept.de>
parents: 3274
diff changeset
  1218
    "evaluate aBlock for each message-selector here and in subnodes"
73ef6a07d279 class: ParseNode
Claus Gittinger <cg@exept.de>
parents: 3274
diff changeset
  1219
73ef6a07d279 class: ParseNode
Claus Gittinger <cg@exept.de>
parents: 3274
diff changeset
  1220
    aBlock value:selector.
73ef6a07d279 class: ParseNode
Claus Gittinger <cg@exept.de>
parents: 3274
diff changeset
  1221
    receiver messageSelectorsDo:aBlock.
3274
18fa73f6a23b renamed messagesDo: to messageNodes: do
Claus Gittinger <cg@exept.de>
parents: 3266
diff changeset
  1222
    argArray notNil ifTrue:[
3278
73ef6a07d279 class: ParseNode
Claus Gittinger <cg@exept.de>
parents: 3274
diff changeset
  1223
        argArray do:[:arg | arg messageSelectorsDo:aBlock].
3274
18fa73f6a23b renamed messagesDo: to messageNodes: do
Claus Gittinger <cg@exept.de>
parents: 3266
diff changeset
  1224
    ]
18fa73f6a23b renamed messagesDo: to messageNodes: do
Claus Gittinger <cg@exept.de>
parents: 3266
diff changeset
  1225
!
18fa73f6a23b renamed messagesDo: to messageNodes: do
Claus Gittinger <cg@exept.de>
parents: 3266
diff changeset
  1226
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1227
messagesDo:aBlock
3313
860a2a61cbde enumerators
Claus Gittinger <cg@exept.de>
parents: 3310
diff changeset
  1228
    "evaluate aBlock for each message-node here and in subnodes"
3274
18fa73f6a23b renamed messagesDo: to messageNodes: do
Claus Gittinger <cg@exept.de>
parents: 3266
diff changeset
  1229
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1230
    aBlock value:self.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1231
    receiver messagesDo:aBlock.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1232
    argArray notNil ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1233
        argArray do:[:arg | arg messagesDo:aBlock].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1234
    ]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1235
!
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1236
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1237
nodeDo:anEnumerator
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1238
    "helper for parse tree walking"
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1239
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1240
    |args|
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1241
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1242
    args := argArray ? #().
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1243
    ^ anEnumerator doMessage:self receiver:receiver selector:selector arguments:args
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1244
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1245
    "Created: 19.6.1997 / 16:46:39 / cg"
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1246
    "Modified: 19.6.1997 / 17:08:28 / cg"
3313
860a2a61cbde enumerators
Claus Gittinger <cg@exept.de>
parents: 3310
diff changeset
  1247
!
860a2a61cbde enumerators
Claus Gittinger <cg@exept.de>
parents: 3310
diff changeset
  1248
860a2a61cbde enumerators
Claus Gittinger <cg@exept.de>
parents: 3310
diff changeset
  1249
variableNodesDo:aBlock
860a2a61cbde enumerators
Claus Gittinger <cg@exept.de>
parents: 3310
diff changeset
  1250
    "evaluate aBlock for each variable-node here and in subnodes"
860a2a61cbde enumerators
Claus Gittinger <cg@exept.de>
parents: 3310
diff changeset
  1251
860a2a61cbde enumerators
Claus Gittinger <cg@exept.de>
parents: 3310
diff changeset
  1252
    receiver variableNodesDo:aBlock.
860a2a61cbde enumerators
Claus Gittinger <cg@exept.de>
parents: 3310
diff changeset
  1253
    argArray notNil ifTrue:[
860a2a61cbde enumerators
Claus Gittinger <cg@exept.de>
parents: 3310
diff changeset
  1254
        argArray do:[:arg | arg variableNodesDo:aBlock].
860a2a61cbde enumerators
Claus Gittinger <cg@exept.de>
parents: 3310
diff changeset
  1255
    ]
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1256
! !
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1257
4728
afa674474f27 Adding missing endPosition for MessageNode.
Patrik Svestka <patrik.svestka@gmail.com>
parents: 4727
diff changeset
  1258
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1259
!MessageNode methodsFor:'evaluation'!
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1260
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1261
evaluateForCascadeIn:anEnvironment
4182
369c02a9555a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4138
diff changeset
  1262
    "evaluate, but return the receiver expression's value,
369c02a9555a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4138
diff changeset
  1263
     not the message-send's value"
369c02a9555a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4138
diff changeset
  1264
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1265
    ^ self evaluateIn:anEnvironment forCascade:true
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1266
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1267
    "Modified: / 20-04-2005 / 12:12:01 / cg"
4182
369c02a9555a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4138
diff changeset
  1268
    "Modified (comment): / 08-08-2017 / 18:08:45 / cg"
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1269
!
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1270
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1271
evaluateIn:anEnvironment
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1272
    ^ self evaluateIn:anEnvironment forCascade:false
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1273
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1274
    "Modified: / 20-04-2005 / 12:11:55 / cg"
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1275
!
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1276
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1277
evaluateIn:anEnvironment forCascade:forCascade
4182
369c02a9555a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4138
diff changeset
  1278
    "evaluate the send (possibly recursively evaluating the args before)
369c02a9555a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4138
diff changeset
  1279
     if forCascade is true, return the receiver expression's value,
369c02a9555a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4138
diff changeset
  1280
     otherwise return the message-send's value"
369c02a9555a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4138
diff changeset
  1281
2329
50473c5384bb changed: #evaluateIn:forCascade:
Claus Gittinger <cg@exept.de>
parents: 2321
diff changeset
  1282
    |retVal defClass r a1 a2 a3 nargs argValueArray class sel|
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1283
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1284
    sel := self evaluationSelector.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1285
    receiver isSuper ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1286
        r := receiver value.
2329
50473c5384bb changed: #evaluateIn:forCascade:
Claus Gittinger <cg@exept.de>
parents: 2321
diff changeset
  1287
50473c5384bb changed: #evaluateIn:forCascade:
Claus Gittinger <cg@exept.de>
parents: 2321
diff changeset
  1288
        defClass := receiver definingClass.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1289
        receiver isHere ifTrue:[
2329
50473c5384bb changed: #evaluateIn:forCascade:
Claus Gittinger <cg@exept.de>
parents: 2321
diff changeset
  1290
            class := defClass.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1291
        ] ifFalse:[
2329
50473c5384bb changed: #evaluateIn:forCascade:
Claus Gittinger <cg@exept.de>
parents: 2321
diff changeset
  1292
            class := defClass superclass.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1293
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1294
        argArray notNil ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1295
            argValueArray := argArray collect:[:arg | arg evaluateIn:anEnvironment].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1296
        ] ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1297
            argValueArray := #()
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1298
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1299
        retVal := r perform:sel inClass:class withArguments:argValueArray.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1300
    ] ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1301
        r := receiver evaluateIn:anEnvironment.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1302
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1303
        argArray isNil ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1304
            retVal := r perform:sel
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1305
        ] ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1306
            nargs := argArray size.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1307
            (nargs == 0) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1308
                retVal := r perform:sel
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1309
            ] ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1310
                a1 := (argArray at:1) evaluateIn:anEnvironment.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1311
                (nargs == 1) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1312
                    retVal := r perform:sel with:a1
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1313
                ] ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1314
                    a2 := (argArray at:2) evaluateIn:anEnvironment.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1315
                    (nargs == 2) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1316
                        retVal := r perform:sel with:a1 with:a2
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1317
                    ] ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1318
                        a3 := (argArray at:3) evaluateIn:anEnvironment.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1319
                        (nargs == 3) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1320
                            retVal := r perform:sel with:a1 with:a2 with:a3
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1321
                        ] ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1322
                            argValueArray := Array new:nargs.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1323
                            argValueArray at:1 put:a1.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1324
                            argValueArray at:2 put:a2.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1325
                            argValueArray at:3 put:a3.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1326
                            4 to:nargs do:[:idx | argValueArray at:idx put:((argArray at:idx) evaluateIn:anEnvironment)].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1327
                            retVal := r perform:sel withArguments:argValueArray.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1328
                        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1329
                    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1330
                ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1331
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1332
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1333
    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1334
    ^ forCascade ifTrue:[r] ifFalse:[retVal]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1335
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1336
    "Created: / 20-04-2005 / 12:11:39 / cg"
4182
369c02a9555a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4138
diff changeset
  1337
    "Modified (comment): / 08-08-2017 / 18:08:56 / cg"
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1338
!
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1339
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1340
evaluationSelector
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1341
    ^ selector asSymbol
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1342
! !
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1343
4728
afa674474f27 Adding missing endPosition for MessageNode.
Patrik Svestka <patrik.svestka@gmail.com>
parents: 4727
diff changeset
  1344
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1345
!MessageNode methodsFor:'optimized code generation'!
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1346
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1347
codeAndIfElseOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1348
    "generate code for (x and:[y]) ifxxx:[ ... ] ifyyy:[ ... ]"
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1349
2941
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1350
    |theByteCode optByteCode receiver1 receiver2 theArg theArg2 pos1 pos2 pos3 code here jmp
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1351
     block1 block2 andBlock optByteCode2|
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1352
1464
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  1353
    aCompiler addLiteral:#and:.
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  1354
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1355
    theByteCode := #falseJump.
2941
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1356
    receiver1 := receiver receiver.
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1357
    theArg := nil.
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1358
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1359
    optByteCode := self optimizedConditionFor:receiver1 with:theByteCode for:aCompiler.
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1360
    optByteCode notNil ifTrue:[
1058
Claus Gittinger <cg@exept.de>
parents: 1057
diff changeset
  1361
        ((optByteCode == #eqJump) or:[optByteCode == #notEqJump]) ifTrue:[
2941
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1362
            theArg := receiver1 arg1
1058
Claus Gittinger <cg@exept.de>
parents: 1057
diff changeset
  1363
        ].
2941
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1364
        receiver1 := receiver1 receiver.
1058
Claus Gittinger <cg@exept.de>
parents: 1057
diff changeset
  1365
        theByteCode := optByteCode
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1366
    ].
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1367
    "/ code the left-of the and-part
2941
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1368
    receiver1 codeOn:aStream inBlock:b for:aCompiler.
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1369
    theArg notNil ifTrue:[
1058
Claus Gittinger <cg@exept.de>
parents: 1057
diff changeset
  1370
        theArg codeOn:aStream inBlock:b for:aCompiler
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1371
    ].
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1372
    aStream nextPut:theByteCode.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1373
    pos1 := aStream position + 1.   "/ remember branch target of left-fail branch
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1374
    aStream nextPut:0.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1375
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1376
    "/ code the right of the and-part
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1377
    (selector == #ifTrue:ifFalse:) ifTrue:[
1058
Claus Gittinger <cg@exept.de>
parents: 1057
diff changeset
  1378
        jmp := #falseJump
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1379
    ] ifFalse:[
1058
Claus Gittinger <cg@exept.de>
parents: 1057
diff changeset
  1380
        jmp := #trueJump
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1381
    ].
2941
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1382
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1383
    andBlock := receiver arg1.
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1384
    theArg2 := nil.
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1385
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1386
    "/ code the left-of the and-part
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1387
    (andBlock statements isNil or:[andBlock statements nextStatement isNil]) ifTrue:[
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1388
        "/ simple - one statement
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1389
        receiver2 := andBlock statements expression.
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1390
        optByteCode2 := self optimizedConditionFor:receiver2 with:jmp for:aCompiler.
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1391
    ].
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1392
    optByteCode2 notNil ifTrue:[
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1393
        ((optByteCode2 == #eqJump) or:[optByteCode2 == #notEqJump]) ifTrue:[
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1394
            theArg2 := receiver2 arg1
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1395
        ].
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1396
        receiver2 := receiver2 receiver.
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1397
        receiver2 codeOn:aStream inBlock:b for:aCompiler.
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1398
        theArg2 notNil ifTrue:[
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1399
            theArg2 codeOn:aStream inBlock:b for:aCompiler
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1400
        ].
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1401
        jmp := optByteCode2
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1402
    ] ifFalse:[
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1403
        andBlock codeInlineOn:aStream inBlock:b for:aCompiler.
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1404
    ].
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1405
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1406
    aStream nextPut:jmp.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1407
    pos2 := aStream position + 1.   "/ remember branch target of right-fail branch 
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1408
    aStream nextPut:0.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1409
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1410
    code := aStream contents.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1411
    (selector == #ifFalse:ifTrue:) ifTrue:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1412
        code at:pos1 put:(aStream position + 1)
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1413
    ].
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1414
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1415
    "/ code the if-block
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1416
    block1 := argArray at: 1.
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1417
    self codeBlockEvaluation:block1 on:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1418
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1419
    aStream nextPut:#jump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1420
    pos3 := aStream position + 1.
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1421
    aStream nextPut:0.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1422
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1423
    here := aStream position + 1.
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1424
    (selector == #ifTrue:ifFalse:) ifTrue:[
1058
Claus Gittinger <cg@exept.de>
parents: 1057
diff changeset
  1425
        code at:pos1 put:here
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1426
    ].
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1427
    code at:pos2 put:here.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1428
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1429
    "/ code the else-block
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1430
    block2 := argArray at: 2.
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1431
    self codeBlockEvaluation:block2 on:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1432
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1433
    code at:pos3 put:(aStream position + 1)
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1434
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1435
    "Created: 6.9.1996 / 12:56:23 / cg"
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1436
!
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1437
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1438
codeAndIfOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1439
    "generate code for (x and:[y]) ifxxx:[ ... ]"
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1440
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1441
    |theByteCode optByteCode andBlock theArg pos1 pos2 pos3 code here jmp
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1442
     receiver1 receiver2 optByteCode2 theArg2 block|
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1443
1464
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  1444
    aCompiler addLiteral:#and:.
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  1445
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1446
    theByteCode := #falseJump.
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1447
    receiver1 := receiver receiver.
2941
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1448
    theArg := nil.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1449
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  1450
    optByteCode := self optimizedConditionFor:receiver1 with:theByteCode for:aCompiler.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1451
    optByteCode notNil ifTrue:[
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1452
        ((optByteCode == #eqJump) or:[optByteCode == #notEqJump]) ifTrue:[
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1453
            theArg := receiver1 arg1
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1454
        ].
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1455
        receiver1 := receiver1 receiver.
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1456
        theByteCode := optByteCode
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1457
    ].
2941
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1458
    "/ code the left-of the and-part
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1459
    receiver1 codeOn:aStream inBlock:b for:aCompiler.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1460
    theArg notNil ifTrue:[
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1461
        theArg codeOn:aStream inBlock:b for:aCompiler
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1462
    ].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1463
    aStream nextPut:theByteCode.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1464
    pos1 := aStream position + 1.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1465
    aStream nextPut:0.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1466
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1467
    andBlock := receiver arg1. "/ the and:-block
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1468
    (selector == #ifTrue:) ifTrue:[
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1469
        jmp := #falseJump
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1470
    ] ifFalse:[
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1471
        jmp := #trueJump
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1472
    ].
2941
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1473
    optByteCode2 := nil.
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1474
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1475
    (andBlock statements isNil or:[andBlock statements nextStatement isNil]) ifTrue:[
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1476
        "/ simple - one statement
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1477
        receiver2 := andBlock statements expression.
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  1478
        optByteCode2 := self optimizedConditionFor:receiver2 with:jmp for:aCompiler.
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1479
    ].
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1480
    optByteCode2 notNil ifTrue:[
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1481
        ((optByteCode2 == #eqJump) or:[optByteCode2 == #notEqJump]) ifTrue:[
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1482
            theArg2 := receiver2 arg1
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1483
        ].
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1484
        receiver2 := receiver2 receiver.
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1485
        receiver2 codeOn:aStream inBlock:b for:aCompiler.
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1486
        theArg2 notNil ifTrue:[
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1487
            theArg2 codeOn:aStream inBlock:b for:aCompiler
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1488
        ].
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1489
        jmp := optByteCode2.
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1490
    ] ifFalse:[
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1491
        andBlock codeInlineOn:aStream inBlock:b for:aCompiler.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1492
    ].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1493
    aStream nextPut:jmp.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1494
    pos2 := aStream position + 1.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1495
    aStream nextPut:0.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1496
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1497
    code := aStream contents.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1498
    (selector == #ifFalse:) ifTrue:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1499
        code at:pos1 put:(aStream position + 1)
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1500
    ].
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1501
    block := argArray at: 1.
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1502
    self codeBlockEvaluation:block on:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1503
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1504
    valueNeeded ifTrue:[
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1505
        aStream nextPut:#jump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1506
        pos3 := aStream position + 1.
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1507
        aStream nextPut:0.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1508
        here := aStream position + 1.
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1509
        (selector == #ifTrue:) ifTrue:[
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1510
            code at:pos1 put:here
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1511
        ].
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1512
        code at:pos2 put:here.
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1513
        aStream nextPut:#pushNil.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1514
        code at:pos3 put:(aStream position + 1)
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1515
    ] ifFalse:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1516
        here := aStream position + 1.
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1517
        (selector == #ifTrue:) ifTrue:[
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1518
            code at:pos1 put:here
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1519
        ].
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1520
        code at:pos2 put:here
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1521
    ]
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1522
!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1523
289
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  1524
codeAndOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  1525
    "generate code for (x and:[y])"
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1526
3317
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1527
    |jumpTarget1 rightExpr|
289
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  1528
1464
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  1529
    aCompiler addLiteral:#and:.
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  1530
3317
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1531
    (receiver isConstant and:[receiver value == true ]) ifTrue:[
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1532
        "/ happens when code is "commented" i.e. true and:[ ... ]
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1533
        
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1534
    ] ifFalse:[
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1535
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1536
        receiver codeOn:aStream inBlock:b for:aCompiler.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1537
        valueNeeded ifTrue:[
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1538
            aStream nextPut:#dup.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1539
        ].
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1540
        aStream nextPut:#falseJump.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1541
        jumpTarget1 := aStream position + 1.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1542
        aStream nextPut:0.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1543
        valueNeeded ifTrue:[
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1544
            aStream nextPut:#drop.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1545
        ].
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1546
    ].
3317
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1547
289
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  1548
    rightExpr := argArray at:1.
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  1549
    rightExpr codeInlineOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
163
9a7dfd547e69 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
  1550
3317
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1551
    jumpTarget1 notNil ifTrue:[
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1552
        (aStream contents) at:jumpTarget1 put:(aStream position + 1)
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1553
    ].
289
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  1554
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  1555
    "Created: 17.6.1996 / 15:46:42 / cg"
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  1556
    "Modified: 17.6.1996 / 15:47:44 / cg"
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1557
!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1558
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1559
codeBlockEvaluation:aBlock on:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1560
    "gen code to evaluate a block"
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1561
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1562
    (aBlock isBlock and:[aBlock isInlinable]) ifTrue:[
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1563
        aBlock codeInlineOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1564
    ] ifFalse:[
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1565
        aBlock codeOn:aStream inBlock:b for:aCompiler.
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1566
        aBlock isConstant ifFalse:[
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1567
            self codeValueSendOn:aStream for:aCompiler.
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1568
        ].
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1569
        valueNeeded ifFalse:[
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1570
            aStream nextPut:#drop
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1571
        ].
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1572
    ].
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1573
!
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1574
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1575
codeCaseOfOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1576
    "expr
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1577
        caseOf: {
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1578
            [val1] -> [ caseStats1 ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1579
            [val2] -> [ caseStats2 ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1580
            ...
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1581
            [valN] -> [ caseStatsN ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1582
        }
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1583
        otherwise: [
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1584
            otherStats
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1585
        ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1586
     also handles caseOf, without otherwise: arg.
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1587
     Compiled as a nested if-statement.
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1588
    "
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1589
2893
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1590
    |caseArg otherwiseArg checkAndCollectCases checkAndCollectCases2 caseValueExpressions caseBlocks elseBlock ifMessage|
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1591
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1592
    checkAndCollectCases := 
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1593
        [:expr :atEnd |
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1594
            |numCasesAllocated caseNr caseValueExpression caseBlock|
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1595
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1596
            expr receiver isMessage ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1597
            expr selector = #'at:put:' ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1598
            "check if at: arg is an integer (the case-nr)"
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1599
            expr arg1 isConstant ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1600
            (caseNr := expr arg1 value) isInteger ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1601
            "check if put: arg is []->[] (the case-spec)"
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1602
            expr arg2 isMessage ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1603
            expr arg2 selector == #'->' ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1604
            expr arg2 receiver isBlock ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1605
            (caseBlock := expr arg2 arg1) isBlock ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1606
            "the case-value-block must consist of a single expression"
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1607
            expr arg2 receiver isSingleExpressionBlock ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1608
            (caseValueExpression := expr arg2 receiver simpleSendBlockExpression) notNil ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1609
            caseValueExpressions isEmptyOrNil ifTrue:[
3497
6d4ca8912102 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1610
                caseValueExpressions := OrderedCollection newWithSize:caseNr.
6d4ca8912102 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1611
                caseBlocks := OrderedCollection newWithSize:caseNr.
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1612
            ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1613
            caseValueExpressions at:caseNr put:caseValueExpression.
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1614
            caseBlocks at:caseNr put:caseBlock.
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1615
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1616
            atEnd ifFalse: [
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1617
                expr receiver isCascade ifTrue:[
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1618
                    "at the left, there must be another cascade"
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1619
                    checkAndCollectCases value:expr receiver value:false.
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1620
                ] ifFalse:[
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1621
                    "at the left, there must be an (Array new:N) at:1 put:([]->[]) expression"
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1622
                    checkAndCollectCases value:expr receiver value:true.
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1623
                    expr receiver selector = #'at:put:' ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1624
                    expr receiver receiver isMessage ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1625
                    expr receiver receiver selector = #'new:' ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1626
                    expr receiver receiver receiver isGlobal ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1627
                    expr receiver receiver receiver name = 'Array' ifFalse:[^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1628
                    expr receiver receiver arg1 isConstant ifFalse:[^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1629
                    (numCasesAllocated := expr receiver receiver arg1 value) isInteger ifFalse:[^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1630
                    numCasesAllocated = caseBlocks size ifFalse:[^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1631
                ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1632
            ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1633
        ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1634
2893
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1635
    checkAndCollectCases2 :=    "/ for with:with: cases
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1636
        [:expr |
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1637
            |caseNr caseValueExpression caseBlock|
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1638
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1639
            expr args do:[:eachCaseArg |
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1640
                "check if put: eachCaseArg is []->[] (the case-spec)"
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1641
                eachCaseArg isMessage ifFalse:[ ^ false].
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1642
                eachCaseArg selector == #'->' ifFalse:[ ^ false].
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1643
                eachCaseArg receiver isBlock ifFalse:[ ^ false].
3385
0c211183027f class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3356
diff changeset
  1644
                (caseBlock := eachCaseArg arg1) isBlock ifFalse:[
0c211183027f class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3356
diff changeset
  1645
                    caseBlock isVariable ifFalse:[ ^ false].
0c211183027f class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3356
diff changeset
  1646
                ].
2893
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1647
                "the case-value-block must consist of a single expression"
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1648
                eachCaseArg receiver isSingleExpressionBlock ifFalse:[ ^ false].
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1649
                (caseValueExpression := eachCaseArg receiver simpleSendBlockExpression) notNil ifFalse:[ ^ false].
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1650
                caseValueExpressions isEmptyOrNil ifTrue:[
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1651
                    caseValueExpressions := OrderedCollection new.
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1652
                    caseBlocks := OrderedCollection new.
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1653
                ].
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1654
                caseValueExpressions add:caseValueExpression.
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1655
                caseBlocks add:caseBlock.
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1656
            ].
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1657
        ].
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1658
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1659
    receiver isMessage ifTrue:[ ^ false].   "for now: I cannot introduce temporaries"
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1660
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1661
    caseArg := argArray at:1.
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1662
    "caseArg has already been transformed from a {...}- to
2893
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1663
     an Array-creating cascade expression or an Array-with:... expression"
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1664
    caseArg isCascade ifTrue:[
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1665
        caseArg receiver isMessage ifFalse:[^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1666
        checkAndCollectCases value:(caseArg receiver) value:false.
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1667
    ] ifFalse:[
2893
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1668
        (caseArg isMessage
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1669
            and:[ (caseArg receiver isGlobalNamed:'Array')
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1670
            and:[ 
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1671
                #( 'with:'
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1672
                   'with:with:' 
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1673
                   'with:with:with:' 
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1674
                   'with:with:with:with:' 
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1675
                   'with:with:with:with:with:' 
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1676
                   'with:with:with:with:with:with:' 
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1677
                   'with:with:with:with:with:with:with:' 
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1678
                   'with:with:with:with:with:with:with:with:' 
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1679
                    ) includes:caseArg selector ]
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1680
        ]) ifTrue:[
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1681
            checkAndCollectCases2 value:caseArg.
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1682
        ] ifFalse:[
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1683
            "whenever an explicit Array-expression is used here, add support below"
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1684
            ^ false
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1685
        ].
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1686
    ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1687
    argArray size > 1 ifTrue:[
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1688
        otherwiseArg := argArray at:2.
3385
0c211183027f class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3356
diff changeset
  1689
        otherwiseArg isBlock ifFalse:[
0c211183027f class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3356
diff changeset
  1690
            otherwiseArg isVariable ifFalse:[^ false]
0c211183027f class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3356
diff changeset
  1691
        ]
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1692
    ].
4245
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1693
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1694
    "compile as a nested if"
4245
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1695
    elseBlock := otherwiseArg.
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1696
    elseBlock isNil ifTrue:[
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1697
        "/ cg: wrong: must create a [ self caseError ] block.
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1698
        "/ elseBlock := (ConstantNode value:nil).
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1699
        elseBlock := BlockNode 
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1700
                        withExpression:(
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1701
                            MessageNode
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1702
                                receiver:(receiver isVariable ifTrue:[receiver] ifFalse:[SelfNode value:nil])
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1703
                                selector:#'caseError'
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1704
                        ) in:b.
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1705
    ].
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1706
    caseValueExpressions with:caseBlocks reverseDo:[:eachCaseValueExpression :eachCaseBlock |
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1707
        |cond|
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1708
4221
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
  1709
        cond := BinaryNode receiver:receiver selector:#= arg:eachCaseValueExpression.
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1710
        ifMessage := MessageNode
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1711
                        receiver:cond
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1712
                        selector:#'ifTrue:ifFalse:'
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1713
                        arg1:eachCaseBlock
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1714
                        arg2:elseBlock.
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1715
        elseBlock := BlockNode withExpression:ifMessage in:b.
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1716
    ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1717
    ifMessage codeOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1718
    ^ true
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1719
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1720
    "Created: / 25-05-2012 / 11:28:27 / cg"
4221
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
  1721
    "Modified: / 26-03-2018 / 15:28:32 / stefan"
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1722
!
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1723
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1724
codeForCascadeOn:aStream inBlock:b for:aCompiler
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1725
    "like codeOn, but always leave the receiver instead of the result"
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1726
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1727
    |nargs isBuiltIn code litIndex cls clsLitIndex isSuper realReceiver noSendDrop|
1048
6eaeba225e67 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1046
diff changeset
  1728
1500
3c4cb012b24b Lazy conversion of selector strings to symbols.
Stefan Vogel <sv@exept.de>
parents: 1480
diff changeset
  1729
    selector := selector asSymbol.
1048
6eaeba225e67 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1046
diff changeset
  1730
    noSendDrop := aCompiler class newCodeSet == true.
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1731
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1732
    realReceiver := self realReceiver.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1733
    isSuper := realReceiver isSuper.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1734
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1735
    argArray isNil ifTrue:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1736
        nargs := 0
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1737
    ] ifFalse:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1738
        nargs := argArray size
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1739
    ].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1740
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1741
    isBuiltIn := isSuper not and:[ aCompiler isBuiltInSelector:selector forReceiver:receiver ].
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1742
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1743
    litIndex := aCompiler addLiteral:selector.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1744
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1745
    receiver codeOn:aStream inBlock:b for:aCompiler.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1746
    aStream nextPut:#dup.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1747
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1748
    "can we use a send-bytecode ?"
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1749
    isBuiltIn ifTrue:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1750
        (nargs > 0) ifTrue:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1751
            (argArray at:1) codeOn:aStream inBlock:b for:aCompiler.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1752
            (nargs > 1) ifTrue:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1753
                (argArray at:2) codeOn:aStream inBlock:b for:aCompiler
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1754
            ]
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1755
        ].
3108
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  1756
        lineNr >= 255 ifTrue:[
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  1757
            self codeLineNumber: lineNr on: aStream for:aCompiler.  
3108
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  1758
        ].
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1759
        aStream nextPut:selector.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1760
        (aCompiler hasLineNumber:selector) ifTrue:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1761
            aStream nextPut:lineNr.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1762
        ].
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1763
        aStream nextPut:#drop.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1764
        ^ self
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1765
    ].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1766
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1767
    "no - generate a send"
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1768
    argArray notNil ifTrue:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1769
        argArray do:[:arg |
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1770
            arg codeOn:aStream inBlock:b for:aCompiler
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1771
        ]
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1772
    ].
189
673580572edd fixed cascades involving super sends (i.e. super foo; bar)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
  1773
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1774
    isSuper ifTrue:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1775
        cls := aCompiler targetClass.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1776
        realReceiver isHere ifTrue:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1777
            "/ same code as supersend, but targetClass starts search
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1778
        ] ifFalse:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1779
            "/ targetClasses superclass starts search
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1780
            cls := cls superclass.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1781
        ].
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1782
        clsLitIndex := aCompiler addLiteral:cls.
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  1783
        self emitSuperSendLiteralIndex:litIndex classLiteralIndex:clsLitIndex numArgs:nargs line:lineNr on:aStream for:aCompiler.
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1784
        aStream nextPut:#drop.
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1785
        ^ self
189
673580572edd fixed cascades involving super sends (i.e. super foo; bar)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
  1786
    ].
673580572edd fixed cascades involving super sends (i.e. super foo; bar)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
  1787
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1788
    noSendDrop ifFalse:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1789
        litIndex <= 255 ifTrue:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1790
            (nargs <= 3) ifTrue:[
1046
8e5818442eb9 newCode (for rel5)
Claus Gittinger <cg@exept.de>
parents: 1045
diff changeset
  1791
                code := #(sendDrop0 sendDrop1 sendDrop2 sendDrop3) at:(nargs+1).
3108
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  1792
                lineNr >= 255 ifTrue:[
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  1793
                    self codeLineNumber: lineNr on: aStream for:aCompiler.  
3108
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  1794
                ].
1046
8e5818442eb9 newCode (for rel5)
Claus Gittinger <cg@exept.de>
parents: 1045
diff changeset
  1795
                aStream nextPut:code; nextPut:lineNr; nextPut:litIndex.
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1796
                ^ self
1046
8e5818442eb9 newCode (for rel5)
Claus Gittinger <cg@exept.de>
parents: 1045
diff changeset
  1797
            ].
3108
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  1798
            lineNr >= 255 ifTrue:[
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  1799
                self codeLineNumber: lineNr on: aStream for:aCompiler.  
3108
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  1800
            ].
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1801
            aStream nextPut:#sendDrop; nextPut:lineNr; nextPut:litIndex; nextPut:nargs.
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1802
            ^ self
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1803
        ].
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1804
    ].
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1805
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  1806
    self emitSendLiteralIndex:litIndex numArgs:nargs line:lineNr on:aStream for:aCompiler.
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1807
    aStream nextPut:#drop.
189
673580572edd fixed cascades involving super sends (i.e. super foo; bar)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
  1808
3108
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  1809
    "Modified: / 04-07-1999 / 19:06:53 / cg"
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  1810
    "Modified: / 13-04-2013 / 10:49:55 / Jan Vrany <jan.vrany@fit.cvut.cz>"
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1811
!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1812
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1813
codeForSideEffectOn:aStream inBlock:b for:aCompiler
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1814
    self codeOn:aStream inBlock:b valueNeeded:false for:aCompiler
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1815
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1816
843
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1817
codeForSimpleReturnOn:aStream inBlock:b lineNumber:lineNrOrNil for:aCompiler
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1818
    |arg1 rightExpr pos1|
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1819
4663
73191a0db2d8 Do not optimize `^ x and: y` and `^ x or: y`
Jan Vrany <jan.vrany@labware.com>
parents: 4387
diff changeset
  1820
    "JV@2021-05-19: No, do not optimize `^ x and: y` because
73191a0db2d8 Do not optimize `^ x and: y` and `^ x or: y`
Jan Vrany <jan.vrany@labware.com>
parents: 4387
diff changeset
  1821
     this prevent one from implementing bool-like objects."
73191a0db2d8 Do not optimize `^ x and: y` and `^ x or: y`
Jan Vrany <jan.vrany@labware.com>
parents: 4387
diff changeset
  1822
73191a0db2d8 Do not optimize `^ x and: y` and `^ x or: y`
Jan Vrany <jan.vrany@labware.com>
parents: 4387
diff changeset
  1823
    "/(selector == #and: or:[selector == #or:]) ifTrue:[
73191a0db2d8 Do not optimize `^ x and: y` and `^ x or: y`
Jan Vrany <jan.vrany@labware.com>
parents: 4387
diff changeset
  1824
    false ifTrue: [
843
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1825
        arg1 := argArray at:1.
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1826
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1827
        "/ for now:
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1828
        "/ only do it for non-blocks, since
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1829
        "/ the JIT compiler is smart enough to
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1830
        "/ specially optimize the resulting code
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1831
        "/ (and not smart enough to optimized the
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1832
        "/  other - actually more efficient - code)
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1833
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1834
        (arg1 isBlock not 
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1835
"/        or:[arg1 isInlinable]
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1836
        ) ifTrue:[
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1837
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1838
            "/ encode #and: as:
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1839
            "/
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1840
            "/      eLeft
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1841
            "/      jmp_false       LBL
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1842
            "/      eRight
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1843
            "/      retTop
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1844
            "/  LBL:
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1845
            "/      retFalse
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1846
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1847
            "/ encode #or: as:
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1848
            "/
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1849
            "/      eLeft
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1850
            "/      jmp_true       LBL
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1851
            "/      eRight
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1852
            "/      retTop
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1853
            "/  LBL:
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1854
            "/      retTrue
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1855
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1856
            receiver codeOn:aStream inBlock:b for:aCompiler.
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1857
            selector == #and: ifTrue:[
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1858
                aStream nextPut:#falseJump.
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1859
            ] ifFalse:[
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1860
                aStream nextPut:#trueJump.
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1861
            ].
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1862
            pos1 := aStream position + 1.
843
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1863
            aStream nextPut:0.
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1864
        
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1865
            rightExpr := argArray at:1.
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1866
            rightExpr isBlock ifTrue:[
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1867
                rightExpr codeInlineOn:aStream inBlock:b valueNeeded:true for:aCompiler.
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1868
            ] ifFalse:[
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1869
                rightExpr codeOn:aStream inBlock:b for:aCompiler.
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1870
            ].
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1871
            aStream nextPut:#retTop.
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1872
        
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1873
            (aStream contents) at:pos1 put:(aStream position + 1).
843
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1874
            selector == #and: ifTrue:[
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1875
                aStream nextPut:#retFalse.
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1876
            ] ifFalse:[
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1877
                aStream nextPut:#retTrue
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1878
            ].
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1879
            ^ self.
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1880
        ].
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1881
    ].
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1882
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1883
    super
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1884
        codeForSimpleReturnOn:aStream 
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1885
        inBlock:b 
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1886
        lineNumber:lineNrOrNil 
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1887
        for:aCompiler
4663
73191a0db2d8 Do not optimize `^ x and: y` and `^ x or: y`
Jan Vrany <jan.vrany@labware.com>
parents: 4387
diff changeset
  1888
73191a0db2d8 Do not optimize `^ x and: y` and `^ x or: y`
Jan Vrany <jan.vrany@labware.com>
parents: 4387
diff changeset
  1889
    "Modified (format): / 19-05-2021 / 11:44:44 / Jan Vrany <jan.vrany@labware.com>"
843
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1890
!
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1891
104
claus
parents: 103
diff changeset
  1892
codeIfElseOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1893
    "generate code for x ifxxx:[ ... ] yyy:[ ...]"
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1894
334
cd7491b7ad33 dont code a jump after if-part if it ends in a return.
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
  1895
    |pos pos2 theReceiver theArg theByteCode optByteCode subsel code needLineNr
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1896
     needJump block1 block2|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1897
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1898
    theReceiver := receiver.
76
55d64cb1ffea *** empty log message ***
claus
parents: 75
diff changeset
  1899
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1900
    theReceiver isConstant ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1901
        (self tryFoldedIfOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1902
            ^ self
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1903
        ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1904
    ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1905
76
55d64cb1ffea *** empty log message ***
claus
parents: 75
diff changeset
  1906
    (theReceiver isMessage) ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1907
        subsel := theReceiver selector.
2399
57ba9eb8c502 changed: #codeIfElseOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2384
diff changeset
  1908
        ((subsel == #and:) and:[theReceiver arg1 isBlock and:[theReceiver arg1 isInlinable]]) ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1909
            self codeAndIfElseOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1910
            ^ self
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1911
        ].
2399
57ba9eb8c502 changed: #codeIfElseOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2384
diff changeset
  1912
        ((subsel == #or:) and:[theReceiver arg1 isBlock and:[theReceiver arg1 isInlinable]]) ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1913
            self codeOrIfElseOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1914
            ^ self
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1915
        ]
76
55d64cb1ffea *** empty log message ***
claus
parents: 75
diff changeset
  1916
    ].
2399
57ba9eb8c502 changed: #codeIfElseOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2384
diff changeset
  1917
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1918
    (selector == #ifTrue:ifFalse:) ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1919
        theByteCode := #falseJump
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1920
    ] ifFalse:[
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1921
        theByteCode := #trueJump
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1922
    ].
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  1923
    optByteCode := self optimizedConditionFor:theReceiver with:theByteCode for:aCompiler.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1924
    optByteCode notNil ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1925
        ((optByteCode == #eqJump) or:[optByteCode == #notEqJump]) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1926
            theArg := theReceiver arg1
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1927
        ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1928
        theReceiver := theReceiver receiver.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1929
        theByteCode := optByteCode
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1930
    ].
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1931
    theReceiver codeOn:aStream inBlock:b for:aCompiler.
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1932
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1933
    needLineNr := true.
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1934
    theArg isNil ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1935
        theReceiver isMessage ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1936
            (aCompiler hasLineNumber:(theReceiver selector)) ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1937
                theReceiver lineNumber == lineNr ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1938
                    needLineNr := false
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1939
                ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1940
            ]
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1941
        ]
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1942
    ] ifFalse:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1943
        theArg codeOn:aStream inBlock:b for:aCompiler
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1944
    ].
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1945
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1946
    needLineNr ifTrue:[
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  1947
        self codeLineNumber:lineNr on:aStream for:aCompiler.  
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1948
    ].
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1949
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1950
    aStream nextPut:theByteCode.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1951
    pos := aStream position + 1.
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1952
    aStream nextPut:0.
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1953
    block1 := argArray at:1.
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1954
    self codeBlockEvaluation:block1 on:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1955
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1956
    needJump := true.
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1957
    (block1 isBlock and:[block1 endsWithReturn]) ifTrue:[
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1958
        needJump := false
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1959
    ].
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1960
    needJump ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1961
        aStream nextPut:#jump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1962
        pos2 := aStream position + 1.
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1963
        aStream nextPut:0.
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1964
    ].
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1965
    code := aStream contents.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1966
    code at:pos put:(aStream position + 1).
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1967
    block2 := (argArray at:2).
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1968
    self codeBlockEvaluation:block2 on:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1969
    needJump ifTrue:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1970
        code at:pos2 put:(aStream position + 1)
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1971
    ]
166
9f6c57a3bce1 no line number bytecode in if-else if not needed
Claus Gittinger <cg@exept.de>
parents: 163
diff changeset
  1972
2399
57ba9eb8c502 changed: #codeIfElseOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2384
diff changeset
  1973
    "
57ba9eb8c502 changed: #codeIfElseOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2384
diff changeset
  1974
     |a|
57ba9eb8c502 changed: #codeIfElseOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2384
diff changeset
  1975
     (a size = 0 and:a isNil) ifTrue: [self halt.] ifFalse:[]
57ba9eb8c502 changed: #codeIfElseOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2384
diff changeset
  1976
    "
57ba9eb8c502 changed: #codeIfElseOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2384
diff changeset
  1977
57ba9eb8c502 changed: #codeIfElseOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2384
diff changeset
  1978
    "Modified: / 21-05-2010 / 15:39:15 / cg"
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  1979
    "Modified (format): / 19-07-2018 / 14:18:46 / Stefan Vogel"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1980
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1981
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1982
codeIfNilNotNilOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
1034
d4f1640f1aad better code for #ifNil:ifNotNil:, if args are non-block consts
Claus Gittinger <cg@exept.de>
parents: 1017
diff changeset
  1983
    "generate code for x ifNil:[ ... ] ifNotNil:[...]
d4f1640f1aad better code for #ifNil:ifNotNil:, if args are non-block consts
Claus Gittinger <cg@exept.de>
parents: 1017
diff changeset
  1984
     or: x ifNil:const1 ifNotNil:const2"
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1985
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1986
    |pos pos2 theReceiver theArg theByteCode code
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1987
     needLineNr block1 block2|
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1988
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1989
    theReceiver := receiver.
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1990
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1991
    (selector == #ifNil:ifNotNil:) ifTrue:[
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1992
        theByteCode := #notNilJump
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1993
    ] ifFalse:[
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1994
        theByteCode := #nilJump
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1995
    ].
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1996
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1997
    theReceiver codeOn:aStream inBlock:b for:aCompiler.
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1998
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1999
    needLineNr := true.
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2000
    "what is theArg? It is always nil!!"
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2001
    (theArg isNil 
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2002
     and:[theReceiver isMessage 
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2003
     and:[(aCompiler hasLineNumber:(theReceiver selector)) 
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2004
     and:[theReceiver lineNumber == lineNr]]]) ifTrue:[
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2005
        needLineNr := false
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2006
    ].
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2007
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2008
    needLineNr ifTrue:[
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2009
        self codeLineNumber:lineNr on:aStream for:aCompiler.  
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2010
    ].
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2011
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2012
    aStream nextPut:theByteCode.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2013
    pos := aStream position + 1.
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2014
    aStream nextPut:0.
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2015
    block1 := argArray at: 1.
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2016
    self codeBlockEvaluation:block1 on:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2017
    aStream nextPut:#jump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2018
    pos2 := aStream position + 1.
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2019
    aStream nextPut:0.
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2020
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2021
    code := aStream contents.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2022
    code at:pos put:(aStream position + 1).
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2023
    block2 := argArray at: 2.
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2024
    self codeBlockEvaluation:block2 on:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2025
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2026
    code := aStream contents.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2027
    code at:pos2 put:(aStream position + 1)
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2028
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2029
    "Modified: / 11-02-2000 / 12:50:36 / cg"
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2030
    "Modified: / 19-07-2018 / 14:11:13 / Stefan Vogel"
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2031
!
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2032
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2033
codeIfNilOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2034
    "generate code for x ifNil:[ ... ]"
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2035
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2036
    |pos theReceiver theByteCode code needLineNr|
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2037
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2038
    theReceiver := receiver.
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2039
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2040
    (selector == #ifNil:) ifTrue:[
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2041
        theByteCode := #notNilJump
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2042
    ] ifFalse:[
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2043
        theByteCode := #nilJump
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2044
    ].
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2045
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2046
    theReceiver codeOn:aStream inBlock:b for:aCompiler.
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2047
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2048
    needLineNr := true.
899
fb678b9e18a7 also inline ifNot:/ifNotNil: for non-block arg.
Claus Gittinger <cg@exept.de>
parents: 898
diff changeset
  2049
fb678b9e18a7 also inline ifNot:/ifNotNil: for non-block arg.
Claus Gittinger <cg@exept.de>
parents: 898
diff changeset
  2050
    theReceiver isMessage ifTrue:[
fb678b9e18a7 also inline ifNot:/ifNotNil: for non-block arg.
Claus Gittinger <cg@exept.de>
parents: 898
diff changeset
  2051
        (aCompiler hasLineNumber:(theReceiver selector)) ifTrue:[
fb678b9e18a7 also inline ifNot:/ifNotNil: for non-block arg.
Claus Gittinger <cg@exept.de>
parents: 898
diff changeset
  2052
            theReceiver lineNumber == lineNr ifTrue:[
fb678b9e18a7 also inline ifNot:/ifNotNil: for non-block arg.
Claus Gittinger <cg@exept.de>
parents: 898
diff changeset
  2053
                needLineNr := false
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2054
            ]
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2055
        ]
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2056
    ].
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2057
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2058
    needLineNr ifTrue:[
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2059
        self codeLineNumber:lineNr on:aStream for:aCompiler.  
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2060
    ].
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2061
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2062
    valueNeeded ifTrue:[
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2063
        aStream nextPut:#dup.
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2064
    ].
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2065
    aStream nextPut:theByteCode.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2066
    pos := aStream position + 1.
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2067
    aStream nextPut:0.
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2068
    valueNeeded ifTrue:[
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2069
        aStream nextPut:#drop.
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2070
    ].
899
fb678b9e18a7 also inline ifNot:/ifNotNil: for non-block arg.
Claus Gittinger <cg@exept.de>
parents: 898
diff changeset
  2071
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2072
    self codeBlockEvaluation:(argArray at: 1) on:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2073
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2074
    code := aStream contents.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2075
    code at:pos put:(aStream position + 1)
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2076
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2077
    "Modified: / 28-10-1997 / 18:33:42 / cg"
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2078
    "Modified: / 19-07-2018 / 14:06:52 / Stefan Vogel"
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2079
!
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2080
104
claus
parents: 103
diff changeset
  2081
codeIfOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2082
    "generate code for x ifxxx:[ ... ]"
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2083
103
claus
parents: 102
diff changeset
  2084
    |pos pos2 theReceiver theArg theByteCode optByteCode subsel code
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2085
     needLineNr block|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2086
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2087
    theReceiver := receiver.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2088
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2089
    theReceiver isConstant ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2090
        (self tryFoldedIfOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2091
            ^ self
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2092
        ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2093
    ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2094
76
55d64cb1ffea *** empty log message ***
claus
parents: 75
diff changeset
  2095
    (theReceiver isMessage) ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2096
        subsel := theReceiver selector.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2097
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2098
        (subsel == #and:) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2099
            theReceiver arg1 isBlock ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2100
                self codeAndIfOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2101
                ^ self
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2102
            ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2103
        ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2104
        (subsel == #or:) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2105
            theReceiver arg1 isBlock ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2106
                self codeOrIfOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2107
                ^ self
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2108
            ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2109
        ].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2110
    ].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2111
    (selector == #ifTrue:) ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2112
        theByteCode := #falseJump
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2113
    ] ifFalse:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2114
        theByteCode := #trueJump
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2115
    ].
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  2116
    optByteCode := self optimizedConditionFor:theReceiver with:theByteCode for:aCompiler.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2117
    optByteCode notNil ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2118
        ((optByteCode == #eqJump) or:[optByteCode == #notEqJump]) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2119
            theArg := theReceiver arg1
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2120
        ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2121
        theReceiver := theReceiver receiver.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2122
        theByteCode := optByteCode
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2123
    ].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2124
104
claus
parents: 103
diff changeset
  2125
    theReceiver codeOn:aStream inBlock:b for:aCompiler.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2126
    theArg notNil ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2127
        theArg codeOn:aStream inBlock:b for:aCompiler
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2128
    ].
53
c5dd7abf8431 *** empty log message ***
claus
parents: 52
diff changeset
  2129
103
claus
parents: 102
diff changeset
  2130
    needLineNr := true.
claus
parents: 102
diff changeset
  2131
    theArg isNil ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2132
        theReceiver isMessage ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2133
            (aCompiler hasLineNumber:(theReceiver selector)) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2134
                theReceiver lineNumber == lineNr ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2135
                    needLineNr := false
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2136
                ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2137
            ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2138
        ]
103
claus
parents: 102
diff changeset
  2139
    ].
claus
parents: 102
diff changeset
  2140
claus
parents: 102
diff changeset
  2141
    needLineNr ifTrue:[
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2142
        self codeLineNumber:lineNr on:aStream for:aCompiler.  
53
c5dd7abf8431 *** empty log message ***
claus
parents: 52
diff changeset
  2143
    ].
c5dd7abf8431 *** empty log message ***
claus
parents: 52
diff changeset
  2144
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2145
    aStream nextPut:theByteCode.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2146
    pos := aStream position + 1.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2147
    aStream nextPut:0.
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2148
    block := (argArray at:1).
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2149
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2150
    self codeBlockEvaluation:block on:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
76
55d64cb1ffea *** empty log message ***
claus
parents: 75
diff changeset
  2151
55d64cb1ffea *** empty log message ***
claus
parents: 75
diff changeset
  2152
    code := aStream contents.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2153
    valueNeeded ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2154
        aStream nextPut:#jump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2155
        pos2 := aStream position + 1.
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2156
        aStream nextPut:0.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2157
        code at:pos put:(aStream position + 1).
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2158
        aStream nextPut:#pushNil.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2159
        code at:pos2 put:(aStream position + 1)
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2160
    ] ifFalse:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2161
        code at:pos put:(aStream position + 1)
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2162
    ]
308
fe3b95e6d9c0 oops - dont try to inline: (expr or:expr2) ifXXX
Claus Gittinger <cg@exept.de>
parents: 289
diff changeset
  2163
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2164
    "Modified: / 28-10-1997 / 18:33:42 / cg"
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2165
    "Modified: / 19-07-2018 / 14:07:06 / Stefan Vogel"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2166
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2167
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2168
codeOrIfElseOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2169
    "generate code for (x or:[y]) ifxxx:[ ... ] ifyyy:[ ... ]"
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2170
1057
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2171
    |theByteCode optByteCode theReceiver theArg pos1 pos2 pos3 code here jmp
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2172
     block1 block2 optJmp blockExpr|
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2173
1464
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  2174
    aCompiler addLiteral:#or:.
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  2175
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2176
    theByteCode := #trueJump.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2177
    theReceiver := receiver receiver.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2178
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  2179
    optByteCode := self optimizedConditionFor:theReceiver with:theByteCode for:aCompiler.
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2180
    optByteCode notNil ifTrue:[
1057
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2181
        ((optByteCode == #eqJump) or:[optByteCode == #notEqJump]) ifTrue:[
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2182
            theArg := theReceiver arg1
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2183
        ].
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2184
        theReceiver := theReceiver receiver.
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2185
        theByteCode := optByteCode
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2186
    ].
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2187
    "/ code the left-of the or-part
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2188
    theReceiver codeOn:aStream inBlock:b for:aCompiler.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2189
    theArg notNil ifTrue:[
1057
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2190
        theArg codeOn:aStream inBlock:b for:aCompiler
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2191
    ].
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2192
    aStream nextPut:theByteCode.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2193
    pos1 := aStream position + 1.   "/ remember branch target of left-ok branch
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2194
    aStream nextPut:0.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2195
1057
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2196
    "/ code the right of the or-part
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2197
    (selector == #ifTrue:ifFalse:) ifTrue:[
1057
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2198
        jmp := #falseJump
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2199
    ] ifFalse:[
1057
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2200
        jmp := #trueJump
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2201
    ].
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2202
    theReceiver := receiver arg1.
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2203
    theArg := nil.
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2204
    optJmp := nil.
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2205
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2206
    (theReceiver isBlock
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2207
    and:[theReceiver statements notNil
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2208
    and:[theReceiver statements nextStatement isNil]]) ifTrue:[
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2209
        blockExpr := theReceiver statements expression.
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  2210
        optJmp := self optimizedConditionFor:blockExpr with:jmp for:aCompiler.
1057
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2211
        optJmp notNil ifTrue:[
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2212
            ((optJmp == #eqJump) or:[optJmp == #notEqJump]) ifTrue:[
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2213
                theArg := blockExpr arg1
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2214
            ].
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2215
            theReceiver := blockExpr receiver.
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2216
            jmp := optJmp
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2217
        ].
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2218
    ].
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2219
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2220
    optJmp notNil ifTrue:[
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2221
        theReceiver codeOn:aStream inBlock:b for:aCompiler.
1058
Claus Gittinger <cg@exept.de>
parents: 1057
diff changeset
  2222
        theArg notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 1057
diff changeset
  2223
            theArg codeOn:aStream inBlock:b for:aCompiler
Claus Gittinger <cg@exept.de>
parents: 1057
diff changeset
  2224
        ]
1057
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2225
    ] ifFalse:[
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2226
        theReceiver codeInlineOn:aStream inBlock:b for:aCompiler.
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2227
    ].
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2228
    aStream nextPut:jmp.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2229
    pos2 := aStream position + 1.   "/ remember branch target of right-fail branch 
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2230
    aStream nextPut:0.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2231
1057
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2232
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2233
    code := aStream contents.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2234
    (selector == #ifTrue:ifFalse:) ifTrue:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2235
        code at:pos1 put:(aStream position + 1)
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2236
    ].
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2237
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2238
    "/ code the if-block
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2239
    block1 := argArray at: 1.
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2240
    self codeBlockEvaluation:block1 on:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2241
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2242
    aStream nextPut:#jump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2243
    pos3 := aStream position + 1.
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2244
    aStream nextPut:0.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2245
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2246
    here := aStream position + 1.
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2247
    (selector == #ifFalse:ifTrue:) ifTrue:[
1057
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2248
        code at:pos1 put:here
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2249
    ].
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2250
    code at:pos2 put:here.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2251
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2252
    "/ code the else-block
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2253
    block2 := argArray at: 2.
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2254
    self codeBlockEvaluation:block2 on:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2255
    code at:pos3 put:(aStream position + 1)
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2256
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2257
    "Created: 6.9.1996 / 13:08:52 / cg"
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2258
!
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2259
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2260
codeOrIfOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2261
    "generate code for (x or:[y]) ifxxx:[ ... ]"
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2262
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2263
    |theByteCode optByteCode theReceiver theArg pos1 pos2 pos3 code here jmp
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2264
     block|
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2265
1464
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  2266
    aCompiler addLiteral:#or:.
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  2267
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2268
    theByteCode := #trueJump.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2269
    theReceiver := receiver receiver.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2270
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  2271
    optByteCode := self optimizedConditionFor:theReceiver with:theByteCode for:aCompiler.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2272
    optByteCode notNil ifTrue:[
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2273
        ((optByteCode == #eqJump) or:[optByteCode == #notEqJump]) ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2274
            theArg := theReceiver arg1
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2275
        ].
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2276
        theReceiver := theReceiver receiver.
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2277
        theByteCode := optByteCode
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2278
    ].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2279
    theReceiver codeOn:aStream inBlock:b for:aCompiler.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2280
    theArg notNil ifTrue:[
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2281
        theArg codeOn:aStream inBlock:b for:aCompiler
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2282
    ].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2283
    aStream nextPut:theByteCode.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2284
    pos1 := aStream position + 1.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2285
    aStream nextPut:0.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2286
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2287
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2288
    theReceiver := receiver arg1.
434
c48a356d8a34 oops - optimizable or: ... ifTrue/ifFalse generated
Claus Gittinger <cg@exept.de>
parents: 429
diff changeset
  2289
    theArg := nil.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2290
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2291
"new:"
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2292
    (selector == #ifTrue:) ifTrue:[
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2293
        theByteCode := #falseJump
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2294
    ] ifFalse:[
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2295
        theByteCode := #trueJump
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2296
    ].
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  2297
    optByteCode := self optimizedConditionFor:theReceiver with:theByteCode for:aCompiler.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2298
    optByteCode notNil ifTrue:[
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2299
        theReceiver isBlock ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2300
            theReceiver := theReceiver statements expression
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2301
        ].
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2302
        ((optByteCode == #eqJump) or:[optByteCode == #notEqJump]) ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2303
            theArg := theReceiver arg1
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2304
        ].
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2305
        theReceiver := theReceiver receiver.
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2306
        theByteCode := optByteCode.
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2307
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2308
        theReceiver codeOn:aStream inBlock:b for:aCompiler.
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2309
        theArg notNil ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2310
            theArg codeOn:aStream inBlock:b for:aCompiler
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2311
        ].
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2312
        aStream nextPut:theByteCode.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2313
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2314
    ] ifFalse:[
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2315
"org"
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2316
        theReceiver codeInlineOn:aStream inBlock:b for:aCompiler.
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2317
        (selector == #ifTrue:) ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2318
            jmp := #falseJump
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2319
        ] ifFalse:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2320
            jmp := #trueJump
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2321
        ].
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2322
        aStream nextPut:jmp
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2323
    ].
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2324
    pos2 := aStream position + 1.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2325
    aStream nextPut:0.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2326
    (selector == #ifTrue:) ifTrue:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2327
        (aStream contents) at:pos1 put:(aStream position + 1)
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2328
    ].
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2329
    block := argArray at: 1.
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2330
    self codeBlockEvaluation:block on:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2331
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2332
    code := aStream contents.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2333
    valueNeeded ifTrue:[
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2334
        aStream nextPut:#jump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2335
        pos3 := aStream position + 1.
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2336
        aStream nextPut:0.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2337
        here := aStream position + 1.
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2338
        (selector == #ifFalse:) ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2339
            code at:pos1 put:here
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2340
        ].
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2341
        code at:pos2 put:here.
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2342
        aStream nextPut:#pushNil.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2343
        code at:pos3 put:(aStream position + 1)
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2344
    ] ifFalse:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2345
        here := aStream position + 1.
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2346
        (selector == #ifFalse:) ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2347
            code at:pos1 put:here
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2348
        ].
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2349
        code at:pos2 put:here
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2350
    ]
434
c48a356d8a34 oops - optimizable or: ... ifTrue/ifFalse generated
Claus Gittinger <cg@exept.de>
parents: 429
diff changeset
  2351
c48a356d8a34 oops - optimizable or: ... ifTrue/ifFalse generated
Claus Gittinger <cg@exept.de>
parents: 429
diff changeset
  2352
    "Modified: 9.11.1996 / 19:52:26 / cg"
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2353
!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2354
289
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2355
codeOrOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2356
    "generate code for (x or:[y])"
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2357
3317
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2358
    |jumpTarget1 rightExpr|
289
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2359
1464
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  2360
    aCompiler addLiteral:#or:.
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  2361
3317
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2362
    (receiver isConstant and:[receiver value == false ]) ifTrue:[
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2363
        "/ happens when code is "commented" i.e. false or:[ ... ]
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2364
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2365
    ] ifFalse:[
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2366
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2367
        receiver codeOn:aStream inBlock:b for:aCompiler.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2368
        valueNeeded ifTrue:[
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2369
            aStream nextPut:#dup.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2370
        ].
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2371
        aStream nextPut:#trueJump.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2372
        jumpTarget1 := aStream position + 1.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2373
        aStream nextPut:0.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2374
        valueNeeded ifTrue:[
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2375
            aStream nextPut:#drop.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2376
        ].
289
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2377
    ].
3317
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2378
289
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2379
    rightExpr := argArray at:1.
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2380
    rightExpr codeInlineOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2381
3317
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2382
    jumpTarget1 notNil ifTrue:[
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2383
        (aStream contents) at:jumpTarget1 put:(aStream position + 1)
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2384
    ].
289
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2385
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2386
    "Created: 17.6.1996 / 15:40:22 / cg"
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2387
    "Modified: 17.6.1996 / 15:47:22 / cg"
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2388
!
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2389
436
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2390
codeQuestOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
627
b29a02258247 comments
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  2391
    "generate code for x ? y. 
b29a02258247 comments
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  2392
     However, this is only done for non-send args."
436
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2393
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2394
    |pos code|
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2395
1464
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  2396
    aCompiler addLiteral:#'?'.
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  2397
436
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2398
    receiver codeOn:aStream inBlock:b for:aCompiler.
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2399
    aStream nextPut:#dup.
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2400
    aStream nextPut:#notNilJump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2401
    pos := aStream position + 1.
437
994414f5126a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 436
diff changeset
  2402
    aStream nextPut:0.
436
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2403
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2404
    aStream nextPut:#drop.
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2405
    (argArray at: 1) codeOn:aStream inBlock:b for:aCompiler.
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2406
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2407
    code := aStream contents.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2408
    code at:pos put:(aStream position + 1).
909
4917ac8408fb oops - inlined ? for-effect left value on top of stack
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2409
4917ac8408fb oops - inlined ? for-effect left value on top of stack
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2410
    valueNeeded ifFalse:[
4917ac8408fb oops - inlined ? for-effect left value on top of stack
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2411
        aStream nextPut:#drop.
4917ac8408fb oops - inlined ? for-effect left value on top of stack
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2412
    ].
436
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2413
627
b29a02258247 comments
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  2414
    "Created: / 10.11.1996 / 18:28:57 / cg"
b29a02258247 comments
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  2415
    "Modified: / 28.10.1997 / 18:16:20 / cg"
436
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2416
!
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2417
602
1be5dd333adc inline #repeat
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
  2418
codeRepeatOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
1425
4f698bf5ff76 inline [...] loop
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  2419
    "generate code for 
4f698bf5ff76 inline [...] loop
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  2420
        [ ... ] repeat
4f698bf5ff76 inline [...] loop
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  2421
     and:
4f698bf5ff76 inline [...] loop
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  2422
        [ ... ] loop
4f698bf5ff76 inline [...] loop
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  2423
    "
602
1be5dd333adc inline #repeat
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
  2424
1be5dd333adc inline #repeat
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
  2425
    |pos|
1be5dd333adc inline #repeat
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
  2426
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2427
    pos := aStream position + 1.
602
1be5dd333adc inline #repeat
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
  2428
    receiver codeInlineOn:aStream inBlock:b valueNeeded:false for:aCompiler.
1be5dd333adc inline #repeat
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
  2429
    aStream nextPut:#jump; nextPut:pos.
1be5dd333adc inline #repeat
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
  2430
1be5dd333adc inline #repeat
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
  2431
    "Created: 29.8.1997 / 08:14:58 / cg"
1be5dd333adc inline #repeat
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
  2432
!
1be5dd333adc inline #repeat
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
  2433
104
claus
parents: 103
diff changeset
  2434
codeSendOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2435
    "like code on, but assumes that receiver has already been
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2436
     coded onto stack - needed for cascade"
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2437
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2438
    |nargs isBuiltIn code litIndex cls clsLitIndex isSuper realReceiver 
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2439
     noSendDrop alreadyDropped|
1045
ee448a958d19 migration support
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
  2440
1500
3c4cb012b24b Lazy conversion of selector strings to symbols.
Stefan Vogel <sv@exept.de>
parents: 1480
diff changeset
  2441
    selector := selector asSymbol.
1048
6eaeba225e67 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1046
diff changeset
  2442
    noSendDrop := aCompiler class newCodeSet == true.
861
ccaa0ba5e7af generate selector symbols late (when compiling or evaluating)
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
  2443
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2444
    realReceiver := self realReceiver.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2445
    isSuper := realReceiver isSuper.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2446
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2447
    argArray isNil ifTrue:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2448
        nargs := 0
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2449
    ] ifFalse:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2450
        nargs := argArray size
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2451
    ].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2452
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2453
    litIndex := aCompiler addLiteral:selector.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2454
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2455
    isBuiltIn := isSuper not and:[ aCompiler isBuiltInSelector:selector forReceiver:receiver ].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2456
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2457
    "can we use a send-bytecode ?"
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2458
    isBuiltIn ifTrue:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2459
        (nargs > 0) ifTrue:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2460
            (argArray at:1) codeOn:aStream inBlock:b for:aCompiler.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2461
            (nargs > 1) ifTrue:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2462
                (argArray at:2) codeOn:aStream inBlock:b for:aCompiler
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2463
            ]
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2464
        ].
3108
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  2465
        lineNr >= 255 ifTrue:[
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  2466
            self codeLineNumber: lineNr on: aStream for:aCompiler.  
3108
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  2467
        ].
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2468
        aStream nextPut:selector.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2469
        (aCompiler hasLineNumber:selector) ifTrue:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2470
            aStream nextPut:lineNr.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2471
        ].
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2472
        valueNeeded ifFalse:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2473
            aStream nextPut:#drop
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2474
        ].
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2475
        ^ self
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2476
    ].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2477
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2478
    argArray notNil ifTrue:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2479
        argArray do:[:arg |
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2480
            arg codeOn:aStream inBlock:b for:aCompiler
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2481
        ]
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2482
    ].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2483
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2484
    isSuper ifTrue:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2485
        cls := aCompiler targetClass.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2486
        realReceiver isHere ifTrue:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2487
            "/ same code as supersend, but targetClass starts search
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2488
        ] ifFalse:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2489
            "/ targetClasses superclass starts search
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2490
            cls := cls superclass.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2491
        ].
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2492
        clsLitIndex := aCompiler addLiteral:cls.
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  2493
        self emitSuperSendLiteralIndex:litIndex classLiteralIndex:clsLitIndex numArgs:nargs line:lineNr on:aStream for:aCompiler.
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2494
        valueNeeded ifFalse:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2495
            aStream nextPut:#drop
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2496
        ].
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2497
        ^ self
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2498
    ].
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2499
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2500
    (nargs == 0) ifTrue:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2501
        (selector == #yourself) ifTrue:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2502
            "yourself is often added to get the receiver -
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2503
             we get it without the yourself-message"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2504
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2505
            valueNeeded ifFalse:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2506
                aStream nextPut:#drop
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2507
            ].
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2508
            ^ self
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2509
        ].
49
02660b790c3e *** empty log message ***
claus
parents: 48
diff changeset
  2510
    ].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2511
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2512
    alreadyDropped := false.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2513
    valueNeeded ifTrue:[ noSendDrop := true ].
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2514
117
claus
parents: 111
diff changeset
  2515
    litIndex <= 255 ifTrue:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2516
        (nargs <= 3) ifTrue:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2517
            noSendDrop ifTrue:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2518
                code := #(send0 send1 send2 send3) at:(nargs+1).
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2519
            ] ifFalse:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2520
                code := #(sendDrop0 sendDrop1 sendDrop2 sendDrop3) at:(nargs+1).
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2521
                alreadyDropped := true.
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2522
            ].
3108
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  2523
            lineNr >= 255 ifTrue:[
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  2524
                self codeLineNumber: lineNr on: aStream for:aCompiler.  
3108
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  2525
            ].
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2526
            aStream nextPut:code; nextPut:lineNr; nextPut:litIndex.
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2527
            valueNeeded ifFalse:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2528
                alreadyDropped ifFalse:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2529
                    aStream nextPut:#drop
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2530
                ].
1045
ee448a958d19 migration support
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
  2531
            ].
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2532
            ^ self
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2533
        ].
106
claus
parents: 104
diff changeset
  2534
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2535
        noSendDrop ifTrue:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2536
            code := #send
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2537
        ] ifFalse:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2538
            code := #sendDrop.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2539
            alreadyDropped := true.
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2540
        ].
3108
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  2541
        lineNr >= 255 ifTrue:[
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  2542
            self codeLineNumber: lineNr on: aStream for:aCompiler.  
3108
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  2543
        ].
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2544
        aStream nextPut:code; nextPut:lineNr; nextPut:litIndex; nextPut:nargs.
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2545
        valueNeeded ifFalse:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2546
            alreadyDropped ifFalse:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2547
                aStream nextPut:#drop
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2548
            ].
1045
ee448a958d19 migration support
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
  2549
        ].
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2550
        ^ self
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2551
    ].
49
02660b790c3e *** empty log message ***
claus
parents: 48
diff changeset
  2552
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  2553
    self emitSendLiteralIndex:litIndex numArgs:nargs line:lineNr on:aStream for:aCompiler.
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2554
    valueNeeded ifFalse:[
1045
ee448a958d19 migration support
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
  2555
        aStream nextPut:#drop
ee448a958d19 migration support
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
  2556
    ].
189
673580572edd fixed cascades involving super sends (i.e. super foo; bar)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
  2557
3108
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  2558
    "Modified: / 16-07-1998 / 20:26:52 / cg"
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  2559
    "Modified: / 13-04-2013 / 10:46:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2560
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2561
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2562
codeTimesRepeatOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2563
    "generate code for n timesRepeat:[ ... ]"
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2564
908
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2565
    |pos1 pos2 lateEval loopCount|
349
7632e597a3df no need to keep receiver on stack for
Claus Gittinger <cg@exept.de>
parents: 338
diff changeset
  2566
7632e597a3df no need to keep receiver on stack for
Claus Gittinger <cg@exept.de>
parents: 338
diff changeset
  2567
    lateEval := false.
528
0a35ed44989f oops - timesRepeat dupped one too many
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  2568
908
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2569
    receiver isConstant ifTrue:[
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2570
        loopCount := receiver evaluate.
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2571
        (loopCount isMemberOf:SmallInteger) ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2572
            loopCount := nil.
908
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2573
        ] ifTrue:[
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2574
            loopCount <= 0 ifTrue:[
3985
2b2a2ee12cdc #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3869
diff changeset
  2575
                "/ that's it - all we need is the receiver on the stack
908
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2576
                valueNeeded ifTrue:[
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2577
                    receiver codeOn:aStream inBlock:b for:aCompiler.
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2578
                ].
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2579
                ^ self
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2580
            ]
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2581
        ].
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2582
    ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2583
908
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2584
    receiver codeOn:aStream inBlock:b for:aCompiler.
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2585
349
7632e597a3df no need to keep receiver on stack for
Claus Gittinger <cg@exept.de>
parents: 338
diff changeset
  2586
    valueNeeded ifTrue:[
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2587
        "/ easily reconstructable - no need to keep on stack
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2588
        loopCount notNil ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2589
            lateEval := true.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2590
        ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2591
        lateEval ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2592
            aStream nextPut:#dup
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2593
        ].
349
7632e597a3df no need to keep receiver on stack for
Claus Gittinger <cg@exept.de>
parents: 338
diff changeset
  2594
    ].
96
claus
parents: 95
diff changeset
  2595
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2596
    loopCount isNil ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2597
        aStream nextPut:#pushgt0; nextPut:lineNr; nextPut:#falseJump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2598
        pos2 := aStream position + 1.
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2599
        aStream nextPut:0.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2600
    ].
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2601
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2602
    pos1 := aStream position + 1.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2603
    (argArray at:1) codeInlineOn:aStream inBlock:b valueNeeded:false for:aCompiler.
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2604
    aStream nextPut:#minus1; nextPut:lineNr.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2605
    aStream nextPut:#pushgt0; nextPut:lineNr.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2606
    aStream nextPut:#trueJump; nextPut:pos1.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2607
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2608
    pos2 notNil ifTrue:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2609
        (aStream contents) at:pos2 put:(aStream position + 1).
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2610
    ].
528
0a35ed44989f oops - timesRepeat dupped one too many
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  2611
    aStream nextPut:#drop.  "/ drop run variable
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2612
349
7632e597a3df no need to keep receiver on stack for
Claus Gittinger <cg@exept.de>
parents: 338
diff changeset
  2613
    lateEval ifTrue:[
908
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2614
        receiver codeOn:aStream inBlock:b for:aCompiler.
349
7632e597a3df no need to keep receiver on stack for
Claus Gittinger <cg@exept.de>
parents: 338
diff changeset
  2615
    ]
7632e597a3df no need to keep receiver on stack for
Claus Gittinger <cg@exept.de>
parents: 338
diff changeset
  2616
528
0a35ed44989f oops - timesRepeat dupped one too many
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  2617
    "Modified: 27.5.1997 / 14:28:49 / cg"
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2618
!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2619
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2620
codeToByDoOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2621
    "generate code for a to:b by:c do:[:arg | ... ]"
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2622
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2623
    |pos pos2 start stop step lateEval theBlock loopVarIndex
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2624
     stepVal stopVarIndex|
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2625
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2626
    "/ NOTICE: could compile it as a timesRepeat-like loop, if
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2627
    "/ the loop-counter is not accessed within the loop-block.
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2628
    "/ This generates somewhat (15%) faster code, but makes
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2629
    "/ debugging somewhat difficult (no loop-value seen in debugger).
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2630
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2631
    start := receiver.
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2632
    stop := (argArray at:1).
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2633
    step := (argArray at:2).
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2634
1397
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
  2635
"/    stop isConstant ifFalse:[self error:'should not happen' mayProceed:true].
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
  2636
"/    (stop evaluate isMemberOf:SmallInteger) ifFalse:[self error:'should not happen' mayProceed:true].
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
  2637
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
  2638
    step isConstant ifFalse:[self error:'should not happen' mayProceed:true].
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2639
    stepVal := step evaluate.
1397
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
  2640
    (stepVal isMemberOf:SmallInteger) ifFalse:[
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
  2641
        self error:'should not happen' mayProceed:true
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
  2642
    ].
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2643
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2644
    start codeOn:aStream inBlock:b for:aCompiler.
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2645
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2646
    lateEval := false.
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2647
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2648
    valueNeeded ifTrue:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2649
        "/ easily reconstructable - no need to keep on stack
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2650
        start isConstant ifTrue:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2651
            (start evaluate isMemberOf:SmallInteger) ifTrue:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2652
                lateEval := true.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2653
            ]
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2654
        ].
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2655
        lateEval ifFalse:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2656
            aStream nextPut:#dup
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2657
        ].
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2658
    ].
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2659
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2660
    "/ if stop is not constant, and not an argVar,
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2661
    "/  evaluate it into a temp slot ...
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2662
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2663
    (stop isConstant and:[stop type == #Integer]) ifFalse:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2664
        "/ a method/blockArg is constant as well ...
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2665
        (stop isVariable and:[stop isArgument]) ifFalse:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2666
            stop codeOn:aStream inBlock:b for:aCompiler.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2667
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2668
            b isNil ifTrue:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2669
                stopVarIndex := aCompiler addTempVar.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2670
                aStream nextPut:#storeMethodVar; nextPut:stopVarIndex.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2671
            ] ifFalse:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2672
                stopVarIndex := b addTempVar.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2673
                aStream nextPut:#storeBlockVar; nextPut:stopVarIndex.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2674
            ].
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2675
        ]
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2676
    ].
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2677
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2678
    pos := aStream position + 1.
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2679
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2680
    aStream nextPut:#dup.
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2681
    stopVarIndex notNil ifTrue:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2682
        b isNil ifTrue:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2683
            aStream nextPut:#pushMethodVar; nextPut:stopVarIndex.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2684
        ] ifFalse:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2685
            aStream nextPut:#pushBlockVar; nextPut:stopVarIndex.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2686
        ]
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2687
    ] ifFalse:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2688
        stop codeOn:aStream inBlock:b for:aCompiler.
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2689
    ].
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2690
    stepVal >= 0 ifTrue:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2691
        aStream nextPut:#>.
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2692
    ] ifFalse:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2693
        aStream nextPut:#<.
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2694
    ].
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2695
    (aCompiler hasLineNumber:selector) ifTrue:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2696
        aStream nextPut:lineNr.
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2697
    ].
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2698
    aStream nextPut:#trueJump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2699
    pos2 := aStream position + 1.
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2700
    aStream nextPut:0.
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2701
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2702
    theBlock := argArray at:3.
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2703
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2704
    "/ need a temporary in the outer context for
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2705
    "/ the loop ...
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2706
    b isNil ifTrue:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2707
        loopVarIndex := aCompiler addTempVar.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2708
        aStream nextPut:#dup.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2709
        aStream nextPut:#storeMethodVar; nextPut:loopVarIndex.
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2710
    ] ifFalse:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2711
        loopVarIndex := b addTempVar.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2712
        aStream nextPut:#dup.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2713
        aStream nextPut:#storeBlockVar; nextPut:loopVarIndex.
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2714
    ].
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2715
    theBlock indexOfFirstTemp:loopVarIndex.
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2716
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2717
    theBlock codeInlineOn:aStream inBlock:b valueNeeded:false for:aCompiler.
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2718
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2719
    "/ increment/decrement counter & jump back.
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2720
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2721
    stepVal == 1 ifTrue:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2722
        aStream nextPut:#plus1; nextPut:lineNr.
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2723
    ] ifFalse:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2724
        stepVal == -1 ifTrue:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2725
            aStream nextPut:#minus1; nextPut:lineNr.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2726
        ] ifFalse:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2727
            step codeOn:aStream inBlock:b for:aCompiler.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2728
            aStream nextPut:#+.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2729
            (aCompiler hasLineNumber:#+) ifTrue:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2730
                aStream nextPut:lineNr.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2731
            ].
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2732
        ]
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2733
    ].
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2734
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2735
    aStream nextPut:#jump; nextPut:pos.
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2736
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2737
    (aStream contents) at:pos2 put:(aStream position + 1).
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2738
    aStream nextPut:#drop.  "/ drop run variable
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2739
    lateEval ifTrue:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2740
        start codeOn:aStream inBlock:b for:aCompiler.
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2741
    ].
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2742
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2743
    "/ no need to nil-out loop-tempVar to help GC
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2744
    "/ (its integer, anyway).
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2745
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2746
    b isNil ifTrue:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2747
        aCompiler removeTempVar
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2748
    ] ifFalse:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2749
        b removeTempVar
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2750
    ].
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2751
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2752
    stopVarIndex notNil ifTrue:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2753
        b isNil ifTrue:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2754
            aCompiler removeTempVar
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2755
        ] ifFalse:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2756
            b removeTempVar
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2757
        ]
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2758
    ].
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2759
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2760
    "Created: 27.6.1997 / 12:48:18 / cg"
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2761
    "Modified: 27.6.1997 / 13:43:06 / cg"
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2762
!
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2763
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2764
codeToDoOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
4389
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  2765
    "generate code for n to:m do:[:unusedArg | ... ]
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  2766
     This MAY ONLY be called, if the receiver is known to be an integer
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  2767
     or float."
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2768
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2769
    |pos pos2 start stop lateEval theBlock loopVarIndex
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2770
     stopVarIndex|
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2771
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2772
    "/ NOTICE: could compile it as a timesRepeat, if
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2773
    "/ the loop-counter is not accessed within the loop-block.
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2774
    "/ This generates somewhat (15%) faster code, but makes
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2775
    "/ debugging somewhat difficult (no loop-value seen in debugger).
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2776
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2777
    start := receiver.
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2778
    stop := argArray at:1.
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2779
"/    stop isConstant ifFalse:[self halt:'should not happen'].
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2780
"/    (stop evaluate isMemberOf:SmallInteger) ifFalse:[self halt:'should not happen'].
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2781
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2782
    start codeOn:aStream inBlock:b for:aCompiler.
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2783
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2784
    lateEval := false.
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2785
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2786
    valueNeeded ifTrue:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2787
        "/ easily reconstructable - no need to keep on stack
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2788
        start isConstant ifTrue:[
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2789
            (start evaluate isMemberOf:SmallInteger) ifTrue:[
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2790
                lateEval := true.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2791
            ]
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2792
        ].
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2793
        lateEval ifFalse:[
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2794
            aStream nextPut:#dup
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2795
        ].
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2796
    ].
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2797
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2798
    "/ if stop is not constant, and not an argVar,
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2799
    "/  evaluate it into a temp slot ...
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2800
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2801
    (stop isConstant and:[stop type == #Integer]) ifFalse:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2802
        "/ a method/blockArg is constant as well ...
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2803
        (stop isVariable and:[stop isArgument]) ifFalse:[
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2804
            stop codeOn:aStream inBlock:b for:aCompiler.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2805
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2806
            b isNil ifTrue:[
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2807
                stopVarIndex := aCompiler addTempVar.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2808
                aStream nextPut:#storeMethodVar; nextPut:stopVarIndex.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2809
            ] ifFalse:[
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2810
                stopVarIndex := b addTempVar.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2811
                aStream nextPut:#storeBlockVar; nextPut:stopVarIndex.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2812
            ].
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2813
        ]
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2814
    ].
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2815
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2816
    pos := aStream position + 1.
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2817
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2818
    self codeLineNumber:lineNr on:aStream for:aCompiler.  
624
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 602
diff changeset
  2819
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2820
    aStream nextPut:#dup.
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2821
    stopVarIndex notNil ifTrue:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2822
        b isNil ifTrue:[
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2823
            aStream nextPut:#pushMethodVar; nextPut:stopVarIndex.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2824
        ] ifFalse:[
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2825
            aStream nextPut:#pushBlockVar; nextPut:stopVarIndex.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2826
        ]
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2827
    ] ifFalse:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2828
        stop codeOn:aStream inBlock:b for:aCompiler.
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2829
    ].
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2830
    aStream nextPut:#>.
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2831
    (aCompiler hasLineNumber:selector) ifTrue:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2832
        aStream nextPut:lineNr.
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2833
    ].
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2834
    aStream nextPut:#trueJump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2835
    pos2 := aStream position + 1.
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2836
    aStream nextPut:0.
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2837
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2838
    theBlock := argArray at:2.
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2839
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2840
    "/ need a temporary in the outer context for
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2841
    "/ the loop ...
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2842
    b isNil ifTrue:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2843
        loopVarIndex := aCompiler addTempVar.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2844
        aStream nextPut:#dup.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2845
        aStream nextPut:#storeMethodVar; nextPut:loopVarIndex.
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2846
    ] ifFalse:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2847
        loopVarIndex := b addTempVar.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2848
        aStream nextPut:#dup.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2849
        aStream nextPut:#storeBlockVar; nextPut:loopVarIndex.
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2850
    ].
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2851
    theBlock indexOfFirstTemp:loopVarIndex.
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2852
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2853
    theBlock codeInlineOn:aStream inBlock:b valueNeeded:false for:aCompiler.
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2854
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2855
    "/ increment counter & jump back.
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2856
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2857
    aStream nextPut:#plus1; nextPut:lineNr; nextPut:#jump; nextPut:pos.
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2858
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2859
    (aStream contents) at:pos2 put:(aStream position + 1).
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2860
    aStream nextPut:#drop.  "/ drop run variable
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2861
    lateEval ifTrue:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2862
        start codeOn:aStream inBlock:b for:aCompiler.
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2863
    ].
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2864
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2865
    "/ no need to nil-out loop-tempVar to help GC
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2866
    "/ (its integer, anyway).
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2867
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2868
    b isNil ifTrue:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2869
        aCompiler removeTempVar
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2870
    ] ifFalse:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2871
        b removeTempVar
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2872
    ].
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2873
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2874
    stopVarIndex notNil ifTrue:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2875
        b isNil ifTrue:[
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2876
            aCompiler removeTempVar
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2877
        ] ifFalse:[
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2878
            b removeTempVar
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2879
        ]
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2880
    ].
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2881
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2882
    "Created: / 26-06-1997 / 10:58:47 / cg"
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2883
    "Modified: / 19-10-1997 / 01:31:40 / cg"
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2884
    "Modified: / 19-07-2018 / 14:09:05 / Stefan Vogel"
4389
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  2885
    "Modified (comment): / 06-03-2019 / 19:37:02 / Claus Gittinger"
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2886
!
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2887
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2888
codeValueSendOn:aStream for:aCompiler
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2889
    "/ send #value to the top of the stack ...
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2890
    aStream nextPut:#value.
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2891
    (aCompiler hasLineNumber:#value) ifTrue:[
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2892
        aStream nextPut:lineNr.
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2893
    ]
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2894
!
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2895
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2896
codeWhileOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
200
b2f77bd77070 inline code for [...] whileXXX
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  2897
    "generate code for
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2898
        [...] whileXXX:[ ... ] 
200
b2f77bd77070 inline code for [...] whileXXX
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  2899
     and also 
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2900
        [...] whileXXX
200
b2f77bd77070 inline code for [...] whileXXX
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  2901
    "
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2902
200
b2f77bd77070 inline code for [...] whileXXX
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  2903
    |pos pos2 theReceiver theArg theByteCode optByteCode needLineNr blockExpr
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2904
     hasLoopBlock fastReceiver condStats constCondition|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2905
200
b2f77bd77070 inline code for [...] whileXXX
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  2906
    hasLoopBlock := true.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2907
    (selector == #whileTrue:) ifTrue:[
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2908
        theByteCode := #falseJump.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2909
    ] ifFalse:[
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2910
        (selector == #whileFalse:) ifTrue:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2911
            theByteCode := #trueJump
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2912
        ] ifFalse:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2913
            hasLoopBlock := false.
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2914
            (selector == #whileTrue) ifTrue:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2915
                theByteCode := #trueJump
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2916
            ] ifFalse:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2917
                theByteCode := #falseJump
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2918
            ].
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2919
        ]
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2920
    ].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2921
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2922
    theReceiver := receiver.
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  2923
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2924
    (receiver isBlock
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2925
    and:[(condStats := receiver statements) notNil
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2926
    and:[condStats nextStatement isNil
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2927
    and:[condStats expression notNil]]])
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  2928
    ifTrue:[
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2929
        fastReceiver := receiver statements expression.
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  2930
        optByteCode := self optimizedConditionFor:fastReceiver with:theByteCode for:aCompiler.
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  2931
    ] ifFalse:[
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  2932
        optByteCode := self optimizedConditionFor:theReceiver with:theByteCode for:aCompiler.
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  2933
    ].
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  2934
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2935
    optByteCode notNil ifTrue:[
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2936
        ((optByteCode == #eqJump) or:[optByteCode == #notEqJump]) ifTrue:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2937
            theArg := receiver statements expression arg1
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2938
        ].
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2939
        theReceiver := receiver statements expression receiver.
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2940
        theByteCode := optByteCode
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2941
    ].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2942
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2943
"/ OLD:
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2944
"/    valueNeeded ifTrue:[aStream nextPut:#pushNil].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2945
"/
167
d3dbd739c65a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
  2946
    needLineNr := true.
d3dbd739c65a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
  2947
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2948
    pos := aStream position + 1.
386
2f66de89a89b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 371
diff changeset
  2949
389
8aa5f9f08139 care for lineNumber in while-loop
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
  2950
"/    aCompiler lineNumberInfo == #full ifTrue:[
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2951
        self codeLineNumber:lineNr on:aStream for:aCompiler.
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2952
        needLineNr := false.
389
8aa5f9f08139 care for lineNumber in while-loop
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
  2953
"/    ].
386
2f66de89a89b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 371
diff changeset
  2954
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2955
    optByteCode notNil ifTrue:[
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2956
        theReceiver codeOn:aStream inBlock:b for:aCompiler.
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2957
        theArg notNil ifTrue:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2958
            theArg codeOn:aStream inBlock:b for:aCompiler
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2959
        ]
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2960
    ] ifFalse:[
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2961
        (fastReceiver notNil 
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2962
        and:[fastReceiver isConstant]) ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2963
            constCondition := fastReceiver evaluate.
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2964
            theByteCode == #trueJump ifTrue:[
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2965
                constCondition == true ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2966
                    theByteCode := #jump
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2967
                ] ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2968
                    constCondition == false ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2969
                        theByteCode := #never
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2970
                    ]
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2971
                ]
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2972
            ] ifFalse:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2973
                theByteCode == #falseJump ifTrue:[
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2974
                    constCondition == false ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2975
                        theByteCode := #jump
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2976
                    ] ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2977
                        constCondition == true ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2978
                            theByteCode := #never
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2979
                        ]
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2980
                    ]
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2981
                ]
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2982
            ]
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2983
        ].
167
d3dbd739c65a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
  2984
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2985
        (theByteCode ~~ #jump and:[theByteCode ~~ #never]) ifTrue:[
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2986
            theReceiver codeInlineOn:aStream inBlock:b for:aCompiler.
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2987
        ].
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  2988
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2989
        "/
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2990
        "/ cannot enable code below 
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2991
        "/ (tiny loops would not be debuggable with next, since lineNo remains the same)
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2992
        "/ think about it ...
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2993
        "/
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2994
        blockExpr := theReceiver simpleSendBlockExpression.
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2995
        blockExpr notNil ifTrue:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2996
            blockExpr isMessage ifTrue:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2997
                (aCompiler hasLineNumber:(blockExpr selector)) ifTrue:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2998
                    blockExpr lineNumber == lineNr ifTrue:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2999
                        needLineNr := false
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  3000
                    ]
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  3001
                ]
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  3002
            ]
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  3003
        ].
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3004
    ].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3005
167
d3dbd739c65a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
  3006
    needLineNr ifTrue:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  3007
        self codeLineNumber:lineNr on:aStream for:aCompiler.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3008
    ].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3009
200
b2f77bd77070 inline code for [...] whileXXX
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  3010
    hasLoopBlock ifFalse:[
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  3011
        "/ simple [...] whileXXX
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  3012
        theByteCode ~~ #never ifTrue:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  3013
            aStream nextPut:theByteCode; nextPut:pos.
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  3014
        ].
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  3015
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  3016
        valueNeeded ifTrue:[aStream nextPut:#pushNil].
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  3017
        ^ self
200
b2f77bd77070 inline code for [...] whileXXX
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  3018
    ].
b2f77bd77070 inline code for [...] whileXXX
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  3019
b2f77bd77070 inline code for [...] whileXXX
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  3020
    "/ [...] whileXXX:[...]
b2f77bd77070 inline code for [...] whileXXX
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  3021
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  3022
    theByteCode ~~ #never ifTrue:[
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  3023
        aStream nextPut:theByteCode.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  3024
        pos2 := aStream position + 1.
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  3025
        aStream nextPut:0.
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  3026
    ].
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  3027
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3028
    (argArray at:1) codeInlineOn:aStream inBlock:b valueNeeded:false for:aCompiler.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3029
    aStream nextPut:#jump; nextPut:pos.
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  3030
    theByteCode ~~ #never ifTrue:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  3031
        (aStream contents) at:pos2 put:(aStream position + 1).
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  3032
    ].
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  3033
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3034
    valueNeeded ifTrue:[aStream nextPut:#pushNil].
167
d3dbd739c65a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
  3035
389
8aa5f9f08139 care for lineNumber in while-loop
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
  3036
    "Modified: 22.10.1996 / 21:34:37 / cg"
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3037
!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3038
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3039
new_codeWhileOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3040
    "generate code for
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3041
        [...] whileXXX:[ ... ] 
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3042
     and also 
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3043
        [...] whileXXX
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3044
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3045
     This generates the check at the end and should generate better
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3046
     code (only 1 conditional-branch at the end instead of 2 branches).
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3047
     However, for now, it is disabled, since the JIT has special provisions
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3048
     to detect loops and actually generates better machine code for the
910
eb4849c04fff comment
Claus Gittinger <cg@exept.de>
parents: 909
diff changeset
  3049
     old bytecode sequence ... (sigh)
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3050
    "
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3051
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3052
    |pos pos0 theReceiver theArg theByteCode optByteCode needLineNr blockExpr
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3053
     hasLoopBlock fastReceiver condStats constCondition|
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3054
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3055
    hasLoopBlock := true.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3056
    (selector == #whileTrue:) ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3057
        theByteCode := #trueJump.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3058
    ] ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3059
        (selector == #whileFalse:) ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3060
            theByteCode := #falseJump
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3061
        ] ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3062
            hasLoopBlock := false.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3063
            (selector == #whileTrue) ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3064
                theByteCode := #trueJump
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3065
            ] ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3066
                theByteCode := #falseJump
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3067
            ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3068
        ]
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3069
    ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3070
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3071
    theReceiver := receiver.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3072
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3073
    (receiver isBlock
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3074
    and:[(condStats := receiver statements) notNil
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3075
    and:[condStats nextStatement isNil
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3076
    and:[(fastReceiver := condStats expression) notNil]]])
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3077
    ifTrue:[
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3078
        optByteCode := self optimizedConditionFor:fastReceiver with:theByteCode for:aCompiler.
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3079
    ] ifFalse:[
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3080
        optByteCode := self optimizedConditionFor:theReceiver with:theByteCode for:aCompiler.
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3081
    ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3082
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3083
    optByteCode notNil ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3084
        ((optByteCode == #eqJump) or:[optByteCode == #notEqJump]) ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3085
            theArg := receiver statements expression arg1
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3086
        ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3087
        theReceiver := receiver statements expression receiver.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3088
        theByteCode := optByteCode
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3089
    ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3090
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3091
    needLineNr := true.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3092
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3093
    hasLoopBlock ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3094
        (argArray at:1) isEmptyBlock ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3095
            aStream nextPut:#jump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  3096
            pos0 := aStream position + 1.
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3097
            aStream nextPut:0.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3098
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  3099
            pos := aStream position + 1.
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3100
            (argArray at:1) codeInlineOn:aStream inBlock:b valueNeeded:false for:aCompiler.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3101
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  3102
            (aStream contents) at:pos0 put:(aStream position + 1).
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3103
        ]
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3104
    ] ifFalse:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  3105
        pos := aStream position + 1.
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3106
    ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3107
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3108
    optByteCode isNil ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3109
        blockExpr := theReceiver simpleSendBlockExpression.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3110
        blockExpr notNil ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3111
            blockExpr isMessage ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3112
                (aCompiler hasLineNumber:(blockExpr selector)) ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3113
                    blockExpr lineNumber == lineNr ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3114
                        needLineNr := false
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3115
                    ]
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3116
                ]
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3117
            ]
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3118
        ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3119
    ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3120
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3121
    needLineNr ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3122
        self codeLineNumber:lineNr on:aStream for:aCompiler.
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  3123
        needLineNr := false.
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3124
    ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3125
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3126
    optByteCode notNil ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3127
        theReceiver codeOn:aStream inBlock:b for:aCompiler.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3128
        theArg notNil ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3129
            theArg codeOn:aStream inBlock:b for:aCompiler
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3130
        ]
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3131
    ] ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3132
        (fastReceiver notNil 
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3133
        and:[fastReceiver isConstant]) ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3134
            constCondition := fastReceiver evaluate.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3135
            theByteCode == #trueJump ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3136
                constCondition == true ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3137
                    theByteCode := #jump
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3138
                ] ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3139
                    constCondition == false ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3140
                        theByteCode := #never
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3141
                    ]
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3142
                ]
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3143
            ] ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3144
                theByteCode == #falseJump ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3145
                    constCondition == false ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3146
                        theByteCode := #jump
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3147
                    ] ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3148
                        constCondition == true ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3149
                            theByteCode := #never
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3150
                        ]
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3151
                    ]
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3152
                ]
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3153
            ]
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3154
        ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3155
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3156
        (theByteCode ~~ #jump and:[theByteCode ~~ #never]) ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3157
            theReceiver codeInlineOn:aStream inBlock:b for:aCompiler.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3158
        ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3159
    ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3160
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3161
    hasLoopBlock ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3162
        "/ simple [...] whileXXX
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3163
        theByteCode ~~ #never ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3164
            aStream nextPut:theByteCode; nextPut:pos.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3165
        ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3166
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3167
        valueNeeded ifTrue:[aStream nextPut:#pushNil].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3168
        ^ self
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3169
    ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3170
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3171
    "/ [...] whileXXX:[...]
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3172
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3173
    theByteCode ~~ #never ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3174
        aStream nextPut:theByteCode.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3175
        aStream nextPut:pos.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3176
    ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3177
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3178
    valueNeeded ifTrue:[aStream nextPut:#pushNil].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3179
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  3180
    "Modified: / 22-10-1996 / 21:34:37 / cg"
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  3181
    "Modified (format): / 19-07-2018 / 14:24:48 / Stefan Vogel"
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3182
!
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3183
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3184
optimizedConditionFor:aReceiver with:aByteCode for:aCompiler
186
05a99f1bd747 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 167
diff changeset
  3185
    |rec sel stats|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3186
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3187
    rec := aReceiver.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3188
    (rec isBlock) ifTrue:[
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3189
        (stats := rec statements) notNil ifTrue:[
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3190
            stats nextStatement isNil ifTrue:[
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3191
                rec := rec statements expression
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3192
            ]
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3193
        ]
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3194
    ].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3195
    (rec isUnaryMessage) ifTrue:[
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3196
        sel := rec selector.
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3197
        (sel == #isNil) ifTrue:[
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3198
            "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3199
            "/ isNil trueJmp  -> nilJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3200
            "/ isNil falseJmp -> notNilJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3201
            "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3202
            aCompiler addLiteral:#isNil.
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3203
            (aByteCode == #trueJump) ifTrue:[^ #nilJump].
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3204
            (aByteCode == #falseJump) ifTrue:[^ #notNilJump]
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3205
        ].
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3206
        (sel == #notNil) ifTrue:[
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3207
            "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3208
            "/ notNil trueJmp  -> notNilJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3209
            "/ notNil falseJmp -> nilJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3210
            "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3211
            aCompiler addLiteral:#notNil.
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3212
            (aByteCode == #trueJump) ifTrue:[^ #notNilJump].
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3213
            (aByteCode == #falseJump) ifTrue:[^ #nilJump]
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3214
        ].
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3215
        (sel == #not) ifTrue:[
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3216
            "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3217
            "/ not trueJmp  -> falseJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3218
            "/ not falseJmp -> trueJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3219
            "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3220
            aCompiler addLiteral:#not.
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3221
            (aByteCode == #trueJump) ifTrue:[^ #falseJump].
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3222
            (aByteCode == #falseJump) ifTrue:[^ #trueJump]
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3223
        ].
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3224
        ^ nil
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3225
    ].
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3226
    (rec isBinaryMessage) ifTrue:[
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3227
        sel := rec selector.
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3228
        rec arg1 isConstant ifTrue:[
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3229
            (rec arg1 value == 0) ifTrue:[
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3230
                "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3231
                "/ ==0 trueJmp  -> zeroJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3232
                "/ ==0 falseJmp -> notZeroJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3233
                "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3234
                (sel == #==) ifTrue:[
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3235
                    aCompiler addLiteral:#==.
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3236
                    (aByteCode == #trueJump) ifTrue:[^ #zeroJump].
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3237
                    (aByteCode == #falseJump) ifTrue:[^ #notZeroJump]
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3238
                ].
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3239
                "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3240
                "/ ~~0 trueJmp  -> notZeroJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3241
                "/ ~~0 falseJmp -> zeroJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3242
                "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3243
                (sel == #~~) ifTrue:[
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3244
                    aCompiler addLiteral:#~~.
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3245
                    (aByteCode == #falseJump) ifTrue:[^ #zeroJump].
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3246
                    (aByteCode == #trueJump) ifTrue:[^ #notZeroJump]
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3247
                ].
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3248
                ^ nil
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3249
            ]
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3250
        ].
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3251
        (sel == #==) ifTrue:[
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3252
            "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3253
            "/ == trueJmp  -> eqJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3254
            "/ == falseJmp -> notEqJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3255
            "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3256
            aCompiler addLiteral:#==.
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3257
            (aByteCode == #trueJump) ifTrue:[^ #eqJump].
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3258
            (aByteCode == #falseJump) ifTrue:[^ #notEqJump]
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3259
        ].
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3260
        (sel == #~~) ifTrue:[
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3261
            "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3262
            "/ ~~ trueJmp  -> notEqJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3263
            "/ ~~ falseJmp -> eqJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3264
            "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3265
            aCompiler addLiteral:#~~.
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3266
            (aByteCode == #falseJump) ifTrue:[^ #eqJump].
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3267
            (aByteCode == #trueJump) ifTrue:[^ #notEqJump]
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3268
        ]
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3269
    ].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3270
    ^ nil
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3271
!
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3272
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3273
tryFoldedIfOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3274
    |rVal branch|
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3275
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3276
    receiver isConstant ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3277
        rVal := receiver evaluate.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3278
        rVal == true ifTrue:[
1248
ba526cbb348a fixed optimization of: <true|false> ifTrue/false: non-block
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  3279
            (selector == #ifFalse:) ifTrue:[
1422
cdee45eb0303 oops - wrong code was generatedd for inlined
Claus Gittinger <cg@exept.de>
parents: 1397
diff changeset
  3280
                valueNeeded ifTrue:[
cdee45eb0303 oops - wrong code was generatedd for inlined
Claus Gittinger <cg@exept.de>
parents: 1397
diff changeset
  3281
                    "/ true ifFalse:[] - evaluates to nil.
cdee45eb0303 oops - wrong code was generatedd for inlined
Claus Gittinger <cg@exept.de>
parents: 1397
diff changeset
  3282
                    aStream nextPut:#pushNil
cdee45eb0303 oops - wrong code was generatedd for inlined
Claus Gittinger <cg@exept.de>
parents: 1397
diff changeset
  3283
                ].
1248
ba526cbb348a fixed optimization of: <true|false> ifTrue/false: non-block
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  3284
                ^ true.
ba526cbb348a fixed optimization of: <true|false> ifTrue/false: non-block
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  3285
            ].
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3286
            ((selector == #ifTrue:) or:[selector == #ifTrue:ifFalse:]) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3287
                branch := (argArray at: 1).
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3288
            ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3289
            (selector == #ifFalse:ifTrue:) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3290
                branch := (argArray at: 2).
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3291
            ].
1248
ba526cbb348a fixed optimization of: <true|false> ifTrue/false: non-block
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  3292
        ].
ba526cbb348a fixed optimization of: <true|false> ifTrue/false: non-block
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  3293
        rVal == false ifTrue:[
ba526cbb348a fixed optimization of: <true|false> ifTrue/false: non-block
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  3294
            (selector == #ifTrue:) ifTrue:[
1422
cdee45eb0303 oops - wrong code was generatedd for inlined
Claus Gittinger <cg@exept.de>
parents: 1397
diff changeset
  3295
                valueNeeded ifTrue:[
cdee45eb0303 oops - wrong code was generatedd for inlined
Claus Gittinger <cg@exept.de>
parents: 1397
diff changeset
  3296
                    "/ false ifTrue:[] - evaluates to nil.
cdee45eb0303 oops - wrong code was generatedd for inlined
Claus Gittinger <cg@exept.de>
parents: 1397
diff changeset
  3297
                    aStream nextPut:#pushNil
cdee45eb0303 oops - wrong code was generatedd for inlined
Claus Gittinger <cg@exept.de>
parents: 1397
diff changeset
  3298
                ].
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3299
                ^ true.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3300
            ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3301
            ((selector == #ifFalse:) or:[selector == #ifFalse:ifTrue:]) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3302
                branch := (argArray at: 1).
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3303
            ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3304
            (selector == #ifTrue:ifFalse:) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3305
                branch := (argArray at: 2).
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3306
            ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3307
        ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3308
        branch notNil ifTrue:[
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  3309
            self codeBlockEvaluation:branch on:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3310
            ^ true.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3311
        ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3312
    ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3313
    ^ false
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3314
! !
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3315
1080
bd3f19f6009a category change
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  3316
!MessageNode methodsFor:'printing & storing'!
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3317
1588
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3318
printOn:aStream indent:i 
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3319
    |selectorParts|
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3320
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3321
    (#( whileTrue: whileFalse: ) includes:selector) ifTrue:[
888
5858090fc8c3 changed #printOn: to indent
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
  3322
        receiver isBlock ifTrue:[
5858090fc8c3 changed #printOn: to indent
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
  3323
            ^ self printWhileOn:aStream indent:i
5858090fc8c3 changed #printOn: to indent
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
  3324
        ].
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3325
    ].
3330
6abed184183c class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3317
diff changeset
  3326
    selectorParts := selector keywords.
1588
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3327
    receiver printOn:aStream indent:i parenthized:(receiver precedence <= self precedence).
1791
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
  3328
    argArray notNil ifTrue:[
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
  3329
        argArray with:selectorParts
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
  3330
            do:[:arg :selPart | 
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
  3331
                aStream
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
  3332
                    cr;
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
  3333
                    spaces:i + 4;
2542
251e766c3530 changed: #printOn:indent:
Claus Gittinger <cg@exept.de>
parents: 2521
diff changeset
  3334
                    nextPutAll:selPart.
251e766c3530 changed: #printOn:indent:
Claus Gittinger <cg@exept.de>
parents: 2521
diff changeset
  3335
                arg printOn:aStream 
251e766c3530 changed: #printOn:indent:
Claus Gittinger <cg@exept.de>
parents: 2521
diff changeset
  3336
                    indent:i + 4 
251e766c3530 changed: #printOn:indent:
Claus Gittinger <cg@exept.de>
parents: 2521
diff changeset
  3337
                    parenthized:(arg precedence <= self precedence).
1791
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
  3338
            ]
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
  3339
    ].
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
  3340
2542
251e766c3530 changed: #printOn:indent:
Claus Gittinger <cg@exept.de>
parents: 2521
diff changeset
  3341
    "Modified: / 06-07-2011 / 09:44:55 / cg"
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3342
!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3343
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3344
printWhileOn:aStream indent:i
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3345
    "special handling of whileTrue/whileFalse"
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3346
1588
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3347
    |arg|
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3348
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3349
    aStream nextPutAll:'['.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3350
    receiver statements printOn:aStream indent:i.
1588
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3351
    aStream nextPutAll:'] ',selector,' '.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3352
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3353
    arg := argArray at:1.
1588
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3354
    arg printOn:aStream indent:i parenthized:(arg precedence <= self precedence).
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3355
! !
106
claus
parents: 104
diff changeset
  3356
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3357
!MessageNode methodsFor:'queries'!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3358
1565
9388e72e2dff Define #argumentCount as ANSI alias for #numArgs
Stefan Vogel <sv@exept.de>
parents: 1533
diff changeset
  3359
argumentCount
4554
0e22c00caf3c #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 4530
diff changeset
  3360
    "ANSI compatibility - same as numArgs"
1565
9388e72e2dff Define #argumentCount as ANSI alias for #numArgs
Stefan Vogel <sv@exept.de>
parents: 1533
diff changeset
  3361
9388e72e2dff Define #argumentCount as ANSI alias for #numArgs
Stefan Vogel <sv@exept.de>
parents: 1533
diff changeset
  3362
    ^ argArray size
9388e72e2dff Define #argumentCount as ANSI alias for #numArgs
Stefan Vogel <sv@exept.de>
parents: 1533
diff changeset
  3363
!
9388e72e2dff Define #argumentCount as ANSI alias for #numArgs
Stefan Vogel <sv@exept.de>
parents: 1533
diff changeset
  3364
395
16156d8711c2 added block collector
Claus Gittinger <cg@exept.de>
parents: 389
diff changeset
  3365
collectBlocksInto:aCollection
16156d8711c2 added block collector
Claus Gittinger <cg@exept.de>
parents: 389
diff changeset
  3366
    receiver collectBlocksInto:aCollection.
4371
4b418ce7d687 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4347
diff changeset
  3367
    argArray size ~~ 0 ifTrue:[
1727
58820b0c1e7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  3368
        argArray do:[:arg |
58820b0c1e7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  3369
            arg collectBlocksInto:aCollection.
58820b0c1e7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  3370
        ]
395
16156d8711c2 added block collector
Claus Gittinger <cg@exept.de>
parents: 389
diff changeset
  3371
    ].
16156d8711c2 added block collector
Claus Gittinger <cg@exept.de>
parents: 389
diff changeset
  3372
4371
4b418ce7d687 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4347
diff changeset
  3373
    "Created: / 23-10-1996 / 15:44:49 / cg"
4b418ce7d687 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4347
diff changeset
  3374
    "Modified: / 01-03-2019 / 15:59:25 / Claus Gittinger"
395
16156d8711c2 added block collector
Claus Gittinger <cg@exept.de>
parents: 389
diff changeset
  3375
!
16156d8711c2 added block collector
Claus Gittinger <cg@exept.de>
parents: 389
diff changeset
  3376
2384
3854f86e767a added: #containsReturn
Claus Gittinger <cg@exept.de>
parents: 2345
diff changeset
  3377
containsReturn
3854f86e767a added: #containsReturn
Claus Gittinger <cg@exept.de>
parents: 2345
diff changeset
  3378
    receiver containsReturn ifTrue:[^ true].
3854f86e767a added: #containsReturn
Claus Gittinger <cg@exept.de>
parents: 2345
diff changeset
  3379
    ^ self arguments contains:[:arg | arg containsReturn]
3854f86e767a added: #containsReturn
Claus Gittinger <cg@exept.de>
parents: 2345
diff changeset
  3380
!
3854f86e767a added: #containsReturn
Claus Gittinger <cg@exept.de>
parents: 2345
diff changeset
  3381
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  3382
isCascade
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  3383
    ^ false
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  3384
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  3385
    "Created: / 16.7.1998 / 20:03:42 / cg"
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  3386
!
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  3387
1384
0db9682870d9 evaluate -> evaluateIn:
Claus Gittinger <cg@exept.de>
parents: 1382
diff changeset
  3388
numArgs
4717
946cf373c4b5 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 4703
diff changeset
  3389
    "please use argumentCount for ANSI compatibility"
946cf373c4b5 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 4703
diff changeset
  3390
1384
0db9682870d9 evaluate -> evaluateIn:
Claus Gittinger <cg@exept.de>
parents: 1382
diff changeset
  3391
    ^ argArray size
0db9682870d9 evaluate -> evaluateIn:
Claus Gittinger <cg@exept.de>
parents: 1382
diff changeset
  3392
!
0db9682870d9 evaluate -> evaluateIn:
Claus Gittinger <cg@exept.de>
parents: 1382
diff changeset
  3393
1588
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3394
precedence
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3395
    ^ 10
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3396
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3397
    "Created: / 20-04-2005 / 14:10:59 / cg"
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3398
!
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3399
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  3400
realReceiver
746
429cfc59b440 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  3401
    receiver isCascade ifTrue:[
429cfc59b440 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  3402
        ^ receiver realReceiver
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  3403
    ].
746
429cfc59b440 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  3404
    self isCascade ifTrue:[
429cfc59b440 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  3405
        ^ receiver receiver
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  3406
    ].
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  3407
746
429cfc59b440 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  3408
    ^ receiver
429cfc59b440 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  3409
429cfc59b440 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  3410
    "Modified: / 17.7.1998 / 02:09:05 / cg"
2268
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3411
!
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3412
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3413
withConstantValueDo:aBlock
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3414
    "return true, if this evaluates to a constant value
3573
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3415
     and evaluate aBlock with it. 
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3416
     Also return true, if the node can be evaluated at compile time.
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3417
     Used for constant folding"
3016
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3418
3017
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3419
    |recVal argValues allArgsConstant fold cond2 condVal2|
2268
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3420
2273
d952d08cf43c changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2270
diff changeset
  3421
    (receiver isGlobal and:[receiver name = 'Smalltalk']) ifTrue:[
3017
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3422
        "/ (Smalltalk respondsTo:#isSmalltalkX) -> true
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3423
        (selector == #respondsTo:) ifTrue:[
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3424
            argArray size == 1 ifTrue:[
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3425
                argArray first isConstant ifTrue:[
3595
78895886711a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3594
diff changeset
  3426
                    (#(isSmalltalkX isVisualSmalltalkEnterprise isVisualWorks isSqueak isDolphinSmalltalk)
3573
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3427
                        includesIdentical: argArray first value)
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3428
                    ifTrue:[
3017
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3429
                        "/ true here !!
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3430
                        aBlock value:true.
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3431
                        ^ true
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3432
                    ].
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3433
                ].
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3434
            ].
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3435
        ].
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3436
        "/ (Smalltalk isSmalltalkX) -> true
2273
d952d08cf43c changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2270
diff changeset
  3437
        (selector == #isSmalltalkX) ifTrue:[
d952d08cf43c changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2270
diff changeset
  3438
            "/ true here !!
d952d08cf43c changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2270
diff changeset
  3439
            aBlock value:true.
d952d08cf43c changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2270
diff changeset
  3440
            ^ true
d952d08cf43c changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2270
diff changeset
  3441
        ].
3573
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3442
        "/ (Smalltalk isVisualSmalltalkEnterprise) -> false
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3443
        ((selector == #isVisualSmalltalkEnterprise) 
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3444
        or:[ (selector == #isVisualWorks) 
3594
6dd08208e80c class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3583
diff changeset
  3445
        or:[ (selector == #isDolphinSmalltalk) 
6dd08208e80c class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3583
diff changeset
  3446
        or:[ (selector == #isSqueak) ]]]) ifTrue:[
3573
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3447
            "/ true here !!
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3448
            aBlock value:false.
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3449
            ^ true
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3450
        ].
2273
d952d08cf43c changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2270
diff changeset
  3451
    ].
d952d08cf43c changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2270
diff changeset
  3452
2268
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3453
    (receiver withConstantValueDo:[:val | recVal := val]) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3454
        argValues := Array new:argArray size.
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3455
        allArgsConstant := true.
2270
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
  3456
        argArray notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
  3457
            argArray doWithIndex:[:arg :index |
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
  3458
                allArgsConstant := allArgsConstant
2268
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3459
                                and:[ arg withConstantValueDo:[:val | argValues at:index put:val] ]
2270
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
  3460
            ].
2268
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3461
        ].
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3462
        allArgsConstant ifTrue:[
3016
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3463
            fold := true.
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3464
2268
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3465
            "/ only a few messages are checked:
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3466
            recVal isNumber ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3467
                (#(positive negative abs negated + - * == = ~= ~~) includes:selector) ifFalse:[
3016
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3468
                    recVal isInteger ifTrue:[
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3469
                        (#(<< bitShift: bitAnd: bitOr:) includes:selector) ifFalse:[
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3470
                            ^ false
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3471
                        ].
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3472
                    ] ifFalse:[
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3473
                        ^ false
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3474
                    ]
2268
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3475
                ].
2331
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3476
            ] ifFalse:[
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3477
                recVal isBoolean ifTrue:[
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3478
                    (#(not && || ) includes:selector) ifFalse:[
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3479
                        ^ false
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3480
                    ].
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3481
                ] ifFalse:[
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3482
                    recVal isString ifTrue:[
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3483
                        (#(size) includes:selector) ifFalse:[
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3484
                            ^ false
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3485
                        ].
2925
9ab2302a632d changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
  3486
                    ] ifFalse:[
9ab2302a632d changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
  3487
                        recVal isArray ifTrue:[
9ab2302a632d changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
  3488
                            (#(size) includes:selector) ifFalse:[
9ab2302a632d changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
  3489
                                ^ false
9ab2302a632d changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
  3490
                            ].
3016
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3491
                        ] ifFalse:[
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3492
                            ^ false
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3493
                        ]
2331
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3494
                    ].
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3495
                ]
2268
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3496
            ].
3016
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3497
        
2268
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3498
            aBlock value:(recVal perform:selector withArguments:argValues).
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3499
            ^ true
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3500
        ].
3017
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3501
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3502
        "/ detects: ((Smalltalk respondsTo:#isSmalltalkX) and:[Smalltalk isSmalltalkX]) ifTrue:[
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3503
        selector == #and: ifTrue:[
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3504
            recVal == false ifTrue:[
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3505
                "/ false here !!
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3506
                aBlock value:recVal.
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3507
                ^ true "/ constant
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3508
            ].
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3509
            recVal == true ifTrue:[
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3510
                argArray first isBlockNode ifTrue:[
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3511
                    argArray first isSingleExpressionBlock ifTrue:[
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3512
                        cond2 := argArray first simpleSendBlockExpression.
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3513
                        cond2 notNil ifTrue:[
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3514
                            (cond2 withConstantValueDo:[:val | condVal2 := val]) ifTrue:[
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3515
                                aBlock value:condVal2.
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3516
                                ^ true "/ constant
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3517
                            ]
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3518
                        ]
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3519
                    ]                                          
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3520
                ]
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3521
            ].
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3522
        ].
2268
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3523
    ].
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3524
    ^ false
2925
9ab2302a632d changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
  3525
9ab2302a632d changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
  3526
    "Modified: / 12-09-2012 / 12:27:52 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3527
! !
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3528
2321
3eb00a4f2c8a category change
Claus Gittinger <cg@exept.de>
parents: 2273
diff changeset
  3529
!MessageNode methodsFor:'testing'!
3eb00a4f2c8a category change
Claus Gittinger <cg@exept.de>
parents: 2273
diff changeset
  3530
3eb00a4f2c8a category change
Claus Gittinger <cg@exept.de>
parents: 2273
diff changeset
  3531
isMessage
3eb00a4f2c8a category change
Claus Gittinger <cg@exept.de>
parents: 2273
diff changeset
  3532
    ^ true
3eb00a4f2c8a category change
Claus Gittinger <cg@exept.de>
parents: 2273
diff changeset
  3533
! !
3eb00a4f2c8a category change
Claus Gittinger <cg@exept.de>
parents: 2273
diff changeset
  3534
2601
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
  3535
!MessageNode methodsFor:'visiting'!
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
  3536
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
  3537
acceptVisitor:aVisitor 
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
  3538
    "Double dispatch back to the visitor, passing my type encoded in
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
  3539
     the selector (visitor pattern)"
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
  3540
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
  3541
    "stub code automatically generated - please change if required"
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
  3542
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
  3543
    ^ aVisitor visitMessageNode:self
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
  3544
! !
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
  3545
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  3546
!MessageNode class methodsFor:'documentation'!
148
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 140
diff changeset
  3547
3017
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3548
version
3677
b344c261b4ad #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
  3549
    ^ '$Header$'
3017
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3550
!
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3551
2496
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
  3552
version_CVS
3677
b344c261b4ad #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
  3553
    ^ '$Header$'
2268
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3554
!
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3555
4663
73191a0db2d8 Do not optimize `^ x and: y` and `^ x or: y`
Jan Vrany <jan.vrany@labware.com>
parents: 4387
diff changeset
  3556
version_HG
73191a0db2d8 Do not optimize `^ x and: y` and `^ x or: y`
Jan Vrany <jan.vrany@labware.com>
parents: 4387
diff changeset
  3557
73191a0db2d8 Do not optimize `^ x and: y` and `^ x or: y`
Jan Vrany <jan.vrany@labware.com>
parents: 4387
diff changeset
  3558
    ^ '$Changeset: <not expanded> $'
73191a0db2d8 Do not optimize `^ x and: y` and `^ x or: y`
Jan Vrany <jan.vrany@labware.com>
parents: 4387
diff changeset
  3559
!
73191a0db2d8 Do not optimize `^ x and: y` and `^ x or: y`
Jan Vrany <jan.vrany@labware.com>
parents: 4387
diff changeset
  3560
2496
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
  3561
version_SVN
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  3562
    ^ '$ Id $'
148
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 140
diff changeset
  3563
! !
3016
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3564