MessageNode.st
author Claus Gittinger <cg@exept.de>
Wed, 03 Apr 2019 22:40:09 +0200
changeset 4403 4649f9dd9614
parent 4395 a22b835bed4e
child 4472 83c94dd5577b
permissions -rw-r--r--
#DOCUMENTATION by cg class: LazyMethod changed: #noByteCode
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
1727
58820b0c1e7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
     3
              All Rights Reserved
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
     4
7ad01559b262 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
7ad01559b262 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
7ad01559b262 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
7ad01559b262 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
7ad01559b262 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
7ad01559b262 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
7ad01559b262 Initial revision
claus
parents:
diff changeset
    11
"
1045
ee448a958d19 migration support
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
    12
"{ Package: 'stx:libcomp' }"
ee448a958d19 migration support
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
    13
3573
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
    14
"{ NameSpace: Smalltalk }"
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
    15
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    16
ParseNode subclass:#MessageNode
2496
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
    17
	instanceVariableNames:'receiver selector argArray lineNr selectorPosition lines
3290
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
    18
		endLineNr endCharPosition selectorPartPositions'
1791
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
    19
	classVariableNames:''
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
    20
	poolDictionaries:''
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
    21
	category:'System-Compiler-Support'
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    22
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
    23
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
    24
!MessageNode class methodsFor:'documentation'!
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    25
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    26
copyright
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    27
"
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    28
 COPYRIGHT (c) 1989 by Claus Gittinger
1727
58820b0c1e7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
    29
              All Rights Reserved
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    30
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    31
 This software is furnished under a license and may be used
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    32
 only in accordance with the terms of that license and with the
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    33
 inclusion of the above copyright notice.   This software may not
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    34
 be provided or otherwise made available to, or used by, any
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    35
 other person.  No title to or ownership of the software is
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    36
 hereby transferred.
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    37
"
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    38
!
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    39
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    40
documentation
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    41
"
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    42
    node for parse-trees, representing message sends
261
0372e948ca2d commentary
Claus Gittinger <cg@exept.de>
parents: 253
diff changeset
    43
    This is a helper class for the compiler.
263
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 261
diff changeset
    44
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 261
diff changeset
    45
    [author:]
1727
58820b0c1e7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
    46
        Claus Gittinger
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    47
"
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    48
! !
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    49
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
    50
!MessageNode class methodsFor:'instance creation'!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    51
7ad01559b262 Initial revision
claus
parents:
diff changeset
    52
receiver:recNode selector:selectorString 
4221
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
    53
    ^ self receiver:recNode selector:selectorString args:nil lineno:0
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
    54
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
    55
    "Modified: / 26-03-2018 / 15:34:28 / stefan"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    56
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
    57
1266
35e2c67fbdd9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1248
diff changeset
    58
receiver:recNode selector:selectorString arg1:arg1Node arg2:arg2Node
35e2c67fbdd9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1248
diff changeset
    59
    ^ self receiver:recNode selector:selectorString arg1:arg1Node arg2:arg2Node fold:nil
35e2c67fbdd9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1248
diff changeset
    60
!
35e2c67fbdd9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1248
diff changeset
    61
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    62
receiver:recNode selector:selectorString arg1:argNode1 arg2:argNode2 fold:folding
4221
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
    63
    |result recVal argVal selector cls|
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    64
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    65
    "
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    66
     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
    67
     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
    68
     enhancing the compiler ....
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    69
     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
    70
     allowing constant arrays of complex objects.
140
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
     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
    73
    "
212
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 204
diff changeset
    74
    folding notNil ifTrue:[
1397
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    75
        "/
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    76
        "/ do constant folding ...
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    77
        "/
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    78
        (recNode isConstant and:[argNode1 isConstant]) ifTrue:[
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    79
            "check if we can do it ..."
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    80
            selector := selectorString asSymbolIfInterned.
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    81
            selector notNil ifTrue:[
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    82
                recVal := recNode evaluate.
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    83
                (recVal respondsTo:selector) ifTrue:[
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    84
                    "
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    85
                     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
    86
                     the folded selectors method to the method we generate code for ...
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    87
                     limit optimizations to those that will never change
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    88
                     (or - if you change them - you will crash so bad ...)
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    89
                    "
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    90
                    argVal := argNode1 evaluate.
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    91
                    ((recVal isMemberOf:Array) and:[argVal isMemberOf:Array]) ifTrue:[
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    92
                        folding == #full ifTrue:[
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    93
                            (selector == #with:collect:) ifTrue:[
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    94
                                (argNode2 isBlock) ifTrue:[
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    95
                                    SignalSet anySignal handle:[:ex |
1533
bff4a03d6d48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
    96
                                        ^ ParseErrorNode errorString:'error in constant expression (' , ex description , ')'
1397
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    97
                                    ] do:[
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    98
                                        result := recVal perform:selector with:argVal with:(argNode2 evaluate).
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
    99
                                    ].
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
   100
                                    ^ ConstantNode type:(ConstantNode typeOfConstant:result) value:result
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
   101
                                ]
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
   102
                            ]
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
   103
                        ]
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
   104
                    ]
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
            ]
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
   107
        ]
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   108
    ].
4221
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   109
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   110
    cls := self.
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   111
    cls == MessageNode ifTrue:[
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   112
        "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
   113
        selectorString isUnarySelector ifTrue:[
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   114
            cls := UnaryNode.
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   115
        ] ifFalse:[selectorString isBinarySelector ifTrue:[
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   116
            cls := BinaryNode.
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   117
        ]].
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   118
    ].
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   119
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   120
    ^ 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
   121
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   122
    "Modified: / 28-06-1997 / 15:16:01 / cg"
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   123
    "Modified: / 26-03-2018 / 15:34:14 / stefan"
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   124
!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   125
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   126
receiver:recNode selector:selectorString arg:argNode
212
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 204
diff changeset
   127
    ^ self receiver:recNode selector:selectorString arg:argNode fold:nil
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   128
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
   129
7ad01559b262 Initial revision
claus
parents:
diff changeset
   130
receiver:recNode selector:selectorString arg:argNode fold:folding
212
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 204
diff changeset
   131
    |result recVal argVal selector globalName canFold|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   132
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   133
   "
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   134
     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
   135
     - 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
   136
     so that constant classVars can be inlined.
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   137
    "
3583
03a93dbf05fa class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3573
diff changeset
   138
    (folding notNil and:[ folding ~~ false]) ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   139
        selector := selectorString asSymbolIfInterned.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   140
        selector notNil ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   141
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   142
            "/
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   143
            "/ do constant folding ...
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   144
            "/
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   145
            canFold := false.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   146
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   147
            (recNode isGlobal and:[argNode isConstant]) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   148
                globalName := recNode name.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   149
                recVal := recNode evaluate.
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
                (globalName = 'SmallInteger') ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   152
                    ( #( bitMaskFor: ) includes:selector)
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   153
                    ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   154
                        canFold := true
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   155
                    ]
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
            ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   158
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   159
            (recNode isConstant and:[argNode isConstant]) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   160
                "check if we can do it ..."
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   161
                recVal := recNode evaluate.
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
                 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
   164
                 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
   165
                 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
   166
                 (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
   167
                "
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   168
                argVal := argNode evaluate.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   169
                (recVal respondsToArithmetic and:[argVal respondsToArithmetic]) ifTrue:[
2197
c92fee01c220 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2102
diff changeset
   170
                    ( #( + - * / // \\ 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
   171
                        (#( / // \\ ) includes:selector) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   172
                            argVal = 0 ifTrue:[
1533
bff4a03d6d48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   173
                                ^ 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
   174
                            ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   175
                        ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   176
                        canFold := true
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   177
                    ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   178
                    ( #( @ ) includes:selector) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   179
                        canFold := (folding == #full)
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
                (recVal isInteger and:[argVal isInteger]) ifTrue:[
1017
c923ff9f397e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 993
diff changeset
   183
                    ( #( bitShift: bitOr: bitAnd: ) includes:selector) ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   184
                        canFold := true
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   185
                    ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   186
                ].
3502
4002c7b6b01d class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   187
                (recVal isSingleByteString) ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   188
                    (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
   189
                        canFold := folding isSymbol
902eec8d132b oops - folding argument is not always a symbol.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   190
                                   and:[(folding >= #level2) or:[folding == #full]].
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   191
                    ].
1093
41e224d479b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1080
diff changeset
   192
                    selector == #',' ifTrue:[
3502
4002c7b6b01d class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   193
                        (argVal isSingleByteString) ifTrue:[
1093
41e224d479b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1080
diff changeset
   194
                            canFold := folding isSymbol
41e224d479b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1080
diff changeset
   195
                                       and:[(folding >= #level2) or:[folding == #full]].
41e224d479b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1080
diff changeset
   196
                        ].
41e224d479b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1080
diff changeset
   197
                        (argVal isMemberOf:Character) ifTrue:[
41e224d479b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1080
diff changeset
   198
                            canFold := folding isSymbol
41e224d479b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1080
diff changeset
   199
                                       and:[(folding >= #level2) or:[folding == #full]].
41e224d479b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1080
diff changeset
   200
                        ].
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   201
                    ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   202
                ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   203
            ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   204
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   205
            canFold ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   206
                (recVal respondsTo:selector) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   207
                    SignalSet anySignal handle:[:ex |
1533
bff4a03d6d48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   208
                        ^ 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
   209
                    ] do:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   210
                        result := recVal perform:selector with:argVal.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   211
                    ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   212
                    ^ 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
   213
                                   from: recNode startPosition to: argNode endPosition
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   214
                ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   215
            ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   216
        ].
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
        "/
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   219
        "/ #perform with a constant selector
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
        (selector == #perform: 
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   222
        and:[argNode isConstant]) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   223
            argVal := argNode evaluate.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   224
            argVal isSymbol ifTrue:[
2620
25babff22da4 start/end position fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2617
diff changeset
   225
                ^ (UnaryNode receiver:recNode selector:argVal fold:folding)
25babff22da4 start/end position fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2617
diff changeset
   226
                    startPosition: recNode startPosition endPosition: argNode endPosition.
25babff22da4 start/end position fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2617
diff changeset
   227
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   228
            ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
   229
        ].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   230
    ].
212
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 204
diff changeset
   231
4221
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   232
    ^ 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
   233
2617
160ca364f3d3 More fixes for start/end position
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2610
diff changeset
   234
    "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
   235
    "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
   236
    "Modified: / 26-03-2018 / 15:34:03 / stefan"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   237
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
   238
7ad01559b262 Initial revision
claus
parents:
diff changeset
   239
receiver:recNode selector:selectorString args:anArray
212
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 204
diff changeset
   240
    ^ self receiver:recNode selector:selectorString args:anArray fold:nil
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   241
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
   242
7ad01559b262 Initial revision
claus
parents:
diff changeset
   243
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
   244
    |numArgs arg1 arg1Val|
117
claus
parents: 111
diff changeset
   245
212
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 204
diff changeset
   246
    folding notNil ifTrue:[
715
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   247
        numArgs := argArray size.
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   248
        numArgs > 0 ifTrue:[
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   249
            arg1 := (argArray at:1).
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   250
            (numArgs == 1) ifTrue:[
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   251
                ^ 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
   252
            ].
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   253
715
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   254
            "/
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   255
            "/ #perform:... with a constant selector
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   256
            "/
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   257
            numArgs <= 6 ifTrue:[
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   258
                (#(nil
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   259
                   #'perform:with:'
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   260
                   #'perform:with:with:'
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   261
                   #'perform:with:with:with:'
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   262
                   #'perform:with:with:with:with:'
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   263
                   #'perform:with:with:with:with:with:'
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   264
                   #'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
   265
                ) at:numArgs) = selectorString 
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   266
                ifTrue:[
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   267
                    arg1 isConstant ifTrue:[    
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   268
                        arg1Val := arg1 evaluate.
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   269
                        arg1Val isSymbol ifTrue:[
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   270
                            ^ MessageNode 
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   271
                                    receiver:recNode 
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   272
                                    selector:arg1Val
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   273
                                    args:(argArray copyFrom:2)
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   274
                                    fold:folding
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   275
                        ]
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   276
                    ]
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   277
                ]
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   278
            ].
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   279
        ].
639
f3dce3a697f0 inline #perform: messages with constant selector
Claus Gittinger <cg@exept.de>
parents: 627
diff changeset
   280
715
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   281
        (numArgs == 2) ifTrue:[
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   282
            ^ 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
   283
        ].
408ac886ffc1 allow 0-args in #receiver:selector:args:fold:
Claus Gittinger <cg@exept.de>
parents: 676
diff changeset
   284
        numArgs > Method maxNumberOfArguments ifTrue:[
1533
bff4a03d6d48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   285
            ^ 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
   286
        ].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   287
    ].
117
claus
parents: 111
diff changeset
   288
4221
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   289
    ^ self receiver:recNode selector:selectorString args:argArray lineno:0
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   290
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   291
    "Modified: / 03-09-1995 / 16:41:39 / claus"
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   292
    "Modified: / 15-05-1998 / 15:32:05 / cg"
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   293
    "Modified: / 26-03-2018 / 15:33:42 / stefan"
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   294
!
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   295
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   296
receiver:recNode selector:selectorString args:argArray lineno:lineNo
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   297
    |cls|
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   298
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   299
    cls := self.
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   300
    cls == MessageNode ifTrue:[
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   301
        "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
   302
        selectorString isUnarySelector ifTrue:[
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   303
            cls := UnaryNode.
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   304
        ] ifFalse:[selectorString isBinarySelector ifTrue:[
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   305
            cls := BinaryNode.
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   306
        ]].
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   307
    ].
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   308
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   309
    ^ cls basicNew receiver:recNode selector:selectorString args:argArray lineno:lineNo
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   310
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
   311
    "Created: / 26-03-2018 / 15:33:29 / stefan"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   312
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
   313
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   314
!MessageNode methodsFor:'accessing'!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   315
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   316
arg1
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   317
    ^ argArray at:1
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   318
!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   319
1639
65686abde429 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   320
arg2
65686abde429 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   321
    ^ argArray at:2
65686abde429 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   322
!
65686abde429 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   323
4299
659a874f103a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   324
arg3
659a874f103a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   325
    ^ argArray at:3
659a874f103a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   326
659a874f103a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   327
    "Created: / 30-08-2018 / 13:03:59 / Claus Gittinger"
659a874f103a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   328
!
659a874f103a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   329
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   330
args
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   331
    ^ argArray
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   332
!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   333
543
de47f8969fd9 more ST80 compatible enumeration
Claus Gittinger <cg@exept.de>
parents: 539
diff changeset
   334
arguments
de47f8969fd9 more ST80 compatible enumeration
Claus Gittinger <cg@exept.de>
parents: 539
diff changeset
   335
    ^ argArray ? #()
de47f8969fd9 more ST80 compatible enumeration
Claus Gittinger <cg@exept.de>
parents: 539
diff changeset
   336
de47f8969fd9 more ST80 compatible enumeration
Claus Gittinger <cg@exept.de>
parents: 539
diff changeset
   337
    "Created: 19.6.1997 / 17:31:14 / cg"
de47f8969fd9 more ST80 compatible enumeration
Claus Gittinger <cg@exept.de>
parents: 539
diff changeset
   338
    "Modified: 19.6.1997 / 17:32:25 / cg"
de47f8969fd9 more ST80 compatible enumeration
Claus Gittinger <cg@exept.de>
parents: 539
diff changeset
   339
!
de47f8969fd9 more ST80 compatible enumeration
Claus Gittinger <cg@exept.de>
parents: 539
diff changeset
   340
2496
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   341
endCharPosition
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   342
    ^ endCharPosition
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   343
!
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   344
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   345
endCharPosition:something
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   346
    endCharPosition := something.
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   347
!
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   348
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   349
endLineNr
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   350
    ^ endLineNr
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   351
!
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   352
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   353
endLineNr:something
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   354
    endLineNr := something.
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   355
!
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   356
4347
91326875053c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4299
diff changeset
   357
javaScriptSelector
91326875053c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4299
diff changeset
   358
    ^ self selector
91326875053c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4299
diff changeset
   359
91326875053c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4299
diff changeset
   360
    "Created: / 14-02-2019 / 14:38:08 / Claus Gittinger"
91326875053c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4299
diff changeset
   361
!
91326875053c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4299
diff changeset
   362
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   363
lineNumber
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   364
     ^ lineNr
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   365
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
   366
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   367
lineNumber:num
3467
ecc8ee9a1a0a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   368
    lineNr := num.
ecc8ee9a1a0a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   369
    self assert:(lineNr >= 0)
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   370
!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   371
2496
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   372
lines
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   373
    ^ lines
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   374
!
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   375
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   376
lines:something
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   377
    lines := something.
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   378
!
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
   379
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   380
receiver
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   381
    ^ receiver
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   382
!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   383
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   384
receiver:r selector:s args:a lineno:l
2601
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
   385
3290
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   386
    receiver notNil ifTrue:[ receiver parent: nil].
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   387
    receiver := r.
3290
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   388
    receiver notNil ifTrue:[
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   389
        receiver parent notNil ifTrue:[self breakPoint:#cg].
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   390
        receiver parent: self
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   391
    ].
1500
3c4cb012b24b Lazy conversion of selector strings to symbols.
Stefan Vogel <sv@exept.de>
parents: 1480
diff changeset
   392
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
   393
    startPosition := receiver startPosition.
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
   394
1500
3c4cb012b24b Lazy conversion of selector strings to symbols.
Stefan Vogel <sv@exept.de>
parents: 1480
diff changeset
   395
"/ create the symbol only, if the symbol is already known in the system.
3c4cb012b24b Lazy conversion of selector strings to symbols.
Stefan Vogel <sv@exept.de>
parents: 1480
diff changeset
   396
"/ otherwise a lot of partial symbols will be created by the SyntaxHighlighter
3c4cb012b24b Lazy conversion of selector strings to symbols.
Stefan Vogel <sv@exept.de>
parents: 1480
diff changeset
   397
"/ during typing
3c4cb012b24b Lazy conversion of selector strings to symbols.
Stefan Vogel <sv@exept.de>
parents: 1480
diff changeset
   398
"/    selector := s asSymbol.
3c4cb012b24b Lazy conversion of selector strings to symbols.
Stefan Vogel <sv@exept.de>
parents: 1480
diff changeset
   399
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
   400
    selector := s asSymbolIfInternedOrSelf.
1500
3c4cb012b24b Lazy conversion of selector strings to symbols.
Stefan Vogel <sv@exept.de>
parents: 1480
diff changeset
   401
3336
1b4396f06cbf class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3330
diff changeset
   402
    argArray notNil ifTrue:[argArray do:[:each| each parent:nil]].
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   403
    argArray := a.
2865
cc62390767a2 changed: #receiver:selector:args:lineno:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2849
diff changeset
   404
    "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
   405
     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
   406
    argArray ~~ #Error ifTrue:[
2869
819a9e78f728 changed: #receiver:selector:args:lineno:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2865
diff changeset
   407
        argArray notEmptyOrNil ifTrue:[
3336
1b4396f06cbf class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3330
diff changeset
   408
            argArray do:[:each| each parent:self].
2869
819a9e78f728 changed: #receiver:selector:args:lineno:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2865
diff changeset
   409
            endPosition := argArray last endPosition
3336
1b4396f06cbf class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3330
diff changeset
   410
        ].
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
   411
    ].
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
   412
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   413
    lineNr := l.
3467
ecc8ee9a1a0a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   414
    self assert:(lineNr >= 0).
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   415
    self checkInlinability.
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   416
2601
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
   417
    "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
   418
    "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
   419
    "Modified: / 19-07-2018 / 14:09:59 / Stefan Vogel"
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   420
!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   421
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   422
selector
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   423
    ^ selector
595
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   424
!
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   425
1384
0db9682870d9 evaluate -> evaluateIn:
Claus Gittinger <cg@exept.de>
parents: 1382
diff changeset
   426
selector:s
1500
3c4cb012b24b Lazy conversion of selector strings to symbols.
Stefan Vogel <sv@exept.de>
parents: 1480
diff changeset
   427
"/ create the symbol only, if the symbol is already known in the system.
3c4cb012b24b Lazy conversion of selector strings to symbols.
Stefan Vogel <sv@exept.de>
parents: 1480
diff changeset
   428
"/ otherwise a lot of partial symbols will be created by the SyntaxHighlighter
3c4cb012b24b Lazy conversion of selector strings to symbols.
Stefan Vogel <sv@exept.de>
parents: 1480
diff changeset
   429
"/ during typing
3c4cb012b24b Lazy conversion of selector strings to symbols.
Stefan Vogel <sv@exept.de>
parents: 1480
diff changeset
   430
"/    selector := s asSymbol.
3c4cb012b24b Lazy conversion of selector strings to symbols.
Stefan Vogel <sv@exept.de>
parents: 1480
diff changeset
   431
3c4cb012b24b Lazy conversion of selector strings to symbols.
Stefan Vogel <sv@exept.de>
parents: 1480
diff changeset
   432
    selector := s asSymbolIfInterned ? s.
3c4cb012b24b Lazy conversion of selector strings to symbols.
Stefan Vogel <sv@exept.de>
parents: 1480
diff changeset
   433
"/    selector := s asSymbol.
1384
0db9682870d9 evaluate -> evaluateIn:
Claus Gittinger <cg@exept.de>
parents: 1382
diff changeset
   434
!
0db9682870d9 evaluate -> evaluateIn:
Claus Gittinger <cg@exept.de>
parents: 1382
diff changeset
   435
3290
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   436
selectorPartPositions
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   437
    ^ selectorPartPositions
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   438
!
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   439
4395
a22b835bed4e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4389
diff changeset
   440
selectorPartPositions:aCollectionOfIntervals
a22b835bed4e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4389
diff changeset
   441
    selectorPartPositions := aCollectionOfIntervals.
a22b835bed4e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4389
diff changeset
   442
a22b835bed4e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4389
diff changeset
   443
    "Modified (format): / 20-03-2019 / 20:51:09 / Claus Gittinger"
3290
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   444
!
ed93979b62ac class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   445
595
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   446
selectorPosition
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   447
    "return the value of the instance variable 'selectorPosition' (automatically generated)"
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   448
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   449
    ^ selectorPosition
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   450
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   451
    "Created: 5.8.1997 / 02:49:27 / cg"
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   452
!
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   453
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   454
selectorPosition:something
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   455
    "set the value of the instance variable 'selectorPosition' (automatically generated)"
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   456
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   457
    selectorPosition := something.
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   458
a90e8d8bf417 remember position of selector
Claus Gittinger <cg@exept.de>
parents: 578
diff changeset
   459
    "Created: 5.8.1997 / 02:49:27 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   460
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
   461
7ad01559b262 Initial revision
claus
parents:
diff changeset
   462
!MessageNode methodsFor:'checks'!
7ad01559b262 Initial revision
claus
parents:
diff changeset
   463
1626
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   464
checkCondition
3310
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   465
    "check ifTrue/ifFalse for plausibility.
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   466
     TODO: rewite to use lint/lint rules and apply them before accepting"
2489
da5775ff9f1f comment
Michael Beyl <mb@exept.de>
parents: 2429
diff changeset
   467
2102
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   468
    |args lastArg receiverSelector or1 or2|
1626
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   469
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   470
    receiver isBlock ifTrue:[
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   471
        (Block canUnderstand:selector) ifFalse:[
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   472
            ^ 'blocks usually do not respond to ' , selector , ' messages'
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   473
        ].
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   474
    ].
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   475
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   476
    "/ (rr keyw:ra = a) ifTrue:[ ...]
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   477
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   478
    receiver isMessage ifTrue:[
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   479
        (receiver numArgs > 0) ifTrue:[
3330
6abed184183c class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3317
diff changeset
   480
            receiverSelector := receiver selector.
3869
09e8c7e4e171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3679
diff changeset
   481
            (receiverSelector isKeywordSelector) ifTrue:[
1626
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   482
                (args := receiver arguments) notEmptyOrNil ifTrue:[
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   483
                    (lastArg := args last) isMessage ifTrue:[
1989
e6a763ac2587 oops - parenthesized was written with typo
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
   484
                        lastArg parenthesized ifFalse:[
1626
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   485
                            (#( #'=' #'~=' #'==' #'~~' '>' '<' '>=' '<=') 
1629
8f69fe5b0fea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1628
diff changeset
   486
                            includes:(lastArg selector asSymbol)) ifTrue:[
1628
9641d61e717f precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1627
diff changeset
   487
                                ^ 'possible precedence error in condition (missing parenthesis ?)'
1626
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
                        ]
2102
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   490
                    ].
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   491
                ].
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   492
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   493
                (selector == #ifFalse: or:[ selector == #ifFalse:ifTrue: ]) ifTrue:[
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   494
                    receiverSelector == #or: ifTrue:[
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   495
                        or1 := receiver receiver.    
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   496
                        or2 := receiver arg1.
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   497
                        (or1 isMessage and:[or1 selector = '~~']) ifTrue:[
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   498
                            (or2 isBlock 
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   499
                            and:[ or2 isSingleExpressionBlock
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   500
                            and:[ or2 statements expression isMessage 
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   501
                            and:[ or2 statements expression selector = '~~']]]) ifTrue:[
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   502
                                ^ 'please use "((...==...) and:[...==...]) ifTrue:" here\\(are you obfuscating by purpose ?)'
0d60bf6818d7 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   503
                            ].
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
                ].
1626
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   507
            ]
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   508
        ].
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   509
    ].
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   510
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   511
    ^ nil
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   512
!
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   513
2208
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   514
checkGlobalFromNameSpaceConflictFor:aNode
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   515
    "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
   516
     which hides a global from Smalltalk with the same name.
3310
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   517
     This is especially bad for Error handle: do:... 
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   518
     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
   519
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   520
    |fullName shortName|
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   521
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   522
    aNode isGlobalVariable ifTrue:[
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   523
        fullName := aNode name.
3409
1e083fdee371 class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3385
diff changeset
   524
        shortName := (Class nameWithoutPrefix:fullName) asSymbolIfInterned.
1e083fdee371 class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3385
diff changeset
   525
        (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
   526
            (Smalltalk includesKey:shortName) ifTrue:[
4138
f5d3b5441a87 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
   527
                ^ '\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
   528
                    bindWith:shortName
f5d3b5441a87 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
   529
                    with:(Smalltalk at:fullName asSymbol) printString
f5d3b5441a87 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
   530
                    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
   531
            ].
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   532
        ].
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
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   535
    ^ nil.
4138
f5d3b5441a87 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
   536
f5d3b5441a87 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
   537
    "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
   538
!
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   539
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   540
checkIdentityCompare
3310
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   541
    "check #== applied to Floats, Strings or Fractions
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   542
     TODO: rewite to use lint/lint rules and apply them before accepting"
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   543
2208
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   544
    |rec arg1 arg1Value operand|
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
    ((selector == #==) or:[selector == #~~]) ifTrue:[
4371
4b418ce7d687 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4347
diff changeset
   547
        (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
   548
            arg1 := argArray at:1
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   549
        ].
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   550
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   551
        "
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   552
         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
   553
         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
   554
         (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
   555
          - 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
   556
         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
   557
         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
   558
         (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
   559
        "
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   560
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   561
        receiver isConstant ifTrue:[
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   562
            rec := receiver evaluate.
3502
4002c7b6b01d class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   563
            ((rec isSingleByteString) or:[
2208
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   564
             (rec isMemberOf:Float) or:[
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   565
             (rec isMemberOf:Fraction)]]) ifTrue:[
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   566
                operand := rec
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   567
            ].
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   568
        ].
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   569
        arg1 isConstant ifTrue:[
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   570
            arg1Value := arg1 evaluate.
3502
4002c7b6b01d class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   571
            ((arg1Value isSingleByteString) or:[
2208
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   572
             (arg1Value isMemberOf:Float) or:[
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   573
             (arg1Value isMemberOf:Fraction)]]) ifTrue:[
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   574
                operand := arg1Value
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   575
            ].
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   576
        ].
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   577
        operand notNil ifTrue:[
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   578
            (selector == #==) ifTrue:[
2849
fa7f159cbbb0 changed: #checkIdentityCompare
Claus Gittinger <cg@exept.de>
parents: 2620
diff changeset
   579
                ^ '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
   580
            ].
2849
fa7f159cbbb0 changed: #checkIdentityCompare
Claus Gittinger <cg@exept.de>
parents: 2620
diff changeset
   581
            ^ '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
   582
        ]
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   583
    ].
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   584
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   585
    ^ nil
2849
fa7f159cbbb0 changed: #checkIdentityCompare
Claus Gittinger <cg@exept.de>
parents: 2620
diff changeset
   586
fa7f159cbbb0 changed: #checkIdentityCompare
Claus Gittinger <cg@exept.de>
parents: 2620
diff changeset
   587
    "Modified: / 08-03-2012 / 01:07:33 / cg"
4371
4b418ce7d687 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4347
diff changeset
   588
    "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
   589
!
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   590
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   591
checkInlinability
3310
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   592
    "early check for possible inlinability.
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   593
     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
   594
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   595
    |numArgs arg1 arg2 arg3|
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   596
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   597
    (numArgs := argArray size) >= 1 ifTrue:[
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   598
        arg1 := argArray at:1.
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   599
    ].
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   600
    numArgs == 0 ifTrue:[
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   601
        (selector == #whileTrue 
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   602
        or:[selector == #whileFalse]) ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   603
            receiver isBlock ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   604
                receiver possiblyInlined:true
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   605
            ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   606
        ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   607
        (selector == #value) ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   608
            receiver isBlock ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   609
                receiver possiblyInlined:true
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   610
            ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   611
        ].
1425
4f698bf5ff76 inline [...] loop
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
   612
        ((selector == #repeat) or:[selector == #loop]) ifTrue:[
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   613
            receiver isBlock ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   614
                receiver possiblyInlined:true
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   615
            ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   616
        ].
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   617
    ].
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   618
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   619
    numArgs == 1 ifTrue:[
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   620
        (selector == #or: 
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   621
        or:[selector == #and:]) ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   622
            arg1 isBlock ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   623
                arg1 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
        ].
576
5cb4af0eea67 also inline and:/or: ...
Claus Gittinger <cg@exept.de>
parents: 574
diff changeset
   626
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   627
        (selector == #ifTrue: 
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
   628
        or:[selector == #ifFalse:
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
   629
        or:[selector == #ifNil:
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
   630
        or:[selector == #ifNotNil:]]]) ifTrue:[
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   631
            arg1 isBlock ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   632
                arg1 possiblyInlined:true
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   633
            ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   634
        ].
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   635
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   636
        (selector == #whileTrue: 
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   637
        or:[selector == #whileFalse:]) ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   638
            arg1 isBlock ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   639
                arg1 possiblyInlined:true
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   640
            ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   641
            receiver isBlock ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   642
                receiver possiblyInlined:true
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   643
            ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   644
        ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   645
        selector == #timesRepeat: ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   646
            arg1 isBlock ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   647
                arg1 possiblyInlined:true withSelector:selector.
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   648
            ]
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   649
        ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   650
        ^ self
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   651
    ].
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   652
    numArgs >= 2 ifTrue:[
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   653
        arg2 := argArray at:2.
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   654
    ].    
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   655
    numArgs == 2 ifTrue:[
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   656
        (selector == #ifTrue:ifFalse:
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
   657
        or:[selector == #ifFalse:ifTrue:
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
   658
        or:[selector == #ifNil:ifNotNil:
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
   659
        or:[selector == #ifNotNil:ifNil:]]]) ifTrue:[
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   660
            (arg1 isBlock 
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   661
            and:[arg2 isBlock]) ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   662
                arg1 possiblyInlined:true.
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   663
                arg2 possiblyInlined:true.
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   664
            ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   665
        ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   666
        selector == #to:do: ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   667
            arg2 isBlock ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   668
                arg2 possiblyInlined:true withSelector:selector.
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   669
            ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   670
        ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   671
        ^ self
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   672
    ].
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   673
    numArgs >= 3 ifTrue:[
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   674
        arg3 := argArray at:3.
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   675
    ].    
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   676
    numArgs == 3 ifTrue:[
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   677
        selector == #to:by:do: ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   678
            arg3 isBlock ifTrue:[
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   679
                arg3 possiblyInlined:true withSelector:selector.
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   680
            ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   681
        ].
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   682
        ^ self
574
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   683
    ].
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   684
    ^ self
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   685
676
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   686
    "Created: / 2.7.1997 / 17:01:10 / cg"
69d1fe23a2b4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 639
diff changeset
   687
    "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
   688
!
993d1182782b fixed inlining of blocks where subBlocks
Claus Gittinger <cg@exept.de>
parents: 570
diff changeset
   689
2096
b993f62fab49 alreadyWarned selectors
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
   690
plausibilityCheckIn:aParser
3310
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   691
    "some useful checks applied when accepting in a browser.
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   692
     TODO: rewite to use lint/lint rules and apply them before accepting"
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   693
2208
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   694
    |arg1 msg|
902
4ceee83e5e07 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
   695
4371
4b418ce7d687 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4347
diff changeset
   696
    (argArray size ~~ 0) ifTrue:[
902
4ceee83e5e07 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
   697
        arg1 := argArray at:1
4ceee83e5e07 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
   698
    ].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   699
3
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
   700
    "
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
   701
     check #== applied to Floats, Strings or Fractions
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   702
    "
7ad01559b262 Initial revision
claus
parents:
diff changeset
   703
    ((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
   704
        (msg := self checkIdentityCompare) notNil ifTrue:[^ msg].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   705
    ].
3
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
   706
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
   707
    "
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   708
     [...] ifTrue:...
3
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
   709
     an error often occuring when you are a beginner ...
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
   710
    "
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
   711
    ((selector == #ifTrue:) or:[selector == #ifFalse:]) ifTrue:[
1626
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   712
        (msg := self checkCondition) notNil ifTrue:[^ msg].
3
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
   713
    ].
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   714
    ((selector == #ifTrue:ifFalse:) or:[selector == #ifFalse:ifTrue:]) ifTrue:[
1626
6addd73f7d47 precedence check for if-condition
Claus Gittinger <cg@exept.de>
parents: 1588
diff changeset
   715
        (msg := self checkCondition) notNil ifTrue:[^ msg].
3
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
   716
    ].
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   717
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   718
    "
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   719
     (...) whileTrue:[
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   720
    "
3
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
   721
    ((selector == #whileTrue:) or:[selector == #whileFalse:]) ifTrue:[
2028
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   722
        (receiver isBlock not and:[ receiver parenthesized ]) ifTrue:[
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   723
            "/ only warn, if code was originally parenthized
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   724
            ^ '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
   725
        ].
902
4ceee83e5e07 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
   726
        arg1 isBlock ifFalse:[
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
   727
            ^ '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
   728
        ].
3
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
   729
    ].
902
4ceee83e5e07 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
   730
2028
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   731
    "
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   732
     [...] ensure:[...]
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   733
    "
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   734
    ((selector == #ensure:) or:[(selector == #ifCurtailed:)]) ifTrue:[
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   735
        (receiver isBlock not and:[ receiver parenthesized ]) ifTrue:[
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   736
            "/ only warn, if code was originally parenthized
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   737
            ^ '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
   738
        ].
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   739
        (arg1 isBlock not and:[ arg1 parenthesized ]) ifTrue:[
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   740
            ^ '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
   741
        ].
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   742
        (arg1 isBlock and:[arg1 isEmptyBlock]) ifTrue:[
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   743
            ^ 'useless ensure (empty block)'
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   744
        ].
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
905
9d5500bffa74 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
   747
    argArray size > 0 ifTrue:[
9d5500bffa74 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
   748
        "/ check for a beginners error (using super as arg)
9d5500bffa74 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
   749
        "/ as in (something ? super) foo
3310
f22eebdb8868 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3290
diff changeset
   750
        "/ 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
   751
        argArray do:[:arg | 
0954014c1068 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
   752
            arg isSuper ifTrue:[
0954014c1068 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
   753
                ^ 'super special semantic only with receiver of message sends'
0954014c1068 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
   754
            ]
0954014c1068 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
   755
        ].
905
9d5500bffa74 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
   756
    ].
1154
8c8787349aaf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1134
diff changeset
   757
2208
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   758
    (selector = #'handle:do:' 
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   759
    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
   760
    or:[ selector = #'ignoreIn:'
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   761
    or:[ selector = #'catch:' ]]]) ifTrue:[
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   762
        (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
   763
    ].
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   764
    (selector = #'on:do:'
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   765
    or:[ selector = #'on:do:ensure:'
3679
c76366470cc9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 3677
diff changeset
   766
    or:[ selector = #'on:do:ifCurtailed:'
c76366470cc9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 3677
diff changeset
   767
    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
   768
        (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
   769
    ].
334c127f8586 possible name clash check (Error handle:do:) with Error class
Claus Gittinger <cg@exept.de>
parents: 2197
diff changeset
   770
1154
8c8787349aaf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1134
diff changeset
   771
"/    receiver isBlock ifTrue:[
8c8787349aaf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1134
diff changeset
   772
"/        ([] respondsTo:selector) ifFalse:[
8c8787349aaf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1134
diff changeset
   773
"/            ^ 'blocks do not respond to ' , selector , '; Missing ''.'' between statements ?'
8c8787349aaf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1134
diff changeset
   774
"/        ].
8c8787349aaf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1134
diff changeset
   775
"/    ].
8c8787349aaf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1134
diff changeset
   776
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   777
    ^ nil
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
   778
2028
a9b5ec797153 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   779
    "Modified: / 28-03-2007 / 14:14:28 / cg"
4137
0954014c1068 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
   780
    "Modified (format): / 08-03-2017 / 11:36:03 / cg"
4371
4b418ce7d687 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4347
diff changeset
   781
    "Modified: / 01-03-2019 / 15:59:30 / Claus Gittinger"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   782
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
   783
7ad01559b262 Initial revision
claus
parents:
diff changeset
   784
!MessageNode methodsFor:'code generation'!
7ad01559b262 Initial revision
claus
parents:
diff changeset
   785
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   786
codeOn:aStream inBlock:b for:aCompiler
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   787
    self codeOn:aStream inBlock:b valueNeeded:true for:aCompiler
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   788
!
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   789
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   790
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
   791
    "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
   792
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   793
    |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
   794
     specialCode stackTop arg1 arg2 arg3 isSuper realReceiver 
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
   795
     noSendDrop alreadyDropped
1994
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
   796
     useSelfSend usedSelector|
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
   797
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   798
    selector := selector asSymbol.
1994
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
   799
    usedSelector := aCompiler nameSpaceSelectorFor:selector.
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
   800
4297
1e66c13ff84b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   801
    "/ 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
   802
    usedSelector ~~ selector ifTrue:[ aCompiler addLiteral:selector ].
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
   803
    litIndex := aCompiler addLiteral:usedSelector.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   804
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   805
    noSendDrop := aCompiler class newCodeSet == true.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   806
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   807
    realReceiver := self realReceiver.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   808
    isSuper := realReceiver isSuper.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   809
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   810
    argArray isNil ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   811
        nargs := 0
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   812
    ] ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   813
        nargs := argArray size.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   814
        nargs > 0 ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   815
            arg1 := argArray at:1.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   816
            nargs > 1 ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   817
                arg2 := argArray at:2.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   818
                nargs > 2 ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   819
                    arg3 := argArray at:3.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   820
                ]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   821
            ]    
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   822
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   823
    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   824
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   825
    recType := receiver type.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   826
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   827
    (nargs == 0) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   828
        (recType == #ThisContext) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   829
            valueNeeded ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   830
                "for now, only do it in methods"
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   831
                b isNil ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   832
                    (selector == #restart) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   833
                        aStream nextPut:#jump; nextPut:1.      "jump to start"
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   834
                        ^ self
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
                (selector == #return) ifTrue:[  "^ nil"
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   838
                    aStream nextPut:#retNil.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   839
                    ^ self
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   840
                ].
2562
be17095cbb21 comment/format in: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2542
diff changeset
   841
            ].
be17095cbb21 comment/format in: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2542
diff changeset
   842
            "/ aCompiler rememberContextReturnablePragma
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   843
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   844
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   845
        (receiver isBlock 
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   846
        and:[receiver numArgs == 0
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   847
        and:[receiver isInlinable]]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   848
            selector == #value ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   849
                receiver codeInlineOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   850
                ^ self
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   851
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   852
            ((selector == #whileTrue) or:[selector == #whileFalse]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   853
                ^ self codeWhileOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   854
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   855
            ((selector == #repeat) or:[selector == #loop]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   856
                valueNeeded ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   857
                    ^ self codeRepeatOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   858
                ]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   859
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   860
        ].
3677
b344c261b4ad #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
   861
        
b344c261b4ad #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
   862
        "/ this optimization is for javaScript where we have to write "foo".asSymbol()
b344c261b4ad #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
   863
        selector == #asSymbol ifTrue:[
b344c261b4ad #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
   864
            (receiver isConstant and:[receiver evaluate isString]) ifTrue:[
b344c261b4ad #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
   865
                (ConstantNode value:receiver evaluate asSymbol) codeOn:aStream inBlock:b for:aCompiler.
b344c261b4ad #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
   866
                ^ self
b344c261b4ad #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
   867
            ].    
b344c261b4ad #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
   868
        ].    
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   869
    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   870
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   871
    (nargs == 1) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   872
        (recType == #ThisContext) ifTrue:[
2343
e3c3dad6a800 changed: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   873
            (selector == #return:) ifTrue:[
e3c3dad6a800 changed: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   874
                arg1 codeOn:aStream inBlock:b for:aCompiler.  "^ value"
e3c3dad6a800 changed: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   875
                aStream nextPut:#retTop.
e3c3dad6a800 changed: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   876
                valueNeeded ifTrue:[
e3c3dad6a800 changed: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   877
                    "/ 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
   878
                    "/ 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
   879
                    aStream nextPut:#pushNil.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   880
                ].
2343
e3c3dad6a800 changed: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   881
                ^ self.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   882
             ].
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
        ((selector == #ifNil:) or:[selector == #ifNotNil:]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   886
            receiver isBlock ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   887
                (arg1 isBlock not
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   888
                or:[arg1 numArgs == 0]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   889
                    ^ self codeIfNilOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   890
                ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   891
                (arg1 isConstant or:[arg1 isVariable]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   892
                    ^ self codeIfNilOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   893
                ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   894
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   895
            ].
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
        (arg1 isBlock 
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   899
        and:[arg1 isInlinable
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   900
        and:[arg1 numArgs == 0]]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   901
            ((selector == #ifTrue:) or:[selector == #ifFalse:]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   902
                receiver isBlock ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   903
                    ^ self codeIfOn: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
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   906
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   907
            (selector == #or:) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   908
                ^ self codeOrOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
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
            (selector == #and:) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   912
                ^ self codeAndOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   913
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   914
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   915
            (selector == #timesRepeat:) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   916
                "/ now, always inline #timesRepeat:;
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   917
                "/ 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
   918
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   919
               ^ self codeTimesRepeatOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   920
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   921
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   922
            ((selector == #whileTrue:) or:[selector == #whileFalse:]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   923
                (receiver isBlock 
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   924
                and:[receiver isInlinable
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   925
                and:[receiver numArgs == 0]]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   926
                    ^ self codeWhileOn: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
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   930
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   931
        ((selector == #ifTrue:) or:[selector == #ifFalse:]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   932
            (arg1 isConstant or:[arg1 isVariable]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   933
                ^ self codeIfOn: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
1994
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
   937
        usedSelector == #? ifTrue:[
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   938
            "/ only do short-circuit optimization, if arg is not a message;
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   939
            "/ (could have side-effects)
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   940
            "/
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   941
            arg1 isMessage ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   942
                ^ self codeQuestOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   943
            ]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   944
        ].
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
   945
        (selector == #caseOf:) ifTrue:[
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
   946
            (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
   947
                ^ self
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
   948
            ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
   949
        ].
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   950
    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   951
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   952
    (nargs == 2) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   953
        receiver isBlock ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   954
            (arg1 isBlock 
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   955
            and:[arg1 isInlinable
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   956
            and:[arg1 numArgs == 0
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   957
            and:[arg2 isBlock 
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   958
            and:[arg2 isInlinable
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   959
            and:[arg2 numArgs == 0]]]]]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   960
                ((selector == #ifTrue:ifFalse:) or:[selector == #ifFalse:ifTrue:]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   961
                    ^ self codeIfElseOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   962
                ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   963
                ((selector == #ifNil:ifNotNil:) or:[selector == #ifNotNil:ifNil:]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   964
                    ^ self codeIfNilNotNilOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   965
                ]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   966
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   967
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   968
            ((arg1 isConstant or:[arg1 isVariable])
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   969
            and:[arg2 isConstant or:[arg2 isVariable]]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   970
                ((selector == #ifTrue:ifFalse:) or:[selector == #ifFalse:ifTrue:]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   971
                    ^ self codeIfElseOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   972
                ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   973
                ((selector == #ifNil:ifNotNil:) or:[selector == #ifNotNil:ifNil:]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   974
                    ^ self codeIfNilNotNilOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   975
                ]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   976
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   977
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   978
        selector == #to:do: ifTrue:[
4389
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   979
            (receiver isConstant
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   980
              and:[receiver type == #Integer
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   981
              and:[arg2 isBlock 
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   982
              and:[arg2 isInlinable 
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   983
              and:[arg2 numArgs == 1]]]]
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   984
            ) ifTrue:[
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   985
                ^ self codeToDoOn: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
        ].
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
   988
        (selector == #'caseOf:otherwise:') ifTrue:[
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
   989
            (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
   990
                ^ self
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
   991
            ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
   992
        ].
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   993
    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   994
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   995
    (nargs == 3) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   996
        selector == #to:by:do: ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   997
            "/ 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
   998
            (receiver isConstant
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   999
              and:[receiver type == #Integer
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  1000
              and:[arg2 isConstant 
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  1001
              and:[arg2 type == #Integer
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  1002
              and:[arg3 isBlock 
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  1003
              and:[arg3 isInlinable 
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  1004
              and:[arg3 numArgs == 1]]]]]]
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  1005
            ) ifTrue:[
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1006
                ^ self codeToByDoOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
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
    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1010
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1011
    isBuiltIn := isSpecial := false.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1012
    isSuper ifFalse:[
1994
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
  1013
        isBuiltIn := aCompiler isBuiltInSelector:usedSelector forReceiver:receiver.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1014
        isBuiltIn ifFalse:[
1994
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
  1015
            specialCode := aCompiler specialSendCodeFor:usedSelector.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1016
            isSpecial := specialCode notNil.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1017
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1018
    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1019
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1020
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1021
    "can we use a send-bytecode ?"
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1022
    (isBuiltIn or:[isSpecial]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1023
        receiver codeOn:aStream inBlock:b for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1024
        (nargs > 0) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1025
            arg1 codeOn:aStream inBlock:b for:aCompiler.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1026
            (nargs > 1) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1027
                arg2 codeOn:aStream inBlock:b for:aCompiler
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1028
            ]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1029
        ].
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
  1030
        lineNr >= 255 ifTrue:[
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  1031
            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
  1032
        ].
1994
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
  1033
        aStream nextPut:usedSelector.
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
  1034
        (aCompiler hasLineNumber:usedSelector) ifTrue:[
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1035
            aStream nextPut:lineNr.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1036
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1037
        isSpecial ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1038
            aStream nextPut:specialCode
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1039
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1040
        valueNeeded ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1041
            aStream nextPut:#drop
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1042
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1043
        ^ self
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1044
    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1045
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1046
    ((nargs == 0) and:[selector == #yourself]) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1047
        "yourself is often added to get the receiver -
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1048
         we get it without the yourself-message"
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1049
2429
89d05ce26891 changed: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2399
diff changeset
  1050
        (valueNeeded or:[receiver isMessage]) ifTrue:[
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1051
            receiver codeOn:aStream inBlock:b for:aCompiler
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1052
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1053
        ^ self
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1054
    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1055
2345
d3c1bbb5cddc comment/format in: #codeOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2344
diff changeset
  1056
    "not inlinable - generate a send"
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1057
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1058
    stackTop := nil.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1059
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1060
    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
  1061
    useSelfSend ifFalse:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1062
        receiver codeOn:aStream inBlock:b for:aCompiler.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1063
        receiver isConstant ifTrue:[ 
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1064
            stackTop := receiver
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1065
        ].
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1066
    ].
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1067
    argArray notNil ifTrue:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1068
        argArray do:[:arg |
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1069
            (stackTop notNil and:[arg canReuseAsArg:stackTop]) ifTrue:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1070
                aStream nextPut:#dup.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1071
                "/ '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
  1072
            ] ifFalse:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1073
                arg codeOn:aStream inBlock:b for:aCompiler.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1074
                stackTop := arg.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1075
            ]
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1076
        ]
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1077
    ].
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1078
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1079
    isSuper ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1080
        cls := aCompiler targetClass.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1081
        realReceiver isHere ifTrue:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1082
            "/ same code as supersend, but targetClass starts search
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1083
        ] ifFalse:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1084
            "/ targetClasses superclass starts search
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1085
            cls := cls superclass.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1086
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1087
        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
  1088
        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
  1089
        valueNeeded ifFalse:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1090
            aStream nextPut:#drop
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1091
        ].
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1092
        ^ self.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1093
    ].
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1094
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1095
    valueNeeded ifTrue:[ noSendDrop := true ].
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1096
    alreadyDropped := false.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1097
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1098
    (litIndex <= 255) ifTrue:[
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1099
        (nargs <= 3) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1100
            |codes|
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1101
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1102
            noSendDrop ifTrue:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1103
                useSelfSend ifTrue:[
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1104
                    codes := #(sendSelf0 sendSelf1 sendSelf2 sendSelf3)
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1105
                ] ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1106
                    codes := #(send0 send1 send2 send3)
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1107
                ]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1108
            ] ifFalse:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1109
                useSelfSend ifTrue:[
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1110
                    codes := #(sendSelfDrop0 sendSelfDrop1 sendSelfDrop2 sendSelfDrop3)
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1111
                ] ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1112
                    codes := #(sendDrop0 sendDrop1 sendDrop2 sendDrop3)
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1113
                ].
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1114
                alreadyDropped := true.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1115
            ].
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
  1116
            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
  1117
                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
  1118
            ].
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1119
            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
  1120
            valueNeeded ifFalse:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1121
                alreadyDropped ifFalse:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1122
                    aStream nextPut:#drop
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1123
                ].
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1124
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1125
            ^ self
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1126
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1127
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1128
        useSelfSend ifTrue:[
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1129
            code := #sendSelf
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1130
        ] ifFalse:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1131
            noSendDrop ifTrue:[
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1132
                code := #send
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1133
            ] ifFalse:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1134
                code := #sendDrop.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1135
                alreadyDropped := true.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1136
            ]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1137
        ].
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
  1138
805f9d928eda Emit LINE16 bytecode insn just before a SEND bytecode is emmited when
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3017
diff changeset
  1139
        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
  1140
            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
  1141
        ].           
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1142
        aStream nextPut:code; nextPut:lineNr; nextPut:litIndex; nextPut:nargs.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1143
        valueNeeded ifFalse:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1144
            alreadyDropped ifFalse:[
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1145
                aStream nextPut:#drop
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1146
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1147
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1148
        ^ self
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1149
    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1150
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1151
    "needs 16bit literal index"
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1152
    (litIndex <= 16rFFFF) ifTrue:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1153
        useSelfSend ifTrue:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1154
            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
  1155
        ] ifFalse:[
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  1156
            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
  1157
        ].
9fd56369b7f1 more long ops
Claus Gittinger <cg@exept.de>
parents: 1791
diff changeset
  1158
    ] ifFalse:[
9fd56369b7f1 more long ops
Claus Gittinger <cg@exept.de>
parents: 1791
diff changeset
  1159
        "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
  1160
        self emitSendLiteralIndex:litIndex numArgs:nargs line:lineNr on:aStream for:aCompiler.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1161
    ].
1801
9fd56369b7f1 more long ops
Claus Gittinger <cg@exept.de>
parents: 1791
diff changeset
  1162
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1163
    valueNeeded ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1164
        aStream nextPut:#drop
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1165
    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1166
1994
4094e1eb3399 preps for selectorNamespaces.
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
  1167
    "Modified: / 03-09-1995 / 12:55:42 / claus"
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1168
    "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
  1169
    "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
  1170
    "Modified: / 06-03-2019 / 19:40:30 / Claus Gittinger"
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1171
! !
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1172
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1173
!MessageNode methodsFor:'enumerating'!
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1174
4235
fa13c6aa5831 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
  1175
allSubNodesDo:aBlock
fa13c6aa5831 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
  1176
    "evaluate aBlock for each subnode"
fa13c6aa5831 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
  1177
3336
1b4396f06cbf class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3330
diff changeset
  1178
    receiver allNodesDo:aBlock.
1b4396f06cbf class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3330
diff changeset
  1179
    argArray notNil ifTrue:[
1b4396f06cbf class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3330
diff changeset
  1180
        argArray do:[:arg | arg allNodesDo:aBlock].
1b4396f06cbf class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3330
diff changeset
  1181
    ]
1b4396f06cbf class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3330
diff changeset
  1182
!
1b4396f06cbf class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3330
diff changeset
  1183
3278
73ef6a07d279 class: ParseNode
Claus Gittinger <cg@exept.de>
parents: 3274
diff changeset
  1184
messageSelectorsDo:aBlock
73ef6a07d279 class: ParseNode
Claus Gittinger <cg@exept.de>
parents: 3274
diff changeset
  1185
    "evaluate aBlock for each message-selector here and in subnodes"
73ef6a07d279 class: ParseNode
Claus Gittinger <cg@exept.de>
parents: 3274
diff changeset
  1186
73ef6a07d279 class: ParseNode
Claus Gittinger <cg@exept.de>
parents: 3274
diff changeset
  1187
    aBlock value:selector.
73ef6a07d279 class: ParseNode
Claus Gittinger <cg@exept.de>
parents: 3274
diff changeset
  1188
    receiver messageSelectorsDo:aBlock.
3274
18fa73f6a23b renamed messagesDo: to messageNodes: do
Claus Gittinger <cg@exept.de>
parents: 3266
diff changeset
  1189
    argArray notNil ifTrue:[
3278
73ef6a07d279 class: ParseNode
Claus Gittinger <cg@exept.de>
parents: 3274
diff changeset
  1190
        argArray do:[:arg | arg messageSelectorsDo:aBlock].
3274
18fa73f6a23b renamed messagesDo: to messageNodes: do
Claus Gittinger <cg@exept.de>
parents: 3266
diff changeset
  1191
    ]
18fa73f6a23b renamed messagesDo: to messageNodes: do
Claus Gittinger <cg@exept.de>
parents: 3266
diff changeset
  1192
!
18fa73f6a23b renamed messagesDo: to messageNodes: do
Claus Gittinger <cg@exept.de>
parents: 3266
diff changeset
  1193
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1194
messagesDo:aBlock
3313
860a2a61cbde enumerators
Claus Gittinger <cg@exept.de>
parents: 3310
diff changeset
  1195
    "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
  1196
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1197
    aBlock value:self.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1198
    receiver messagesDo:aBlock.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1199
    argArray notNil ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1200
        argArray do:[:arg | arg messagesDo:aBlock].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1201
    ]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1202
!
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1203
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1204
nodeDo:anEnumerator
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1205
    "helper for parse tree walking"
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1206
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1207
    |args|
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1208
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1209
    args := argArray ? #().
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1210
    ^ anEnumerator doMessage:self receiver:receiver selector:selector arguments:args
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1211
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1212
    "Created: 19.6.1997 / 16:46:39 / cg"
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1213
    "Modified: 19.6.1997 / 17:08:28 / cg"
3313
860a2a61cbde enumerators
Claus Gittinger <cg@exept.de>
parents: 3310
diff changeset
  1214
!
860a2a61cbde enumerators
Claus Gittinger <cg@exept.de>
parents: 3310
diff changeset
  1215
860a2a61cbde enumerators
Claus Gittinger <cg@exept.de>
parents: 3310
diff changeset
  1216
variableNodesDo:aBlock
860a2a61cbde enumerators
Claus Gittinger <cg@exept.de>
parents: 3310
diff changeset
  1217
    "evaluate aBlock for each variable-node here and in subnodes"
860a2a61cbde enumerators
Claus Gittinger <cg@exept.de>
parents: 3310
diff changeset
  1218
860a2a61cbde enumerators
Claus Gittinger <cg@exept.de>
parents: 3310
diff changeset
  1219
    receiver variableNodesDo:aBlock.
860a2a61cbde enumerators
Claus Gittinger <cg@exept.de>
parents: 3310
diff changeset
  1220
    argArray notNil ifTrue:[
860a2a61cbde enumerators
Claus Gittinger <cg@exept.de>
parents: 3310
diff changeset
  1221
        argArray do:[:arg | arg variableNodesDo:aBlock].
860a2a61cbde enumerators
Claus Gittinger <cg@exept.de>
parents: 3310
diff changeset
  1222
    ]
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1223
! !
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1224
4297
1e66c13ff84b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
  1225
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1226
!MessageNode methodsFor:'evaluation'!
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1227
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1228
evaluateForCascadeIn:anEnvironment
4182
369c02a9555a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4138
diff changeset
  1229
    "evaluate, but return the receiver expression's value,
369c02a9555a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4138
diff changeset
  1230
     not the message-send's value"
369c02a9555a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4138
diff changeset
  1231
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1232
    ^ self evaluateIn:anEnvironment forCascade:true
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1233
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1234
    "Modified: / 20-04-2005 / 12:12:01 / cg"
4182
369c02a9555a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4138
diff changeset
  1235
    "Modified (comment): / 08-08-2017 / 18:08:45 / cg"
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1236
!
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1237
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1238
evaluateIn:anEnvironment
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1239
    ^ self evaluateIn:anEnvironment forCascade:false
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1240
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1241
    "Modified: / 20-04-2005 / 12:11:55 / cg"
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1242
!
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1243
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1244
evaluateIn:anEnvironment forCascade:forCascade
4182
369c02a9555a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4138
diff changeset
  1245
    "evaluate the send (possibly recursively evaluating the args before)
369c02a9555a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4138
diff changeset
  1246
     if forCascade is true, return the receiver expression's value,
369c02a9555a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4138
diff changeset
  1247
     otherwise return the message-send's value"
369c02a9555a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4138
diff changeset
  1248
2329
50473c5384bb changed: #evaluateIn:forCascade:
Claus Gittinger <cg@exept.de>
parents: 2321
diff changeset
  1249
    |retVal defClass r a1 a2 a3 nargs argValueArray class sel|
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1250
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1251
    sel := self evaluationSelector.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1252
    receiver isSuper ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1253
        r := receiver value.
2329
50473c5384bb changed: #evaluateIn:forCascade:
Claus Gittinger <cg@exept.de>
parents: 2321
diff changeset
  1254
50473c5384bb changed: #evaluateIn:forCascade:
Claus Gittinger <cg@exept.de>
parents: 2321
diff changeset
  1255
        defClass := receiver definingClass.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1256
        receiver isHere ifTrue:[
2329
50473c5384bb changed: #evaluateIn:forCascade:
Claus Gittinger <cg@exept.de>
parents: 2321
diff changeset
  1257
            class := defClass.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1258
        ] ifFalse:[
2329
50473c5384bb changed: #evaluateIn:forCascade:
Claus Gittinger <cg@exept.de>
parents: 2321
diff changeset
  1259
            class := defClass superclass.
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1260
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1261
        argArray notNil ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1262
            argValueArray := argArray collect:[:arg | arg evaluateIn:anEnvironment].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1263
        ] ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1264
            argValueArray := #()
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1265
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1266
        retVal := r perform:sel inClass:class withArguments:argValueArray.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1267
    ] ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1268
        r := receiver evaluateIn:anEnvironment.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1269
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1270
        argArray isNil ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1271
            retVal := r perform:sel
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1272
        ] ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1273
            nargs := argArray size.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1274
            (nargs == 0) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1275
                retVal := r perform:sel
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1276
            ] ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1277
                a1 := (argArray at:1) evaluateIn:anEnvironment.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1278
                (nargs == 1) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1279
                    retVal := r perform:sel with:a1
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1280
                ] ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1281
                    a2 := (argArray at:2) evaluateIn:anEnvironment.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1282
                    (nargs == 2) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1283
                        retVal := r perform:sel with:a1 with:a2
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1284
                    ] ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1285
                        a3 := (argArray at:3) evaluateIn:anEnvironment.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1286
                        (nargs == 3) ifTrue:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1287
                            retVal := r perform:sel with:a1 with:a2 with:a3
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1288
                        ] ifFalse:[
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1289
                            argValueArray := Array new:nargs.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1290
                            argValueArray at:1 put:a1.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1291
                            argValueArray at:2 put:a2.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1292
                            argValueArray at:3 put:a3.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1293
                            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
  1294
                            retVal := r perform:sel withArguments:argValueArray.
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1295
                        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1296
                    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1297
                ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1298
            ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1299
        ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1300
    ].
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1301
    ^ forCascade ifTrue:[r] ifFalse:[retVal]
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1302
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1303
    "Created: / 20-04-2005 / 12:11:39 / cg"
4182
369c02a9555a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4138
diff changeset
  1304
    "Modified (comment): / 08-08-2017 / 18:08:56 / cg"
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1305
!
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1306
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1307
evaluationSelector
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1308
    ^ selector asSymbol
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1309
! !
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1310
4297
1e66c13ff84b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
  1311
1691
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1312
!MessageNode methodsFor:'optimized code generation'!
ab6d550484d7 category
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1313
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1314
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
  1315
    "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
  1316
2941
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1317
    |theByteCode optByteCode receiver1 receiver2 theArg theArg2 pos1 pos2 pos3 code here jmp
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1318
     block1 block2 andBlock optByteCode2|
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1319
1464
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  1320
    aCompiler addLiteral:#and:.
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  1321
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1322
    theByteCode := #falseJump.
2941
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1323
    receiver1 := receiver receiver.
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1324
    theArg := nil.
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1325
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1326
    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
  1327
    optByteCode notNil ifTrue:[
1058
Claus Gittinger <cg@exept.de>
parents: 1057
diff changeset
  1328
        ((optByteCode == #eqJump) or:[optByteCode == #notEqJump]) ifTrue:[
2941
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1329
            theArg := receiver1 arg1
1058
Claus Gittinger <cg@exept.de>
parents: 1057
diff changeset
  1330
        ].
2941
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1331
        receiver1 := receiver1 receiver.
1058
Claus Gittinger <cg@exept.de>
parents: 1057
diff changeset
  1332
        theByteCode := optByteCode
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1333
    ].
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1334
    "/ code the left-of the and-part
2941
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1335
    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
  1336
    theArg notNil ifTrue:[
1058
Claus Gittinger <cg@exept.de>
parents: 1057
diff changeset
  1337
        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
  1338
    ].
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1339
    aStream nextPut:theByteCode.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1340
    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
  1341
    aStream nextPut:0.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1342
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1343
    "/ 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
  1344
    (selector == #ifTrue:ifFalse:) ifTrue:[
1058
Claus Gittinger <cg@exept.de>
parents: 1057
diff changeset
  1345
        jmp := #falseJump
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1346
    ] ifFalse:[
1058
Claus Gittinger <cg@exept.de>
parents: 1057
diff changeset
  1347
        jmp := #trueJump
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1348
    ].
2941
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1349
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1350
    andBlock := receiver arg1.
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1351
    theArg2 := nil.
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1352
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1353
    "/ code the left-of the and-part
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1354
    (andBlock statements isNil or:[andBlock statements nextStatement isNil]) ifTrue:[
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1355
        "/ simple - one statement
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1356
        receiver2 := andBlock statements expression.
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1357
        optByteCode2 := self optimizedConditionFor:receiver2 with:jmp for:aCompiler.
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1358
    ].
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1359
    optByteCode2 notNil ifTrue:[
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1360
        ((optByteCode2 == #eqJump) or:[optByteCode2 == #notEqJump]) ifTrue:[
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1361
            theArg2 := receiver2 arg1
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1362
        ].
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1363
        receiver2 := receiver2 receiver.
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1364
        receiver2 codeOn:aStream inBlock:b for:aCompiler.
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1365
        theArg2 notNil ifTrue:[
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1366
            theArg2 codeOn:aStream inBlock:b for:aCompiler
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1367
        ].
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1368
        jmp := optByteCode2
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1369
    ] ifFalse:[
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1370
        andBlock codeInlineOn:aStream inBlock:b for:aCompiler.
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1371
    ].
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1372
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1373
    aStream nextPut:jmp.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1374
    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
  1375
    aStream nextPut:0.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1376
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1377
    code := aStream contents.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1378
    (selector == #ifFalse:ifTrue:) ifTrue:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1379
        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
  1380
    ].
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1381
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1382
    "/ code the if-block
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1383
    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
  1384
    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
  1385
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1386
    aStream nextPut:#jump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1387
    pos3 := aStream position + 1.
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1388
    aStream nextPut:0.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1389
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1390
    here := aStream position + 1.
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1391
    (selector == #ifTrue:ifFalse:) ifTrue:[
1058
Claus Gittinger <cg@exept.de>
parents: 1057
diff changeset
  1392
        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
  1393
    ].
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1394
    code at:pos2 put:here.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1395
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1396
    "/ code the else-block
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1397
    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
  1398
    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
  1399
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1400
    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
  1401
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1402
    "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
  1403
!
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1404
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1405
codeAndIfOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1406
    "generate code for (x and:[y]) ifxxx:[ ... ]"
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1407
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1408
    |theByteCode optByteCode andBlock theArg pos1 pos2 pos3 code here jmp
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1409
     receiver1 receiver2 optByteCode2 theArg2 block|
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1410
1464
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  1411
    aCompiler addLiteral:#and:.
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  1412
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1413
    theByteCode := #falseJump.
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1414
    receiver1 := receiver receiver.
2941
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1415
    theArg := nil.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1416
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  1417
    optByteCode := self optimizedConditionFor:receiver1 with:theByteCode for:aCompiler.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1418
    optByteCode notNil ifTrue:[
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1419
        ((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
  1420
            theArg := receiver1 arg1
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1421
        ].
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1422
        receiver1 := receiver1 receiver.
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1423
        theByteCode := optByteCode
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1424
    ].
2941
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1425
    "/ 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
  1426
    receiver1 codeOn:aStream inBlock:b for:aCompiler.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1427
    theArg notNil ifTrue:[
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1428
        theArg codeOn:aStream inBlock:b for:aCompiler
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1429
    ].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1430
    aStream nextPut:theByteCode.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1431
    pos1 := aStream position + 1.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1432
    aStream nextPut:0.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1433
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1434
    andBlock := receiver arg1. "/ the and:-block
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1435
    (selector == #ifTrue:) ifTrue:[
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1436
        jmp := #falseJump
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1437
    ] ifFalse:[
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1438
        jmp := #trueJump
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1439
    ].
2941
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1440
    optByteCode2 := nil.
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1441
346983db9f8f changed:
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
  1442
    (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
  1443
        "/ simple - one statement
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1444
        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
  1445
        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
  1446
    ].
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1447
    optByteCode2 notNil ifTrue:[
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1448
        ((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
  1449
            theArg2 := receiver2 arg1
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1450
        ].
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1451
        receiver2 := receiver2 receiver.
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1452
        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
  1453
        theArg2 notNil ifTrue:[
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1454
            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
  1455
        ].
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1456
        jmp := optByteCode2.
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1457
    ] ifFalse:[
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1458
        andBlock codeInlineOn:aStream inBlock:b for:aCompiler.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1459
    ].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1460
    aStream nextPut:jmp.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1461
    pos2 := aStream position + 1.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1462
    aStream nextPut:0.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1463
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1464
    code := aStream contents.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1465
    (selector == #ifFalse:) ifTrue:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1466
        code at:pos1 put:(aStream position + 1)
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1467
    ].
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1468
    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
  1469
    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
  1470
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1471
    valueNeeded ifTrue:[
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1472
        aStream nextPut:#jump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1473
        pos3 := aStream position + 1.
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1474
        aStream nextPut:0.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1475
        here := aStream position + 1.
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1476
        (selector == #ifTrue:) ifTrue:[
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1477
            code at:pos1 put:here
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1478
        ].
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1479
        code at:pos2 put:here.
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1480
        aStream nextPut:#pushNil.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1481
        code at:pos3 put:(aStream position + 1)
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1482
    ] ifFalse:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1483
        here := aStream position + 1.
812
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1484
        (selector == #ifTrue:) ifTrue:[
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1485
            code at:pos1 put:here
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1486
        ].
367d2e8eb499 slightly better code for optimizable and:[...] block in if.
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1487
        code at:pos2 put:here
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1488
    ]
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1489
!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1490
289
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  1491
codeAndOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  1492
    "generate code for (x and:[y])"
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1493
3317
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1494
    |jumpTarget1 rightExpr|
289
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  1495
1464
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  1496
    aCompiler addLiteral:#and:.
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  1497
3317
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1498
    (receiver isConstant and:[receiver value == true ]) ifTrue:[
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1499
        "/ happens when code is "commented" i.e. true and:[ ... ]
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1500
        
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1501
    ] ifFalse:[
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1502
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1503
        receiver codeOn:aStream inBlock:b for:aCompiler.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1504
        valueNeeded ifTrue:[
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1505
            aStream nextPut:#dup.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1506
        ].
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1507
        aStream nextPut:#falseJump.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1508
        jumpTarget1 := aStream position + 1.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1509
        aStream nextPut:0.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1510
        valueNeeded ifTrue:[
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1511
            aStream nextPut:#drop.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1512
        ].
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1513
    ].
3317
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1514
289
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  1515
    rightExpr := argArray at:1.
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  1516
    rightExpr codeInlineOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
163
9a7dfd547e69 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
  1517
3317
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1518
    jumpTarget1 notNil ifTrue:[
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1519
        (aStream contents) at:jumpTarget1 put:(aStream position + 1)
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  1520
    ].
289
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  1521
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  1522
    "Created: 17.6.1996 / 15:46:42 / cg"
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  1523
    "Modified: 17.6.1996 / 15:47:44 / cg"
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1524
!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1525
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1526
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
  1527
    "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
  1528
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1529
    (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
  1530
        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
  1531
    ] ifFalse:[
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1532
        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
  1533
        aBlock isConstant ifFalse:[
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1534
            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
  1535
        ].
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1536
        valueNeeded ifFalse:[
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1537
            aStream nextPut:#drop
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1538
        ].
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1539
    ].
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1540
!
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1541
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1542
codeCaseOfOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1543
    "expr
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1544
        caseOf: {
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1545
            [val1] -> [ caseStats1 ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1546
            [val2] -> [ caseStats2 ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1547
            ...
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1548
            [valN] -> [ caseStatsN ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1549
        }
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1550
        otherwise: [
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1551
            otherStats
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1552
        ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1553
     also handles caseOf, without otherwise: arg.
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1554
     Compiled as a nested if-statement.
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1555
    "
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1556
2893
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1557
    |caseArg otherwiseArg checkAndCollectCases checkAndCollectCases2 caseValueExpressions caseBlocks elseBlock ifMessage|
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1558
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1559
    checkAndCollectCases := 
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1560
        [:expr :atEnd |
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1561
            |numCasesAllocated caseNr caseValueExpression caseBlock|
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1562
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1563
            expr receiver isMessage ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1564
            expr selector = #'at:put:' ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1565
            "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
  1566
            expr arg1 isConstant ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1567
            (caseNr := expr arg1 value) isInteger ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1568
            "check if put: arg is []->[] (the case-spec)"
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1569
            expr arg2 isMessage ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1570
            expr arg2 selector == #'->' ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1571
            expr arg2 receiver isBlock ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1572
            (caseBlock := expr arg2 arg1) isBlock ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1573
            "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
  1574
            expr arg2 receiver isSingleExpressionBlock ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1575
            (caseValueExpression := expr arg2 receiver simpleSendBlockExpression) notNil ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1576
            caseValueExpressions isEmptyOrNil ifTrue:[
3497
6d4ca8912102 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1577
                caseValueExpressions := OrderedCollection newWithSize:caseNr.
6d4ca8912102 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1578
                caseBlocks := OrderedCollection newWithSize:caseNr.
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1579
            ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1580
            caseValueExpressions at:caseNr put:caseValueExpression.
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1581
            caseBlocks at:caseNr put:caseBlock.
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
            atEnd ifFalse: [
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1584
                expr receiver isCascade ifTrue:[
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1585
                    "at the left, there must be another cascade"
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1586
                    checkAndCollectCases value:expr receiver value:false.
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1587
                ] ifFalse:[
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1588
                    "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
  1589
                    checkAndCollectCases value:expr receiver value:true.
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1590
                    expr receiver selector = #'at:put:' ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1591
                    expr receiver receiver isMessage ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1592
                    expr receiver receiver selector = #'new:' ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1593
                    expr receiver receiver receiver isGlobal ifFalse:[ ^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1594
                    expr receiver receiver receiver name = 'Array' ifFalse:[^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1595
                    expr receiver receiver arg1 isConstant ifFalse:[^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1596
                    (numCasesAllocated := expr receiver receiver arg1 value) isInteger ifFalse:[^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1597
                    numCasesAllocated = caseBlocks size ifFalse:[^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1598
                ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1599
            ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1600
        ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1601
2893
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1602
    checkAndCollectCases2 :=    "/ for with:with: cases
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1603
        [:expr |
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1604
            |caseNr caseValueExpression caseBlock|
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1605
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1606
            expr args do:[:eachCaseArg |
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1607
                "check if put: eachCaseArg is []->[] (the case-spec)"
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1608
                eachCaseArg isMessage ifFalse:[ ^ false].
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1609
                eachCaseArg selector == #'->' ifFalse:[ ^ false].
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1610
                eachCaseArg receiver isBlock ifFalse:[ ^ false].
3385
0c211183027f class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3356
diff changeset
  1611
                (caseBlock := eachCaseArg arg1) isBlock ifFalse:[
0c211183027f class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3356
diff changeset
  1612
                    caseBlock isVariable ifFalse:[ ^ false].
0c211183027f class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3356
diff changeset
  1613
                ].
2893
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1614
                "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
  1615
                eachCaseArg receiver isSingleExpressionBlock ifFalse:[ ^ false].
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1616
                (caseValueExpression := eachCaseArg receiver simpleSendBlockExpression) notNil ifFalse:[ ^ false].
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1617
                caseValueExpressions isEmptyOrNil ifTrue:[
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1618
                    caseValueExpressions := OrderedCollection new.
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1619
                    caseBlocks := OrderedCollection new.
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1620
                ].
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1621
                caseValueExpressions add:caseValueExpression.
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1622
                caseBlocks add:caseBlock.
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1623
            ].
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1624
        ].
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1625
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1626
    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
  1627
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1628
    caseArg := argArray at:1.
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1629
    "caseArg has already been transformed from a {...}- to
2893
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1630
     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
  1631
    caseArg isCascade ifTrue:[
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1632
        caseArg receiver isMessage ifFalse:[^ false].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1633
        checkAndCollectCases value:(caseArg receiver) value:false.
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1634
    ] ifFalse:[
2893
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1635
        (caseArg isMessage
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1636
            and:[ (caseArg receiver isGlobalNamed:'Array')
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1637
            and:[ 
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1638
                #( 'with:'
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1639
                   'with:with:' 
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1640
                   'with:with:with:' 
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1641
                   'with:with:with:with:' 
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1642
                   'with:with:with:with:with:' 
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1643
                   'with:with:with:with:with:with:' 
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1644
                   'with:with:with:with:with:with:with:' 
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1645
                   'with:with:with:with:with:with:with:with:' 
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1646
                    ) includes:caseArg selector ]
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1647
        ]) ifTrue:[
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1648
            checkAndCollectCases2 value:caseArg.
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1649
        ] ifFalse:[
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1650
            "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
  1651
            ^ false
0fe6659c742e changed: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2870
diff changeset
  1652
        ].
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1653
    ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1654
    argArray size > 1 ifTrue:[
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1655
        otherwiseArg := argArray at:2.
3385
0c211183027f class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3356
diff changeset
  1656
        otherwiseArg isBlock ifFalse:[
0c211183027f class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3356
diff changeset
  1657
            otherwiseArg isVariable ifFalse:[^ false]
0c211183027f class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3356
diff changeset
  1658
        ]
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1659
    ].
4245
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1660
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1661
    "compile as a nested if"
4245
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1662
    elseBlock := otherwiseArg.
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1663
    elseBlock isNil ifTrue:[
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1664
        "/ cg: wrong: must create a [ self caseError ] block.
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1665
        "/ elseBlock := (ConstantNode value:nil).
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1666
        elseBlock := BlockNode 
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1667
                        withExpression:(
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1668
                            MessageNode
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1669
                                receiver:(receiver isVariable ifTrue:[receiver] ifFalse:[SelfNode value:nil])
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1670
                                selector:#'caseError'
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1671
                        ) in:b.
33e113863601 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  1672
    ].
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1673
    caseValueExpressions with:caseBlocks reverseDo:[:eachCaseValueExpression :eachCaseBlock |
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1674
        |cond|
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1675
4221
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
  1676
        cond := BinaryNode receiver:receiver selector:#= arg:eachCaseValueExpression.
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1677
        ifMessage := MessageNode
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1678
                        receiver:cond
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1679
                        selector:#'ifTrue:ifFalse:'
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1680
                        arg1:eachCaseBlock
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1681
                        arg2:elseBlock.
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1682
        elseBlock := BlockNode withExpression:ifMessage in:b.
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1683
    ].
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1684
    ifMessage codeOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1685
    ^ true
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
    "Created: / 25-05-2012 / 11:28:27 / cg"
4221
b8d132c3e4bb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4182
diff changeset
  1688
    "Modified: / 26-03-2018 / 15:28:32 / stefan"
2870
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1689
!
75f1f73b3bf9 added: #codeCaseOfOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  1690
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1691
codeForCascadeOn:aStream inBlock:b for:aCompiler
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1692
    "like codeOn, but always leave the receiver instead of the result"
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1693
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1694
    |nargs isBuiltIn code litIndex cls clsLitIndex isSuper realReceiver noSendDrop|
1048
6eaeba225e67 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1046
diff changeset
  1695
1500
3c4cb012b24b Lazy conversion of selector strings to symbols.
Stefan Vogel <sv@exept.de>
parents: 1480
diff changeset
  1696
    selector := selector asSymbol.
1048
6eaeba225e67 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1046
diff changeset
  1697
    noSendDrop := aCompiler class newCodeSet == true.
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1698
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1699
    realReceiver := self realReceiver.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1700
    isSuper := realReceiver isSuper.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1701
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1702
    argArray isNil ifTrue:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1703
        nargs := 0
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1704
    ] ifFalse:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1705
        nargs := argArray size
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1706
    ].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1707
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1708
    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
  1709
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1710
    litIndex := aCompiler addLiteral:selector.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1711
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1712
    receiver codeOn:aStream inBlock:b for:aCompiler.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1713
    aStream nextPut:#dup.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1714
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1715
    "can we use a send-bytecode ?"
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1716
    isBuiltIn ifTrue:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1717
        (nargs > 0) ifTrue:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1718
            (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
  1719
            (nargs > 1) ifTrue:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1720
                (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
  1721
            ]
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1722
        ].
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
  1723
        lineNr >= 255 ifTrue:[
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  1724
            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
  1725
        ].
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1726
        aStream nextPut:selector.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1727
        (aCompiler hasLineNumber:selector) ifTrue:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1728
            aStream nextPut:lineNr.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1729
        ].
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1730
        aStream nextPut:#drop.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1731
        ^ self
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1732
    ].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1733
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1734
    "no - generate a send"
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1735
    argArray notNil ifTrue:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1736
        argArray do:[:arg |
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1737
            arg codeOn:aStream inBlock:b for:aCompiler
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1738
        ]
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1739
    ].
189
673580572edd fixed cascades involving super sends (i.e. super foo; bar)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
  1740
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1741
    isSuper ifTrue:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1742
        cls := aCompiler targetClass.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1743
        realReceiver isHere ifTrue:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1744
            "/ 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
  1745
        ] ifFalse:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1746
            "/ targetClasses superclass starts search
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1747
            cls := cls superclass.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1748
        ].
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1749
        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
  1750
        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
  1751
        aStream nextPut:#drop.
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1752
        ^ self
189
673580572edd fixed cascades involving super sends (i.e. super foo; bar)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
  1753
    ].
673580572edd fixed cascades involving super sends (i.e. super foo; bar)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
  1754
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1755
    noSendDrop ifFalse:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1756
        litIndex <= 255 ifTrue:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1757
            (nargs <= 3) ifTrue:[
1046
8e5818442eb9 newCode (for rel5)
Claus Gittinger <cg@exept.de>
parents: 1045
diff changeset
  1758
                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
  1759
                lineNr >= 255 ifTrue:[
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  1760
                    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
  1761
                ].
1046
8e5818442eb9 newCode (for rel5)
Claus Gittinger <cg@exept.de>
parents: 1045
diff changeset
  1762
                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
  1763
                ^ self
1046
8e5818442eb9 newCode (for rel5)
Claus Gittinger <cg@exept.de>
parents: 1045
diff changeset
  1764
            ].
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
  1765
            lineNr >= 255 ifTrue:[
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  1766
                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
  1767
            ].
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1768
            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
  1769
            ^ self
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  1770
        ].
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1771
    ].
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  1772
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  1773
    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
  1774
    aStream nextPut:#drop.
189
673580572edd fixed cascades involving super sends (i.e. super foo; bar)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
  1775
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
  1776
    "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
  1777
    "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
  1778
!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1779
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1780
codeForSideEffectOn:aStream inBlock:b for:aCompiler
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1781
    self codeOn:aStream inBlock:b valueNeeded:false for:aCompiler
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1782
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1783
843
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1784
codeForSimpleReturnOn:aStream inBlock:b lineNumber:lineNrOrNil for:aCompiler
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1785
    |arg1 rightExpr pos1|
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1786
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1787
    (selector == #and:
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1788
    or:[selector == #or:]) ifTrue:[
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1789
        arg1 := argArray at:1.
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1790
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1791
        "/ for now:
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1792
        "/ only do it for non-blocks, since
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1793
        "/ the JIT compiler is smart enough to
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1794
        "/ specially optimize the resulting code
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1795
        "/ (and not smart enough to optimized the
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1796
        "/  other - actually more efficient - code)
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1797
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1798
        (arg1 isBlock not 
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1799
"/        or:[arg1 isInlinable]
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1800
        ) ifTrue:[
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1801
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1802
            "/ encode #and: as:
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1803
            "/
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1804
            "/      eLeft
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1805
            "/      jmp_false       LBL
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1806
            "/      eRight
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1807
            "/      retTop
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1808
            "/  LBL:
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1809
            "/      retFalse
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1810
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1811
            "/ encode #or: as:
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1812
            "/
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1813
            "/      eLeft
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1814
            "/      jmp_true       LBL
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1815
            "/      eRight
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1816
            "/      retTop
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1817
            "/  LBL:
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1818
            "/      retTrue
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1819
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1820
            receiver codeOn:aStream inBlock:b for:aCompiler.
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1821
            selector == #and: ifTrue:[
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1822
                aStream nextPut:#falseJump.
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1823
            ] ifFalse:[
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1824
                aStream nextPut:#trueJump.
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1825
            ].
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1826
            pos1 := aStream position + 1.
843
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1827
            aStream nextPut:0.
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1828
        
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1829
            rightExpr := argArray at:1.
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1830
            rightExpr isBlock ifTrue:[
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1831
                rightExpr codeInlineOn:aStream inBlock:b valueNeeded:true for:aCompiler.
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1832
            ] ifFalse:[
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1833
                rightExpr codeOn:aStream inBlock:b for:aCompiler.
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1834
            ].
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1835
            aStream nextPut:#retTop.
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1836
        
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1837
            (aStream contents) at:pos1 put:(aStream position + 1).
843
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1838
            selector == #and: ifTrue:[
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1839
                aStream nextPut:#retFalse.
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1840
            ] ifFalse:[
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1841
                aStream nextPut:#retTrue
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1842
            ].
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1843
            ^ self.
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1844
        ].
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1845
    ].
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
    super
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1848
        codeForSimpleReturnOn:aStream 
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1849
        inBlock:b 
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1850
        lineNumber:lineNrOrNil 
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1851
        for:aCompiler
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1852
!
522c116f86d9 boolean-return expression rewrite
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  1853
104
claus
parents: 103
diff changeset
  1854
codeIfElseOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1855
    "generate code for x ifxxx:[ ... ] yyy:[ ...]"
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1856
334
cd7491b7ad33 dont code a jump after if-part if it ends in a return.
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
  1857
    |pos pos2 theReceiver theArg theByteCode optByteCode subsel code needLineNr
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1858
     needJump block1 block2|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1859
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1860
    theReceiver := receiver.
76
55d64cb1ffea *** empty log message ***
claus
parents: 75
diff changeset
  1861
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1862
    theReceiver isConstant ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1863
        (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
  1864
            ^ self
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1865
        ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1866
    ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1867
76
55d64cb1ffea *** empty log message ***
claus
parents: 75
diff changeset
  1868
    (theReceiver isMessage) ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1869
        subsel := theReceiver selector.
2399
57ba9eb8c502 changed: #codeIfElseOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2384
diff changeset
  1870
        ((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
  1871
            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
  1872
            ^ self
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1873
        ].
2399
57ba9eb8c502 changed: #codeIfElseOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2384
diff changeset
  1874
        ((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
  1875
            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
  1876
            ^ self
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1877
        ]
76
55d64cb1ffea *** empty log message ***
claus
parents: 75
diff changeset
  1878
    ].
2399
57ba9eb8c502 changed: #codeIfElseOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2384
diff changeset
  1879
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1880
    (selector == #ifTrue:ifFalse:) ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1881
        theByteCode := #falseJump
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1882
    ] ifFalse:[
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1883
        theByteCode := #trueJump
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1884
    ].
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  1885
    optByteCode := self optimizedConditionFor:theReceiver with:theByteCode for:aCompiler.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1886
    optByteCode notNil ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1887
        ((optByteCode == #eqJump) or:[optByteCode == #notEqJump]) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1888
            theArg := theReceiver arg1
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1889
        ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1890
        theReceiver := theReceiver receiver.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1891
        theByteCode := optByteCode
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1892
    ].
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1893
    theReceiver codeOn:aStream inBlock:b for:aCompiler.
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1894
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1895
    needLineNr := true.
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1896
    theArg isNil ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1897
        theReceiver isMessage ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1898
            (aCompiler hasLineNumber:(theReceiver selector)) ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1899
                theReceiver lineNumber == lineNr ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1900
                    needLineNr := false
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1901
                ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1902
            ]
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1903
        ]
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1904
    ] ifFalse:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1905
        theArg codeOn:aStream inBlock:b for:aCompiler
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1906
    ].
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1907
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1908
    needLineNr ifTrue:[
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  1909
        self codeLineNumber:lineNr on:aStream for:aCompiler.  
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1910
    ].
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1911
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1912
    aStream nextPut:theByteCode.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1913
    pos := aStream position + 1.
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1914
    aStream nextPut:0.
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1915
    block1 := argArray at:1.
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1916
    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
  1917
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1918
    needJump := true.
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1919
    (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
  1920
        needJump := false
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1921
    ].
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1922
    needJump ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1923
        aStream nextPut:#jump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1924
        pos2 := aStream position + 1.
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1925
        aStream nextPut:0.
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1926
    ].
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1927
    code := aStream contents.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1928
    code at:pos put:(aStream position + 1).
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1929
    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
  1930
    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
  1931
    needJump ifTrue:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1932
        code at:pos2 put:(aStream position + 1)
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1933
    ]
166
9f6c57a3bce1 no line number bytecode in if-else if not needed
Claus Gittinger <cg@exept.de>
parents: 163
diff changeset
  1934
2399
57ba9eb8c502 changed: #codeIfElseOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2384
diff changeset
  1935
    "
57ba9eb8c502 changed: #codeIfElseOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2384
diff changeset
  1936
     |a|
57ba9eb8c502 changed: #codeIfElseOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2384
diff changeset
  1937
     (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
  1938
    "
57ba9eb8c502 changed: #codeIfElseOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2384
diff changeset
  1939
57ba9eb8c502 changed: #codeIfElseOn:inBlock:valueNeeded:for:
Claus Gittinger <cg@exept.de>
parents: 2384
diff changeset
  1940
    "Modified: / 21-05-2010 / 15:39:15 / cg"
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  1941
    "Modified (format): / 19-07-2018 / 14:18:46 / Stefan Vogel"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1942
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1943
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1944
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
  1945
    "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
  1946
     or: x ifNil:const1 ifNotNil:const2"
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1947
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1948
    |pos pos2 theReceiver theArg theByteCode code
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1949
     needLineNr block1 block2|
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1950
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1951
    theReceiver := receiver.
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1952
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1953
    (selector == #ifNil:ifNotNil:) ifTrue:[
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1954
        theByteCode := #notNilJump
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1955
    ] ifFalse:[
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1956
        theByteCode := #nilJump
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1957
    ].
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1958
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1959
    theReceiver codeOn:aStream inBlock:b for:aCompiler.
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1960
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1961
    needLineNr := true.
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  1962
    "what is theArg? It is always nil!!"
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  1963
    (theArg isNil 
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  1964
     and:[theReceiver isMessage 
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  1965
     and:[(aCompiler hasLineNumber:(theReceiver selector)) 
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  1966
     and:[theReceiver lineNumber == lineNr]]]) ifTrue:[
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  1967
        needLineNr := false
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1968
    ].
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1969
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1970
    needLineNr ifTrue:[
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  1971
        self codeLineNumber:lineNr on:aStream for:aCompiler.  
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1972
    ].
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1973
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1974
    aStream nextPut:theByteCode.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1975
    pos := aStream position + 1.
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1976
    aStream nextPut:0.
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1977
    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
  1978
    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
  1979
    aStream nextPut:#jump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1980
    pos2 := aStream position + 1.
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1981
    aStream nextPut:0.
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1982
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1983
    code := aStream contents.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1984
    code at:pos put:(aStream position + 1).
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  1985
    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
  1986
    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
  1987
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1988
    code := aStream contents.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  1989
    code at:pos2 put:(aStream position + 1)
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1990
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  1991
    "Modified: / 11-02-2000 / 12:50:36 / cg"
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  1992
    "Modified: / 19-07-2018 / 14:11:13 / Stefan Vogel"
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1993
!
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1994
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1995
codeIfNilOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1996
    "generate code for x ifNil:[ ... ]"
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1997
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  1998
    |pos theReceiver theByteCode code needLineNr|
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  1999
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2000
    theReceiver := receiver.
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2001
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2002
    (selector == #ifNil:) ifTrue:[
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2003
        theByteCode := #notNilJump
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2004
    ] ifFalse:[
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2005
        theByteCode := #nilJump
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
    theReceiver codeOn:aStream inBlock:b for:aCompiler.
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2009
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2010
    needLineNr := true.
899
fb678b9e18a7 also inline ifNot:/ifNotNil: for non-block arg.
Claus Gittinger <cg@exept.de>
parents: 898
diff changeset
  2011
fb678b9e18a7 also inline ifNot:/ifNotNil: for non-block arg.
Claus Gittinger <cg@exept.de>
parents: 898
diff changeset
  2012
    theReceiver isMessage ifTrue:[
fb678b9e18a7 also inline ifNot:/ifNotNil: for non-block arg.
Claus Gittinger <cg@exept.de>
parents: 898
diff changeset
  2013
        (aCompiler hasLineNumber:(theReceiver selector)) ifTrue:[
fb678b9e18a7 also inline ifNot:/ifNotNil: for non-block arg.
Claus Gittinger <cg@exept.de>
parents: 898
diff changeset
  2014
            theReceiver lineNumber == lineNr ifTrue:[
fb678b9e18a7 also inline ifNot:/ifNotNil: for non-block arg.
Claus Gittinger <cg@exept.de>
parents: 898
diff changeset
  2015
                needLineNr := false
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2016
            ]
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2017
        ]
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2018
    ].
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2019
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2020
    needLineNr ifTrue:[
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2021
        self codeLineNumber:lineNr on:aStream for:aCompiler.  
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2022
    ].
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2023
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2024
    valueNeeded ifTrue:[
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2025
        aStream nextPut:#dup.
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2026
    ].
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2027
    aStream nextPut:theByteCode.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2028
    pos := aStream position + 1.
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2029
    aStream nextPut:0.
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2030
    valueNeeded ifTrue:[
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2031
        aStream nextPut:#drop.
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2032
    ].
899
fb678b9e18a7 also inline ifNot:/ifNotNil: for non-block arg.
Claus Gittinger <cg@exept.de>
parents: 898
diff changeset
  2033
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2034
    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
  2035
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2036
    code := aStream contents.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2037
    code at:pos put:(aStream position + 1)
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2038
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2039
    "Modified: / 28-10-1997 / 18:33:42 / cg"
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2040
    "Modified: / 19-07-2018 / 14:06:52 / Stefan Vogel"
898
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2041
!
8db540a5fda8 inline code for
Claus Gittinger <cg@exept.de>
parents: 888
diff changeset
  2042
104
claus
parents: 103
diff changeset
  2043
codeIfOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2044
    "generate code for x ifxxx:[ ... ]"
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2045
103
claus
parents: 102
diff changeset
  2046
    |pos pos2 theReceiver theArg theByteCode optByteCode subsel code
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2047
     needLineNr block|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2048
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2049
    theReceiver := receiver.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2050
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2051
    theReceiver isConstant ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2052
        (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
  2053
            ^ self
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2054
        ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2055
    ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2056
76
55d64cb1ffea *** empty log message ***
claus
parents: 75
diff changeset
  2057
    (theReceiver isMessage) ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2058
        subsel := theReceiver selector.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2059
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2060
        (subsel == #and:) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2061
            theReceiver arg1 isBlock ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2062
                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
  2063
                ^ self
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2064
            ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2065
        ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2066
        (subsel == #or:) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2067
            theReceiver arg1 isBlock ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2068
                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
  2069
                ^ self
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2070
            ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2071
        ].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2072
    ].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2073
    (selector == #ifTrue:) ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2074
        theByteCode := #falseJump
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2075
    ] ifFalse:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2076
        theByteCode := #trueJump
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2077
    ].
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  2078
    optByteCode := self optimizedConditionFor:theReceiver with:theByteCode for:aCompiler.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2079
    optByteCode notNil ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2080
        ((optByteCode == #eqJump) or:[optByteCode == #notEqJump]) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2081
            theArg := theReceiver arg1
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2082
        ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2083
        theReceiver := theReceiver receiver.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2084
        theByteCode := optByteCode
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2085
    ].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2086
104
claus
parents: 103
diff changeset
  2087
    theReceiver codeOn:aStream inBlock:b for:aCompiler.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2088
    theArg notNil ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2089
        theArg codeOn:aStream inBlock:b for:aCompiler
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2090
    ].
53
c5dd7abf8431 *** empty log message ***
claus
parents: 52
diff changeset
  2091
103
claus
parents: 102
diff changeset
  2092
    needLineNr := true.
claus
parents: 102
diff changeset
  2093
    theArg isNil ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2094
        theReceiver isMessage ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2095
            (aCompiler hasLineNumber:(theReceiver selector)) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2096
                theReceiver lineNumber == lineNr ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2097
                    needLineNr := false
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2098
                ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2099
            ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2100
        ]
103
claus
parents: 102
diff changeset
  2101
    ].
claus
parents: 102
diff changeset
  2102
claus
parents: 102
diff changeset
  2103
    needLineNr ifTrue:[
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2104
        self codeLineNumber:lineNr on:aStream for:aCompiler.  
53
c5dd7abf8431 *** empty log message ***
claus
parents: 52
diff changeset
  2105
    ].
c5dd7abf8431 *** empty log message ***
claus
parents: 52
diff changeset
  2106
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2107
    aStream nextPut:theByteCode.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2108
    pos := aStream position + 1.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2109
    aStream nextPut:0.
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2110
    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
  2111
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2112
    self codeBlockEvaluation:block on:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
76
55d64cb1ffea *** empty log message ***
claus
parents: 75
diff changeset
  2113
55d64cb1ffea *** empty log message ***
claus
parents: 75
diff changeset
  2114
    code := aStream contents.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2115
    valueNeeded ifTrue:[
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2116
        aStream nextPut:#jump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2117
        pos2 := aStream position + 1.
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  2118
        aStream nextPut:0.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2119
        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
  2120
        aStream nextPut:#pushNil.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2121
        code at:pos2 put:(aStream position + 1)
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2122
    ] ifFalse:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2123
        code at:pos put:(aStream position + 1)
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2124
    ]
308
fe3b95e6d9c0 oops - dont try to inline: (expr or:expr2) ifXXX
Claus Gittinger <cg@exept.de>
parents: 289
diff changeset
  2125
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2126
    "Modified: / 28-10-1997 / 18:33:42 / cg"
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2127
    "Modified: / 19-07-2018 / 14:07:06 / Stefan Vogel"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2128
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2129
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2130
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
  2131
    "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
  2132
1057
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2133
    |theByteCode optByteCode theReceiver theArg pos1 pos2 pos3 code here jmp
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2134
     block1 block2 optJmp blockExpr|
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2135
1464
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  2136
    aCompiler addLiteral:#or:.
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  2137
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2138
    theByteCode := #trueJump.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2139
    theReceiver := receiver receiver.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2140
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  2141
    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
  2142
    optByteCode notNil ifTrue:[
1057
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2143
        ((optByteCode == #eqJump) or:[optByteCode == #notEqJump]) ifTrue:[
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2144
            theArg := theReceiver arg1
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2145
        ].
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2146
        theReceiver := theReceiver receiver.
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2147
        theByteCode := optByteCode
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2148
    ].
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2149
    "/ 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
  2150
    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
  2151
    theArg notNil ifTrue:[
1057
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2152
        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
  2153
    ].
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2154
    aStream nextPut:theByteCode.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2155
    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
  2156
    aStream nextPut:0.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2157
1057
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2158
    "/ 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
  2159
    (selector == #ifTrue:ifFalse:) ifTrue:[
1057
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2160
        jmp := #falseJump
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2161
    ] ifFalse:[
1057
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2162
        jmp := #trueJump
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2163
    ].
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2164
    theReceiver := receiver arg1.
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2165
    theArg := nil.
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2166
    optJmp := nil.
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2167
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2168
    (theReceiver isBlock
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2169
    and:[theReceiver statements notNil
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2170
    and:[theReceiver statements nextStatement isNil]]) ifTrue:[
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2171
        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
  2172
        optJmp := self optimizedConditionFor:blockExpr with:jmp for:aCompiler.
1057
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2173
        optJmp notNil ifTrue:[
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2174
            ((optJmp == #eqJump) or:[optJmp == #notEqJump]) ifTrue:[
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2175
                theArg := blockExpr arg1
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2176
            ].
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2177
            theReceiver := blockExpr receiver.
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2178
            jmp := optJmp
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2179
        ].
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2180
    ].
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2181
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2182
    optJmp notNil ifTrue:[
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2183
        theReceiver codeOn:aStream inBlock:b for:aCompiler.
1058
Claus Gittinger <cg@exept.de>
parents: 1057
diff changeset
  2184
        theArg notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 1057
diff changeset
  2185
            theArg codeOn:aStream inBlock:b for:aCompiler
Claus Gittinger <cg@exept.de>
parents: 1057
diff changeset
  2186
        ]
1057
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2187
    ] ifFalse:[
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2188
        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
  2189
    ].
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2190
    aStream nextPut:jmp.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2191
    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
  2192
    aStream nextPut:0.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2193
1057
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2194
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2195
    code := aStream contents.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2196
    (selector == #ifTrue:ifFalse:) ifTrue:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2197
        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
  2198
    ].
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2199
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2200
    "/ code the if-block
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2201
    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
  2202
    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
  2203
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2204
    aStream nextPut:#jump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2205
    pos3 := aStream position + 1.
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2206
    aStream nextPut:0.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2207
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2208
    here := aStream position + 1.
338
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2209
    (selector == #ifFalse:ifTrue:) ifTrue:[
1057
97ef980e2a46 better code for
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  2210
        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
  2211
    ].
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2212
    code at:pos2 put:here.
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2213
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2214
    "/ code the else-block
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2215
    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
  2216
    self codeBlockEvaluation:block2 on:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2217
    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
  2218
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2219
    "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
  2220
!
8ab1a2715ab1 better code for (expr and:/or:[expr2]) ifXXX:[ .. ] ifYYY:[ ... ]
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  2221
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2222
codeOrIfOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2223
    "generate code for (x or:[y]) ifxxx:[ ... ]"
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2224
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2225
    |theByteCode optByteCode theReceiver theArg pos1 pos2 pos3 code here jmp
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2226
     block|
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2227
1464
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  2228
    aCompiler addLiteral:#or:.
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  2229
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2230
    theByteCode := #trueJump.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2231
    theReceiver := receiver receiver.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2232
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  2233
    optByteCode := self optimizedConditionFor:theReceiver with:theByteCode for:aCompiler.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2234
    optByteCode notNil ifTrue:[
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2235
        ((optByteCode == #eqJump) or:[optByteCode == #notEqJump]) ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2236
            theArg := theReceiver arg1
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2237
        ].
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2238
        theReceiver := theReceiver receiver.
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2239
        theByteCode := optByteCode
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2240
    ].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2241
    theReceiver codeOn:aStream inBlock:b for:aCompiler.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2242
    theArg notNil ifTrue:[
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2243
        theArg codeOn:aStream inBlock:b for:aCompiler
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2244
    ].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2245
    aStream nextPut:theByteCode.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2246
    pos1 := aStream position + 1.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2247
    aStream nextPut:0.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2248
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2249
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2250
    theReceiver := receiver arg1.
434
c48a356d8a34 oops - optimizable or: ... ifTrue/ifFalse generated
Claus Gittinger <cg@exept.de>
parents: 429
diff changeset
  2251
    theArg := nil.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2252
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2253
"new:"
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2254
    (selector == #ifTrue:) ifTrue:[
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2255
        theByteCode := #falseJump
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2256
    ] ifFalse:[
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2257
        theByteCode := #trueJump
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2258
    ].
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  2259
    optByteCode := self optimizedConditionFor:theReceiver with:theByteCode for:aCompiler.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2260
    optByteCode notNil ifTrue:[
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2261
        theReceiver isBlock ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2262
            theReceiver := theReceiver statements expression
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2263
        ].
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2264
        ((optByteCode == #eqJump) or:[optByteCode == #notEqJump]) ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2265
            theArg := theReceiver arg1
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2266
        ].
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2267
        theReceiver := theReceiver receiver.
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2268
        theByteCode := optByteCode.
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2269
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2270
        theReceiver codeOn:aStream inBlock:b for:aCompiler.
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2271
        theArg notNil ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2272
            theArg codeOn:aStream inBlock:b for:aCompiler
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2273
        ].
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2274
        aStream nextPut:theByteCode.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2275
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2276
    ] ifFalse:[
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2277
"org"
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2278
        theReceiver codeInlineOn:aStream inBlock:b for:aCompiler.
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2279
        (selector == #ifTrue:) ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2280
            jmp := #falseJump
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2281
        ] ifFalse:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2282
            jmp := #trueJump
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2283
        ].
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2284
        aStream nextPut:jmp
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2285
    ].
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2286
    pos2 := aStream position + 1.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2287
    aStream nextPut:0.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2288
    (selector == #ifTrue:) ifTrue:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2289
        (aStream contents) at:pos1 put:(aStream position + 1)
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2290
    ].
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2291
    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
  2292
    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
  2293
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2294
    code := aStream contents.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2295
    valueNeeded ifTrue:[
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2296
        aStream nextPut:#jump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2297
        pos3 := aStream position + 1.
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2298
        aStream nextPut:0.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2299
        here := aStream position + 1.
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2300
        (selector == #ifFalse:) ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2301
            code at:pos1 put:here
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2302
        ].
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2303
        code at:pos2 put:here.
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2304
        aStream nextPut:#pushNil.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2305
        code at:pos3 put:(aStream position + 1)
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2306
    ] ifFalse:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2307
        here := aStream position + 1.
1059
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2308
        (selector == #ifFalse:) ifTrue:[
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2309
            code at:pos1 put:here
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2310
        ].
7ce5819138e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2311
        code at:pos2 put:here
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2312
    ]
434
c48a356d8a34 oops - optimizable or: ... ifTrue/ifFalse generated
Claus Gittinger <cg@exept.de>
parents: 429
diff changeset
  2313
c48a356d8a34 oops - optimizable or: ... ifTrue/ifFalse generated
Claus Gittinger <cg@exept.de>
parents: 429
diff changeset
  2314
    "Modified: 9.11.1996 / 19:52:26 / cg"
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2315
!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2316
289
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2317
codeOrOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2318
    "generate code for (x or:[y])"
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2319
3317
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2320
    |jumpTarget1 rightExpr|
289
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2321
1464
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  2322
    aCompiler addLiteral:#or:.
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  2323
3317
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2324
    (receiver isConstant and:[receiver value == false ]) ifTrue:[
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2325
        "/ happens when code is "commented" i.e. false or:[ ... ]
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2326
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2327
    ] ifFalse:[
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2328
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2329
        receiver codeOn:aStream inBlock:b for:aCompiler.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2330
        valueNeeded ifTrue:[
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2331
            aStream nextPut:#dup.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2332
        ].
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2333
        aStream nextPut:#trueJump.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2334
        jumpTarget1 := aStream position + 1.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2335
        aStream nextPut:0.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2336
        valueNeeded ifTrue:[
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2337
            aStream nextPut:#drop.
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2338
        ].
289
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2339
    ].
3317
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2340
289
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2341
    rightExpr := argArray at:1.
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2342
    rightExpr codeInlineOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler.
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2343
3317
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2344
    jumpTarget1 notNil ifTrue:[
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2345
        (aStream contents) at:jumpTarget1 put:(aStream position + 1)
55c8ae8f88e6 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  2346
    ].
289
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2347
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2348
    "Created: 17.6.1996 / 15:40:22 / cg"
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2349
    "Modified: 17.6.1996 / 15:47:22 / cg"
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2350
!
7134d1233ba6 better code for and: / or:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2351
436
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2352
codeQuestOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
627
b29a02258247 comments
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  2353
    "generate code for x ? y. 
b29a02258247 comments
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  2354
     However, this is only done for non-send args."
436
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2355
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2356
    |pos code|
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2357
1464
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  2358
    aCompiler addLiteral:#'?'.
fa19f86d1ef4 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1463
diff changeset
  2359
436
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2360
    receiver codeOn:aStream inBlock:b for:aCompiler.
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2361
    aStream nextPut:#dup.
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2362
    aStream nextPut:#notNilJump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2363
    pos := aStream position + 1.
437
994414f5126a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 436
diff changeset
  2364
    aStream nextPut:0.
436
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2365
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2366
    aStream nextPut:#drop.
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2367
    (argArray at: 1) codeOn:aStream inBlock:b for:aCompiler.
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2368
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2369
    code := aStream contents.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2370
    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
  2371
4917ac8408fb oops - inlined ? for-effect left value on top of stack
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2372
    valueNeeded ifFalse:[
4917ac8408fb oops - inlined ? for-effect left value on top of stack
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2373
        aStream nextPut:#drop.
4917ac8408fb oops - inlined ? for-effect left value on top of stack
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2374
    ].
436
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2375
627
b29a02258247 comments
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  2376
    "Created: / 10.11.1996 / 18:28:57 / cg"
b29a02258247 comments
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  2377
    "Modified: / 28.10.1997 / 18:16:20 / cg"
436
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2378
!
b34370bb0a74 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 434
diff changeset
  2379
602
1be5dd333adc inline #repeat
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
  2380
codeRepeatOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
1425
4f698bf5ff76 inline [...] loop
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  2381
    "generate code for 
4f698bf5ff76 inline [...] loop
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  2382
        [ ... ] repeat
4f698bf5ff76 inline [...] loop
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  2383
     and:
4f698bf5ff76 inline [...] loop
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  2384
        [ ... ] loop
4f698bf5ff76 inline [...] loop
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  2385
    "
602
1be5dd333adc inline #repeat
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
  2386
1be5dd333adc inline #repeat
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
  2387
    |pos|
1be5dd333adc inline #repeat
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
  2388
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2389
    pos := aStream position + 1.
602
1be5dd333adc inline #repeat
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
  2390
    receiver codeInlineOn:aStream inBlock:b valueNeeded:false for:aCompiler.
1be5dd333adc inline #repeat
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
  2391
    aStream nextPut:#jump; nextPut:pos.
1be5dd333adc inline #repeat
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
  2392
1be5dd333adc inline #repeat
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
  2393
    "Created: 29.8.1997 / 08:14:58 / cg"
1be5dd333adc inline #repeat
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
  2394
!
1be5dd333adc inline #repeat
Claus Gittinger <cg@exept.de>
parents: 595
diff changeset
  2395
104
claus
parents: 103
diff changeset
  2396
codeSendOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2397
    "like code on, but assumes that receiver has already been
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2398
     coded onto stack - needed for cascade"
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2399
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2400
    |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
  2401
     noSendDrop alreadyDropped|
1045
ee448a958d19 migration support
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
  2402
1500
3c4cb012b24b Lazy conversion of selector strings to symbols.
Stefan Vogel <sv@exept.de>
parents: 1480
diff changeset
  2403
    selector := selector asSymbol.
1048
6eaeba225e67 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1046
diff changeset
  2404
    noSendDrop := aCompiler class newCodeSet == true.
861
ccaa0ba5e7af generate selector symbols late (when compiling or evaluating)
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
  2405
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2406
    realReceiver := self realReceiver.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2407
    isSuper := realReceiver isSuper.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2408
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2409
    argArray isNil ifTrue:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2410
        nargs := 0
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2411
    ] ifFalse:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2412
        nargs := argArray size
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2413
    ].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2414
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2415
    litIndex := aCompiler addLiteral:selector.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2416
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2417
    isBuiltIn := isSuper not and:[ aCompiler isBuiltInSelector:selector forReceiver:receiver ].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2418
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2419
    "can we use a send-bytecode ?"
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2420
    isBuiltIn ifTrue:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2421
        (nargs > 0) ifTrue:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2422
            (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
  2423
            (nargs > 1) ifTrue:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2424
                (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
  2425
            ]
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2426
        ].
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
  2427
        lineNr >= 255 ifTrue:[
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  2428
            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
  2429
        ].
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2430
        aStream nextPut:selector.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2431
        (aCompiler hasLineNumber:selector) ifTrue:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2432
            aStream nextPut:lineNr.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2433
        ].
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2434
        valueNeeded ifFalse:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2435
            aStream nextPut:#drop
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2436
        ].
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2437
        ^ self
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2438
    ].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2439
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2440
    argArray notNil ifTrue:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2441
        argArray do:[:arg |
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2442
            arg codeOn:aStream inBlock:b for:aCompiler
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2443
        ]
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2444
    ].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2445
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2446
    isSuper ifTrue:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2447
        cls := aCompiler targetClass.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2448
        realReceiver isHere ifTrue:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2449
            "/ 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
  2450
        ] ifFalse:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2451
            "/ targetClasses superclass starts search
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2452
            cls := cls superclass.
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2453
        ].
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2454
        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
  2455
        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
  2456
        valueNeeded ifFalse:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2457
            aStream nextPut:#drop
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2458
        ].
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2459
        ^ self
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2460
    ].
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2461
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2462
    (nargs == 0) ifTrue:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2463
        (selector == #yourself) ifTrue:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2464
            "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
  2465
             we get it without the yourself-message"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2466
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2467
            valueNeeded ifFalse:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2468
                aStream nextPut:#drop
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2469
            ].
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2470
            ^ self
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2471
        ].
49
02660b790c3e *** empty log message ***
claus
parents: 48
diff changeset
  2472
    ].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2473
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2474
    alreadyDropped := false.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2475
    valueNeeded ifTrue:[ noSendDrop := true ].
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2476
117
claus
parents: 111
diff changeset
  2477
    litIndex <= 255 ifTrue:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2478
        (nargs <= 3) ifTrue:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2479
            noSendDrop ifTrue:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2480
                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
  2481
            ] ifFalse:[
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2482
                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
  2483
                alreadyDropped := true.
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2484
            ].
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
  2485
            lineNr >= 255 ifTrue:[
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  2486
                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
  2487
            ].
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2488
            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
  2489
            valueNeeded ifFalse:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2490
                alreadyDropped ifFalse:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2491
                    aStream nextPut:#drop
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2492
                ].
1045
ee448a958d19 migration support
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
  2493
            ].
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2494
            ^ self
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2495
        ].
106
claus
parents: 104
diff changeset
  2496
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2497
        noSendDrop ifTrue:[
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2498
            code := #send
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2499
        ] ifFalse:[
1809
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2500
            code := #sendDrop.
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2501
            alreadyDropped := true.
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2502
        ].
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
  2503
        lineNr >= 255 ifTrue:[
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  2504
            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
  2505
        ].
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2506
        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
  2507
        valueNeeded ifFalse:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2508
            alreadyDropped ifFalse:[
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2509
                aStream nextPut:#drop
007cb2a08623 some code savers for common code-emit;
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  2510
            ].
1045
ee448a958d19 migration support
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
  2511
        ].
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  2512
        ^ self
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2513
    ].
49
02660b790c3e *** empty log message ***
claus
parents: 48
diff changeset
  2514
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  2515
    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
  2516
    valueNeeded ifFalse:[
1045
ee448a958d19 migration support
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
  2517
        aStream nextPut:#drop
ee448a958d19 migration support
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
  2518
    ].
189
673580572edd fixed cascades involving super sends (i.e. super foo; bar)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
  2519
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
  2520
    "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
  2521
    "Modified: / 13-04-2013 / 10:46:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2522
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2523
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2524
codeTimesRepeatOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2525
    "generate code for n timesRepeat:[ ... ]"
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2526
908
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2527
    |pos1 pos2 lateEval loopCount|
349
7632e597a3df no need to keep receiver on stack for
Claus Gittinger <cg@exept.de>
parents: 338
diff changeset
  2528
7632e597a3df no need to keep receiver on stack for
Claus Gittinger <cg@exept.de>
parents: 338
diff changeset
  2529
    lateEval := false.
528
0a35ed44989f oops - timesRepeat dupped one too many
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  2530
908
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2531
    receiver isConstant ifTrue:[
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2532
        loopCount := receiver evaluate.
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2533
        (loopCount isMemberOf:SmallInteger) ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2534
            loopCount := nil.
908
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2535
        ] ifTrue:[
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2536
            loopCount <= 0 ifTrue:[
3985
2b2a2ee12cdc #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3869
diff changeset
  2537
                "/ 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
  2538
                valueNeeded ifTrue:[
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2539
                    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
  2540
                ].
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2541
                ^ self
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2542
            ]
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2543
        ].
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2544
    ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2545
908
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2546
    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
  2547
349
7632e597a3df no need to keep receiver on stack for
Claus Gittinger <cg@exept.de>
parents: 338
diff changeset
  2548
    valueNeeded ifTrue:[
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2549
        "/ easily reconstructable - no need to keep on stack
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2550
        loopCount notNil ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2551
            lateEval := true.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2552
        ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2553
        lateEval ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2554
            aStream nextPut:#dup
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2555
        ].
349
7632e597a3df no need to keep receiver on stack for
Claus Gittinger <cg@exept.de>
parents: 338
diff changeset
  2556
    ].
96
claus
parents: 95
diff changeset
  2557
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2558
    loopCount isNil ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2559
        aStream nextPut:#pushgt0; nextPut:lineNr; nextPut:#falseJump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2560
        pos2 := aStream position + 1.
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2561
        aStream nextPut:0.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2562
    ].
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2563
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2564
    pos1 := aStream position + 1.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2565
    (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
  2566
    aStream nextPut:#minus1; nextPut:lineNr.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2567
    aStream nextPut:#pushgt0; nextPut:lineNr.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2568
    aStream nextPut:#trueJump; nextPut:pos1.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2569
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2570
    pos2 notNil ifTrue:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2571
        (aStream contents) at:pos2 put:(aStream position + 1).
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2572
    ].
528
0a35ed44989f oops - timesRepeat dupped one too many
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  2573
    aStream nextPut:#drop.  "/ drop run variable
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2574
349
7632e597a3df no need to keep receiver on stack for
Claus Gittinger <cg@exept.de>
parents: 338
diff changeset
  2575
    lateEval ifTrue:[
908
294e131f2f6d oops - 0 timesRepeat (with constant receiver) did it once
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
  2576
        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
  2577
    ]
7632e597a3df no need to keep receiver on stack for
Claus Gittinger <cg@exept.de>
parents: 338
diff changeset
  2578
528
0a35ed44989f oops - timesRepeat dupped one too many
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  2579
    "Modified: 27.5.1997 / 14:28:49 / cg"
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2580
!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2581
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2582
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
  2583
    "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
  2584
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2585
    |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
  2586
     stepVal stopVarIndex|
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2587
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2588
    "/ 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
  2589
    "/ 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
  2590
    "/ 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
  2591
    "/ 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
  2592
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2593
    start := receiver.
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2594
    stop := (argArray at:1).
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2595
    step := (argArray at:2).
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2596
1397
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
  2597
"/    stop isConstant ifFalse:[self error:'should not happen' mayProceed:true].
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
  2598
"/    (stop evaluate isMemberOf:SmallInteger) ifFalse:[self error:'should not happen' mayProceed:true].
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
  2599
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
  2600
    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
  2601
    stepVal := step evaluate.
1397
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
  2602
    (stepVal isMemberOf:SmallInteger) ifFalse:[
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
  2603
        self error:'should not happen' mayProceed:true
969f505b6111 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 1389
diff changeset
  2604
    ].
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2605
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2606
    start codeOn:aStream inBlock:b for:aCompiler.
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2607
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2608
    lateEval := false.
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2609
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2610
    valueNeeded ifTrue:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2611
        "/ 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
  2612
        start isConstant ifTrue:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2613
            (start evaluate isMemberOf:SmallInteger) ifTrue:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2614
                lateEval := true.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2615
            ]
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2616
        ].
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2617
        lateEval ifFalse:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2618
            aStream nextPut:#dup
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2619
        ].
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2620
    ].
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2621
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2622
    "/ 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
  2623
    "/  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
  2624
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2625
    (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
  2626
        "/ 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
  2627
        (stop isVariable and:[stop isArgument]) ifFalse:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2628
            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
  2629
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2630
            b isNil ifTrue:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2631
                stopVarIndex := aCompiler addTempVar.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2632
                aStream nextPut:#storeMethodVar; nextPut:stopVarIndex.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2633
            ] ifFalse:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2634
                stopVarIndex := b addTempVar.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2635
                aStream nextPut:#storeBlockVar; nextPut:stopVarIndex.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2636
            ].
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2637
        ]
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2638
    ].
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2639
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2640
    pos := aStream position + 1.
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2641
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2642
    aStream nextPut:#dup.
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2643
    stopVarIndex notNil ifTrue:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2644
        b isNil ifTrue:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2645
            aStream nextPut:#pushMethodVar; nextPut:stopVarIndex.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2646
        ] ifFalse:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2647
            aStream nextPut:#pushBlockVar; nextPut:stopVarIndex.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2648
        ]
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2649
    ] ifFalse:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2650
        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
  2651
    ].
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2652
    stepVal >= 0 ifTrue:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2653
        aStream nextPut:#>.
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2654
    ] ifFalse:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2655
        aStream nextPut:#<.
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2656
    ].
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2657
    (aCompiler hasLineNumber:selector) ifTrue:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2658
        aStream nextPut:lineNr.
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2659
    ].
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2660
    aStream nextPut:#trueJump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2661
    pos2 := aStream position + 1.
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2662
    aStream nextPut:0.
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2663
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2664
    theBlock := argArray at:3.
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2665
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2666
    "/ 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
  2667
    "/ the loop ...
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2668
    b isNil ifTrue:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2669
        loopVarIndex := aCompiler addTempVar.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2670
        aStream nextPut:#dup.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2671
        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
  2672
    ] ifFalse:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2673
        loopVarIndex := b addTempVar.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2674
        aStream nextPut:#dup.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2675
        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
  2676
    ].
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2677
    theBlock indexOfFirstTemp:loopVarIndex.
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2678
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2679
    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
  2680
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2681
    "/ increment/decrement counter & jump back.
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2682
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2683
    stepVal == 1 ifTrue:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2684
        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
  2685
    ] ifFalse:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2686
        stepVal == -1 ifTrue:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2687
            aStream nextPut:#minus1; nextPut:lineNr.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2688
        ] ifFalse:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2689
            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
  2690
            aStream nextPut:#+.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2691
            (aCompiler hasLineNumber:#+) ifTrue:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2692
                aStream nextPut:lineNr.
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2693
            ].
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2694
        ]
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2695
    ].
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2696
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2697
    aStream nextPut:#jump; nextPut:pos.
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2698
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2699
    (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
  2700
    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
  2701
    lateEval ifTrue:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2702
        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
  2703
    ].
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2704
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2705
    "/ 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
  2706
    "/ (its integer, anyway).
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2707
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2708
    b isNil ifTrue:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2709
        aCompiler removeTempVar
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
        b removeTempVar
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2712
    ].
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2713
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2714
    stopVarIndex notNil ifTrue:[
1281
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2715
        b isNil ifTrue:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2716
            aCompiler removeTempVar
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2717
        ] ifFalse:[
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2718
            b removeTempVar
e70c494950b2 ansi error: to:by:do: with 0 increment.
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  2719
        ]
565
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
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2722
    "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
  2723
    "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
  2724
!
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2725
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2726
codeToDoOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
4389
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  2727
    "generate code for n to:m do:[:unusedArg | ... ]
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  2728
     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
  2729
     or float."
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2730
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2731
    |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
  2732
     stopVarIndex|
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
    "/ 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
  2735
    "/ 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
  2736
    "/ 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
  2737
    "/ 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
  2738
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2739
    start := receiver.
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2740
    stop := argArray at:1.
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2741
"/    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
  2742
"/    (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
  2743
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2744
    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
  2745
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2746
    lateEval := false.
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2747
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2748
    valueNeeded ifTrue:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2749
        "/ 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
  2750
        start isConstant ifTrue:[
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2751
            (start evaluate isMemberOf:SmallInteger) ifTrue:[
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2752
                lateEval := true.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2753
            ]
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2754
        ].
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2755
        lateEval ifFalse:[
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2756
            aStream nextPut:#dup
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
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
    "/ 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
  2761
    "/  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
  2762
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2763
    (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
  2764
        "/ 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
  2765
        (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
  2766
            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
  2767
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2768
            b isNil ifTrue:[
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2769
                stopVarIndex := aCompiler addTempVar.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2770
                aStream nextPut:#storeMethodVar; nextPut:stopVarIndex.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2771
            ] ifFalse:[
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2772
                stopVarIndex := b addTempVar.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2773
                aStream nextPut:#storeBlockVar; nextPut:stopVarIndex.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2774
            ].
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2775
        ]
565
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
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2778
    pos := aStream position + 1.
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2779
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2780
    self codeLineNumber:lineNr on:aStream for:aCompiler.  
624
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 602
diff changeset
  2781
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2782
    aStream nextPut:#dup.
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2783
    stopVarIndex notNil ifTrue:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2784
        b isNil ifTrue:[
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2785
            aStream nextPut:#pushMethodVar; nextPut:stopVarIndex.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2786
        ] ifFalse:[
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2787
            aStream nextPut:#pushBlockVar; nextPut:stopVarIndex.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2788
        ]
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2789
    ] ifFalse:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2790
        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
  2791
    ].
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2792
    aStream nextPut:#>.
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2793
    (aCompiler hasLineNumber:selector) ifTrue:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2794
        aStream nextPut:lineNr.
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2795
    ].
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2796
    aStream nextPut:#trueJump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2797
    pos2 := aStream position + 1.
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2798
    aStream nextPut:0.
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2799
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2800
    theBlock := argArray at:2.
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2801
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2802
    "/ 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
  2803
    "/ the loop ...
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2804
    b isNil ifTrue:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2805
        loopVarIndex := aCompiler addTempVar.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2806
        aStream nextPut:#dup.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2807
        aStream nextPut:#storeMethodVar; nextPut:loopVarIndex.
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2808
    ] ifFalse:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2809
        loopVarIndex := b addTempVar.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2810
        aStream nextPut:#dup.
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2811
        aStream nextPut:#storeBlockVar; nextPut:loopVarIndex.
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2812
    ].
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2813
    theBlock indexOfFirstTemp:loopVarIndex.
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2814
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2815
    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
  2816
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2817
    "/ increment counter & jump back.
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2818
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2819
    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
  2820
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2821
    (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
  2822
    aStream nextPut:#drop.  "/ drop run variable
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2823
    lateEval ifTrue:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2824
        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
  2825
    ].
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2826
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2827
    "/ 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
  2828
    "/ (its integer, anyway).
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2829
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2830
    b isNil ifTrue:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2831
        aCompiler removeTempVar
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2832
    ] ifFalse:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2833
        b removeTempVar
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2834
    ].
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2835
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2836
    stopVarIndex notNil ifTrue:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2837
        b isNil ifTrue:[
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2838
            aCompiler removeTempVar
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2839
        ] ifFalse:[
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2840
            b removeTempVar
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  2841
        ]
565
00673e9d6edc more inlining of #to:do: and #to:by:do:
Claus Gittinger <cg@exept.de>
parents: 564
diff changeset
  2842
    ].
561
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2843
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2844
    "Created: / 26-06-1997 / 10:58:47 / cg"
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2845
    "Modified: / 19-10-1997 / 01:31:40 / cg"
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  2846
    "Modified: / 19-07-2018 / 14:09:05 / Stefan Vogel"
4389
ec167309e309 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  2847
    "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
  2848
!
19279079cc9a inline toDo blocks withs constant start/stop
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2849
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2850
codeValueSendOn:aStream for:aCompiler
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2851
    "/ 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
  2852
    aStream nextPut:#value.
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2853
    (aCompiler hasLineNumber:#value) ifTrue:[
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2854
        aStream nextPut:lineNr.
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2855
    ]
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2856
!
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  2857
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2858
codeWhileOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
200
b2f77bd77070 inline code for [...] whileXXX
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  2859
    "generate code for
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2860
        [...] whileXXX:[ ... ] 
200
b2f77bd77070 inline code for [...] whileXXX
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  2861
     and also 
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2862
        [...] whileXXX
200
b2f77bd77070 inline code for [...] whileXXX
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  2863
    "
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2864
200
b2f77bd77070 inline code for [...] whileXXX
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  2865
    |pos pos2 theReceiver theArg theByteCode optByteCode needLineNr blockExpr
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2866
     hasLoopBlock fastReceiver condStats constCondition|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2867
200
b2f77bd77070 inline code for [...] whileXXX
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  2868
    hasLoopBlock := true.
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2869
    (selector == #whileTrue:) ifTrue:[
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2870
        theByteCode := #falseJump.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2871
    ] ifFalse:[
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2872
        (selector == #whileFalse:) ifTrue:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2873
            theByteCode := #trueJump
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2874
        ] ifFalse:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2875
            hasLoopBlock := false.
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2876
            (selector == #whileTrue) ifTrue:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2877
                theByteCode := #trueJump
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2878
            ] ifFalse:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2879
                theByteCode := #falseJump
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2880
            ].
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2881
        ]
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2882
    ].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2883
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2884
    theReceiver := receiver.
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  2885
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2886
    (receiver isBlock
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2887
    and:[(condStats := receiver statements) notNil
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2888
    and:[condStats nextStatement isNil
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2889
    and:[condStats expression notNil]]])
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  2890
    ifTrue:[
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2891
        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
  2892
        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
  2893
    ] ifFalse:[
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  2894
        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
  2895
    ].
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  2896
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2897
    optByteCode notNil ifTrue:[
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2898
        ((optByteCode == #eqJump) or:[optByteCode == #notEqJump]) ifTrue:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2899
            theArg := receiver statements expression arg1
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2900
        ].
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2901
        theReceiver := receiver statements expression receiver.
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2902
        theByteCode := optByteCode
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2903
    ].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2904
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2905
"/ OLD:
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2906
"/    valueNeeded ifTrue:[aStream nextPut:#pushNil].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2907
"/
167
d3dbd739c65a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
  2908
    needLineNr := true.
d3dbd739c65a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
  2909
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2910
    pos := aStream position + 1.
386
2f66de89a89b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 371
diff changeset
  2911
389
8aa5f9f08139 care for lineNumber in while-loop
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
  2912
"/    aCompiler lineNumberInfo == #full ifTrue:[
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2913
        self codeLineNumber:lineNr on:aStream for:aCompiler.
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2914
        needLineNr := false.
389
8aa5f9f08139 care for lineNumber in while-loop
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
  2915
"/    ].
386
2f66de89a89b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 371
diff changeset
  2916
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2917
    optByteCode notNil ifTrue:[
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2918
        theReceiver codeOn:aStream inBlock:b for:aCompiler.
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2919
        theArg notNil ifTrue:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2920
            theArg codeOn:aStream inBlock:b for:aCompiler
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2921
        ]
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2922
    ] ifFalse:[
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2923
        (fastReceiver notNil 
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2924
        and:[fastReceiver isConstant]) ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2925
            constCondition := fastReceiver evaluate.
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2926
            theByteCode == #trueJump ifTrue:[
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2927
                constCondition == true ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2928
                    theByteCode := #jump
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2929
                ] ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2930
                    constCondition == false ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2931
                        theByteCode := #never
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2932
                    ]
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2933
                ]
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2934
            ] ifFalse:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2935
                theByteCode == #falseJump ifTrue:[
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2936
                    constCondition == false ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2937
                        theByteCode := #jump
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2938
                    ] ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2939
                        constCondition == true ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2940
                            theByteCode := #never
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2941
                        ]
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2942
                    ]
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2943
                ]
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2944
            ]
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2945
        ].
167
d3dbd739c65a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
  2946
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  2947
        (theByteCode ~~ #jump and:[theByteCode ~~ #never]) ifTrue:[
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2948
            theReceiver codeInlineOn:aStream inBlock:b for:aCompiler.
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2949
        ].
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  2950
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2951
        "/
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2952
        "/ cannot enable code below 
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2953
        "/ (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
  2954
        "/ think about it ...
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2955
        "/
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2956
        blockExpr := theReceiver simpleSendBlockExpression.
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2957
        blockExpr notNil ifTrue:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2958
            blockExpr isMessage ifTrue:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2959
                (aCompiler hasLineNumber:(blockExpr selector)) ifTrue:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2960
                    blockExpr lineNumber == lineNr ifTrue:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2961
                        needLineNr := false
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2962
                    ]
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2963
                ]
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2964
            ]
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2965
        ].
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2966
    ].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2967
167
d3dbd739c65a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
  2968
    needLineNr ifTrue:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2969
        self codeLineNumber:lineNr on:aStream for:aCompiler.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2970
    ].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2971
200
b2f77bd77070 inline code for [...] whileXXX
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  2972
    hasLoopBlock ifFalse:[
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2973
        "/ simple [...] whileXXX
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2974
        theByteCode ~~ #never ifTrue:[
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2975
            aStream nextPut:theByteCode; nextPut:pos.
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2976
        ].
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  2977
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2978
        valueNeeded ifTrue:[aStream nextPut:#pushNil].
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2979
        ^ self
200
b2f77bd77070 inline code for [...] whileXXX
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  2980
    ].
b2f77bd77070 inline code for [...] whileXXX
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  2981
b2f77bd77070 inline code for [...] whileXXX
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  2982
    "/ [...] whileXXX:[...]
b2f77bd77070 inline code for [...] whileXXX
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  2983
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  2984
    theByteCode ~~ #never ifTrue:[
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2985
        aStream nextPut:theByteCode.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2986
        pos2 := aStream position + 1.
817
8de90dbed4bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  2987
        aStream nextPut:0.
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  2988
    ].
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  2989
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2990
    (argArray at:1) codeInlineOn:aStream inBlock:b valueNeeded:false for:aCompiler.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2991
    aStream nextPut:#jump; nextPut:pos.
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  2992
    theByteCode ~~ #never ifTrue:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  2993
        (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
  2994
    ].
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  2995
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2996
    valueNeeded ifTrue:[aStream nextPut:#pushNil].
167
d3dbd739c65a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
  2997
389
8aa5f9f08139 care for lineNumber in while-loop
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
  2998
    "Modified: 22.10.1996 / 21:34:37 / cg"
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2999
!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3000
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3001
new_codeWhileOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3002
    "generate code for
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3003
        [...] whileXXX:[ ... ] 
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3004
     and also 
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3005
        [...] whileXXX
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3006
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3007
     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
  3008
     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
  3009
     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
  3010
     to detect loops and actually generates better machine code for the
910
eb4849c04fff comment
Claus Gittinger <cg@exept.de>
parents: 909
diff changeset
  3011
     old bytecode sequence ... (sigh)
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3012
    "
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3013
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3014
    |pos pos0 theReceiver theArg theByteCode optByteCode needLineNr blockExpr
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3015
     hasLoopBlock fastReceiver condStats constCondition|
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3016
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3017
    hasLoopBlock := true.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3018
    (selector == #whileTrue:) ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3019
        theByteCode := #trueJump.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3020
    ] ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3021
        (selector == #whileFalse:) ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3022
            theByteCode := #falseJump
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3023
        ] ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3024
            hasLoopBlock := false.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3025
            (selector == #whileTrue) ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3026
                theByteCode := #trueJump
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3027
            ] ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3028
                theByteCode := #falseJump
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3029
            ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3030
        ]
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3031
    ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3032
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3033
    theReceiver := receiver.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3034
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3035
    (receiver isBlock
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3036
    and:[(condStats := receiver statements) notNil
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3037
    and:[condStats nextStatement isNil
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3038
    and:[(fastReceiver := condStats expression) notNil]]])
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3039
    ifTrue:[
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3040
        optByteCode := self optimizedConditionFor:fastReceiver with:theByteCode for:aCompiler.
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3041
    ] ifFalse:[
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3042
        optByteCode := self optimizedConditionFor:theReceiver with:theByteCode for:aCompiler.
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3043
    ].
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
    optByteCode notNil ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3046
        ((optByteCode == #eqJump) or:[optByteCode == #notEqJump]) ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3047
            theArg := receiver statements expression arg1
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3048
        ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3049
        theReceiver := receiver statements expression receiver.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3050
        theByteCode := optByteCode
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
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3053
    needLineNr := true.
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 ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3056
        (argArray at:1) isEmptyBlock ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3057
            aStream nextPut:#jump.
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  3058
            pos0 := aStream position + 1.
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3059
            aStream nextPut:0.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3060
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  3061
            pos := aStream position + 1.
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3062
            (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
  3063
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  3064
            (aStream contents) at:pos0 put:(aStream position + 1).
856
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3065
        ]
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3066
    ] ifFalse:[
3266
96ed152db6df class: MessageNode
Stefan Vogel <sv@exept.de>
parents: 3164
diff changeset
  3067
        pos := aStream position + 1.
856
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
    optByteCode isNil ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3071
        blockExpr := theReceiver simpleSendBlockExpression.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3072
        blockExpr notNil ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3073
            blockExpr isMessage ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3074
                (aCompiler hasLineNumber:(blockExpr selector)) ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3075
                    blockExpr lineNumber == lineNr ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3076
                        needLineNr := false
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3077
                    ]
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3078
                ]
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3079
            ]
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3080
        ].
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
    needLineNr ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3084
        self codeLineNumber:lineNr on:aStream for:aCompiler.
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  3085
        needLineNr := false.
856
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
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3088
    optByteCode notNil ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3089
        theReceiver codeOn:aStream inBlock:b for:aCompiler.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3090
        theArg notNil ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3091
            theArg codeOn:aStream inBlock:b for:aCompiler
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
    ] ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3094
        (fastReceiver notNil 
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3095
        and:[fastReceiver isConstant]) ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3096
            constCondition := fastReceiver evaluate.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3097
            theByteCode == #trueJump ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3098
                constCondition == true ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3099
                    theByteCode := #jump
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3100
                ] ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3101
                    constCondition == false ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3102
                        theByteCode := #never
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
                ]
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3105
            ] ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3106
                theByteCode == #falseJump ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3107
                    constCondition == false ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3108
                        theByteCode := #jump
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3109
                    ] ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3110
                        constCondition == true ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3111
                            theByteCode := #never
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3112
                        ]
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3113
                    ]
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3114
                ]
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
        (theByteCode ~~ #jump and:[theByteCode ~~ #never]) ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3119
            theReceiver codeInlineOn:aStream inBlock:b for:aCompiler.
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
    ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3122
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3123
    hasLoopBlock ifFalse:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3124
        "/ simple [...] whileXXX
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3125
        theByteCode ~~ #never ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3126
            aStream nextPut:theByteCode; nextPut:pos.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3127
        ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3128
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3129
        valueNeeded ifTrue:[aStream nextPut:#pushNil].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3130
        ^ self
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3131
    ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3132
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3133
    "/ [...] whileXXX:[...]
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3134
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3135
    theByteCode ~~ #never ifTrue:[
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3136
        aStream nextPut:theByteCode.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3137
        aStream nextPut:pos.
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3138
    ].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3139
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3140
    valueNeeded ifTrue:[aStream nextPut:#pushNil].
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3141
4284
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  3142
    "Modified: / 22-10-1996 / 21:34:37 / cg"
74de1d1dd381 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4245
diff changeset
  3143
    "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
  3144
!
bcc52caf1192 timesRepeat: - check at loop-end
Claus Gittinger <cg@exept.de>
parents: 851
diff changeset
  3145
1463
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3146
optimizedConditionFor:aReceiver with:aByteCode for:aCompiler
186
05a99f1bd747 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 167
diff changeset
  3147
    |rec sel stats|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3148
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3149
    rec := aReceiver.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3150
    (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
  3151
        (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
  3152
            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
  3153
                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
  3154
            ]
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3155
        ]
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3156
    ].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3157
    (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
  3158
        sel := rec selector.
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3159
        (sel == #isNil) ifTrue:[
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3160
            "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3161
            "/ isNil trueJmp  -> nilJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3162
            "/ isNil falseJmp -> notNilJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3163
            "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3164
            aCompiler addLiteral:#isNil.
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3165
            (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
  3166
            (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
  3167
        ].
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3168
        (sel == #notNil) ifTrue:[
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3169
            "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3170
            "/ notNil trueJmp  -> notNilJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3171
            "/ notNil falseJmp -> nilJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3172
            "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3173
            aCompiler addLiteral:#notNil.
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3174
            (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
  3175
            (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
  3176
        ].
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3177
        (sel == #not) ifTrue:[
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3178
            "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3179
            "/ not trueJmp  -> falseJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3180
            "/ not falseJmp -> trueJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3181
            "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3182
            aCompiler addLiteral:#not.
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3183
            (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
  3184
            (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
  3185
        ].
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3186
        ^ nil
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3187
    ].
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3188
    (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
  3189
        sel := rec selector.
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3190
        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
  3191
            (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
  3192
                "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3193
                "/ ==0 trueJmp  -> zeroJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3194
                "/ ==0 falseJmp -> notZeroJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3195
                "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3196
                (sel == #==) ifTrue:[
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3197
                    aCompiler addLiteral:#==.
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3198
                    (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
  3199
                    (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
  3200
                ].
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
                "/ ~~0 trueJmp  -> notZeroJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3203
                "/ ~~0 falseJmp -> zeroJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3204
                "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3205
                (sel == #~~) ifTrue:[
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3206
                    aCompiler addLiteral:#~~.
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3207
                    (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
  3208
                    (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
  3209
                ].
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3210
                ^ nil
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3211
            ]
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3212
        ].
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3213
        (sel == #==) ifTrue:[
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
            "/ == trueJmp  -> eqJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3216
            "/ == falseJmp -> notEqJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3217
            "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3218
            aCompiler addLiteral:#==.
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3219
            (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
  3220
            (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
  3221
        ].
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3222
        (sel == #~~) ifTrue:[
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
            "/ ~~ trueJmp  -> notEqJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3225
            "/ ~~ falseJmp -> eqJump
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3226
            "/
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3227
            aCompiler addLiteral:#~~.
14c0b5d19e13 make sure, all literals are present in the methods literal-table.
Claus Gittinger <cg@exept.de>
parents: 1435
diff changeset
  3228
            (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
  3229
            (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
  3230
        ]
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3231
    ].
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3232
    ^ nil
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3233
!
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3234
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3235
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
  3236
    |rVal branch|
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3237
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3238
    receiver isConstant ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3239
        rVal := receiver evaluate.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3240
        rVal == true ifTrue:[
1248
ba526cbb348a fixed optimization of: <true|false> ifTrue/false: non-block
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  3241
            (selector == #ifFalse:) ifTrue:[
1422
cdee45eb0303 oops - wrong code was generatedd for inlined
Claus Gittinger <cg@exept.de>
parents: 1397
diff changeset
  3242
                valueNeeded ifTrue:[
cdee45eb0303 oops - wrong code was generatedd for inlined
Claus Gittinger <cg@exept.de>
parents: 1397
diff changeset
  3243
                    "/ true ifFalse:[] - evaluates to nil.
cdee45eb0303 oops - wrong code was generatedd for inlined
Claus Gittinger <cg@exept.de>
parents: 1397
diff changeset
  3244
                    aStream nextPut:#pushNil
cdee45eb0303 oops - wrong code was generatedd for inlined
Claus Gittinger <cg@exept.de>
parents: 1397
diff changeset
  3245
                ].
1248
ba526cbb348a fixed optimization of: <true|false> ifTrue/false: non-block
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  3246
                ^ true.
ba526cbb348a fixed optimization of: <true|false> ifTrue/false: non-block
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  3247
            ].
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3248
            ((selector == #ifTrue:) or:[selector == #ifTrue:ifFalse:]) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3249
                branch := (argArray at: 1).
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3250
            ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3251
            (selector == #ifFalse:ifTrue:) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3252
                branch := (argArray at: 2).
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3253
            ].
1248
ba526cbb348a fixed optimization of: <true|false> ifTrue/false: non-block
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  3254
        ].
ba526cbb348a fixed optimization of: <true|false> ifTrue/false: non-block
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  3255
        rVal == false ifTrue:[
ba526cbb348a fixed optimization of: <true|false> ifTrue/false: non-block
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  3256
            (selector == #ifTrue:) ifTrue:[
1422
cdee45eb0303 oops - wrong code was generatedd for inlined
Claus Gittinger <cg@exept.de>
parents: 1397
diff changeset
  3257
                valueNeeded ifTrue:[
cdee45eb0303 oops - wrong code was generatedd for inlined
Claus Gittinger <cg@exept.de>
parents: 1397
diff changeset
  3258
                    "/ false ifTrue:[] - evaluates to nil.
cdee45eb0303 oops - wrong code was generatedd for inlined
Claus Gittinger <cg@exept.de>
parents: 1397
diff changeset
  3259
                    aStream nextPut:#pushNil
cdee45eb0303 oops - wrong code was generatedd for inlined
Claus Gittinger <cg@exept.de>
parents: 1397
diff changeset
  3260
                ].
992
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3261
                ^ true.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3262
            ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3263
            ((selector == #ifFalse:) or:[selector == #ifFalse:ifTrue:]) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3264
                branch := (argArray at: 1).
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3265
            ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3266
            (selector == #ifTrue:ifFalse:) ifTrue:[
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3267
                branch := (argArray at: 2).
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3268
            ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3269
        ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3270
        branch notNil ifTrue:[
1435
be9680c6145c factored out some common code (block-code and value-sending)
Claus Gittinger <cg@exept.de>
parents: 1425
diff changeset
  3271
            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
  3272
            ^ true.
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3273
        ]
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3274
    ].
7e8ef3583a43 do not emit conditionalBranch, if receiver of
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  3275
    ^ false
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3276
! !
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3277
1080
bd3f19f6009a category change
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  3278
!MessageNode methodsFor:'printing & storing'!
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3279
1588
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3280
printOn:aStream indent:i 
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3281
    |selectorParts|
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3282
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3283
    (#( whileTrue: whileFalse: ) includes:selector) ifTrue:[
888
5858090fc8c3 changed #printOn: to indent
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
  3284
        receiver isBlock ifTrue:[
5858090fc8c3 changed #printOn: to indent
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
  3285
            ^ self printWhileOn:aStream indent:i
5858090fc8c3 changed #printOn: to indent
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
  3286
        ].
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3287
    ].
3330
6abed184183c class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3317
diff changeset
  3288
    selectorParts := selector keywords.
1588
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3289
    receiver printOn:aStream indent:i parenthized:(receiver precedence <= self precedence).
1791
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
  3290
    argArray notNil ifTrue:[
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
  3291
        argArray with:selectorParts
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
  3292
            do:[:arg :selPart | 
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
  3293
                aStream
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
  3294
                    cr;
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
  3295
                    spaces:i + 4;
2542
251e766c3530 changed: #printOn:indent:
Claus Gittinger <cg@exept.de>
parents: 2521
diff changeset
  3296
                    nextPutAll:selPart.
251e766c3530 changed: #printOn:indent:
Claus Gittinger <cg@exept.de>
parents: 2521
diff changeset
  3297
                arg printOn:aStream 
251e766c3530 changed: #printOn:indent:
Claus Gittinger <cg@exept.de>
parents: 2521
diff changeset
  3298
                    indent:i + 4 
251e766c3530 changed: #printOn:indent:
Claus Gittinger <cg@exept.de>
parents: 2521
diff changeset
  3299
                    parenthized:(arg precedence <= self precedence).
1791
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
  3300
            ]
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
  3301
    ].
cd786d318d6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1727
diff changeset
  3302
2542
251e766c3530 changed: #printOn:indent:
Claus Gittinger <cg@exept.de>
parents: 2521
diff changeset
  3303
    "Modified: / 06-07-2011 / 09:44:55 / cg"
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3304
!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3305
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3306
printWhileOn:aStream indent:i
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3307
    "special handling of whileTrue/whileFalse"
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3308
1588
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3309
    |arg|
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3310
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3311
    aStream nextPutAll:'['.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3312
    receiver statements printOn:aStream indent:i.
1588
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3313
    aStream nextPutAll:'] ',selector,' '.
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
    arg := argArray at:1.
1588
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3316
    arg printOn:aStream indent:i parenthized:(arg precedence <= self precedence).
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3317
! !
106
claus
parents: 104
diff changeset
  3318
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3319
!MessageNode methodsFor:'queries'!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3320
1565
9388e72e2dff Define #argumentCount as ANSI alias for #numArgs
Stefan Vogel <sv@exept.de>
parents: 1533
diff changeset
  3321
argumentCount
9388e72e2dff Define #argumentCount as ANSI alias for #numArgs
Stefan Vogel <sv@exept.de>
parents: 1533
diff changeset
  3322
    "VisualAge/ANSI compatibility - same as numArgs"
9388e72e2dff Define #argumentCount as ANSI alias for #numArgs
Stefan Vogel <sv@exept.de>
parents: 1533
diff changeset
  3323
9388e72e2dff Define #argumentCount as ANSI alias for #numArgs
Stefan Vogel <sv@exept.de>
parents: 1533
diff changeset
  3324
    ^ argArray size
9388e72e2dff Define #argumentCount as ANSI alias for #numArgs
Stefan Vogel <sv@exept.de>
parents: 1533
diff changeset
  3325
!
9388e72e2dff Define #argumentCount as ANSI alias for #numArgs
Stefan Vogel <sv@exept.de>
parents: 1533
diff changeset
  3326
395
16156d8711c2 added block collector
Claus Gittinger <cg@exept.de>
parents: 389
diff changeset
  3327
collectBlocksInto:aCollection
16156d8711c2 added block collector
Claus Gittinger <cg@exept.de>
parents: 389
diff changeset
  3328
    receiver collectBlocksInto:aCollection.
4371
4b418ce7d687 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4347
diff changeset
  3329
    argArray size ~~ 0 ifTrue:[
1727
58820b0c1e7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  3330
        argArray do:[:arg |
58820b0c1e7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  3331
            arg collectBlocksInto:aCollection.
58820b0c1e7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  3332
        ]
395
16156d8711c2 added block collector
Claus Gittinger <cg@exept.de>
parents: 389
diff changeset
  3333
    ].
16156d8711c2 added block collector
Claus Gittinger <cg@exept.de>
parents: 389
diff changeset
  3334
4371
4b418ce7d687 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4347
diff changeset
  3335
    "Created: / 23-10-1996 / 15:44:49 / cg"
4b418ce7d687 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4347
diff changeset
  3336
    "Modified: / 01-03-2019 / 15:59:25 / Claus Gittinger"
395
16156d8711c2 added block collector
Claus Gittinger <cg@exept.de>
parents: 389
diff changeset
  3337
!
16156d8711c2 added block collector
Claus Gittinger <cg@exept.de>
parents: 389
diff changeset
  3338
2384
3854f86e767a added: #containsReturn
Claus Gittinger <cg@exept.de>
parents: 2345
diff changeset
  3339
containsReturn
3854f86e767a added: #containsReturn
Claus Gittinger <cg@exept.de>
parents: 2345
diff changeset
  3340
    receiver containsReturn ifTrue:[^ true].
3854f86e767a added: #containsReturn
Claus Gittinger <cg@exept.de>
parents: 2345
diff changeset
  3341
    ^ self arguments contains:[:arg | arg containsReturn]
3854f86e767a added: #containsReturn
Claus Gittinger <cg@exept.de>
parents: 2345
diff changeset
  3342
!
3854f86e767a added: #containsReturn
Claus Gittinger <cg@exept.de>
parents: 2345
diff changeset
  3343
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  3344
isCascade
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  3345
    ^ false
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  3346
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  3347
    "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
  3348
!
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  3349
1384
0db9682870d9 evaluate -> evaluateIn:
Claus Gittinger <cg@exept.de>
parents: 1382
diff changeset
  3350
numArgs
0db9682870d9 evaluate -> evaluateIn:
Claus Gittinger <cg@exept.de>
parents: 1382
diff changeset
  3351
    ^ argArray size
0db9682870d9 evaluate -> evaluateIn:
Claus Gittinger <cg@exept.de>
parents: 1382
diff changeset
  3352
!
0db9682870d9 evaluate -> evaluateIn:
Claus Gittinger <cg@exept.de>
parents: 1382
diff changeset
  3353
1588
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3354
precedence
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3355
    ^ 10
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3356
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3357
    "Created: / 20-04-2005 / 14:10:59 / cg"
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3358
!
4c3183dfaa5f printing
Claus Gittinger <cg@exept.de>
parents: 1587
diff changeset
  3359
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  3360
realReceiver
746
429cfc59b440 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  3361
    receiver isCascade ifTrue:[
429cfc59b440 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  3362
        ^ receiver realReceiver
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  3363
    ].
746
429cfc59b440 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  3364
    self isCascade ifTrue:[
429cfc59b440 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  3365
        ^ receiver receiver
744
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  3366
    ].
e871f9f072f8 changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 715
diff changeset
  3367
746
429cfc59b440 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  3368
    ^ receiver
429cfc59b440 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  3369
429cfc59b440 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  3370
    "Modified: / 17.7.1998 / 02:09:05 / cg"
2268
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3371
!
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3372
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3373
withConstantValueDo:aBlock
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3374
    "return true, if this evaluates to a constant value
3573
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3375
     and evaluate aBlock with it. 
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3376
     Also return true, if the node can be evaluated at compile time.
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3377
     Used for constant folding"
3016
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3378
3017
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3379
    |recVal argValues allArgsConstant fold cond2 condVal2|
2268
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3380
2273
d952d08cf43c changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2270
diff changeset
  3381
    (receiver isGlobal and:[receiver name = 'Smalltalk']) ifTrue:[
3017
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3382
        "/ (Smalltalk respondsTo:#isSmalltalkX) -> true
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3383
        (selector == #respondsTo:) ifTrue:[
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3384
            argArray size == 1 ifTrue:[
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3385
                argArray first isConstant ifTrue:[
3595
78895886711a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3594
diff changeset
  3386
                    (#(isSmalltalkX isVisualSmalltalkEnterprise isVisualWorks isSqueak isDolphinSmalltalk)
3573
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3387
                        includesIdentical: argArray first value)
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3388
                    ifTrue:[
3017
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3389
                        "/ true here !!
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3390
                        aBlock value:true.
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3391
                        ^ true
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3392
                    ].
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3393
                ].
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3394
            ].
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3395
        ].
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3396
        "/ (Smalltalk isSmalltalkX) -> true
2273
d952d08cf43c changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2270
diff changeset
  3397
        (selector == #isSmalltalkX) ifTrue:[
d952d08cf43c changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2270
diff changeset
  3398
            "/ true here !!
d952d08cf43c changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2270
diff changeset
  3399
            aBlock value:true.
d952d08cf43c changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2270
diff changeset
  3400
            ^ true
d952d08cf43c changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2270
diff changeset
  3401
        ].
3573
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3402
        "/ (Smalltalk isVisualSmalltalkEnterprise) -> false
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3403
        ((selector == #isVisualSmalltalkEnterprise) 
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3404
        or:[ (selector == #isVisualWorks) 
3594
6dd08208e80c class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3583
diff changeset
  3405
        or:[ (selector == #isDolphinSmalltalk) 
6dd08208e80c class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3583
diff changeset
  3406
        or:[ (selector == #isSqueak) ]]]) ifTrue:[
3573
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3407
            "/ true here !!
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3408
            aBlock value:false.
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3409
            ^ true
1f32e1038e8e class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  3410
        ].
2273
d952d08cf43c changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2270
diff changeset
  3411
    ].
d952d08cf43c changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2270
diff changeset
  3412
2268
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3413
    (receiver withConstantValueDo:[:val | recVal := val]) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3414
        argValues := Array new:argArray size.
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3415
        allArgsConstant := true.
2270
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
  3416
        argArray notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
  3417
            argArray doWithIndex:[:arg :index |
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
  3418
                allArgsConstant := allArgsConstant
2268
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3419
                                and:[ arg withConstantValueDo:[:val | argValues at:index put:val] ]
2270
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
  3420
            ].
2268
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3421
        ].
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3422
        allArgsConstant ifTrue:[
3016
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3423
            fold := true.
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3424
2268
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3425
            "/ only a few messages are checked:
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3426
            recVal isNumber ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3427
                (#(positive negative abs negated + - * == = ~= ~~) includes:selector) ifFalse:[
3016
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3428
                    recVal isInteger ifTrue:[
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3429
                        (#(<< bitShift: bitAnd: bitOr:) includes:selector) ifFalse:[
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3430
                            ^ false
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3431
                        ].
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3432
                    ] ifFalse:[
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3433
                        ^ false
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3434
                    ]
2268
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3435
                ].
2331
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3436
            ] ifFalse:[
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3437
                recVal isBoolean ifTrue:[
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3438
                    (#(not && || ) includes:selector) ifFalse:[
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3439
                        ^ false
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3440
                    ].
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3441
                ] ifFalse:[
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3442
                    recVal isString ifTrue:[
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3443
                        (#(size) includes:selector) ifFalse:[
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3444
                            ^ false
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3445
                        ].
2925
9ab2302a632d changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
  3446
                    ] ifFalse:[
9ab2302a632d changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
  3447
                        recVal isArray ifTrue:[
9ab2302a632d changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
  3448
                            (#(size) includes:selector) ifFalse:[
9ab2302a632d changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
  3449
                                ^ false
9ab2302a632d changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
  3450
                            ].
3016
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3451
                        ] ifFalse:[
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3452
                            ^ false
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3453
                        ]
2331
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3454
                    ].
471a6febf163 changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2329
diff changeset
  3455
                ]
2268
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3456
            ].
3016
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3457
        
2268
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3458
            aBlock value:(recVal perform:selector withArguments:argValues).
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3459
            ^ true
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3460
        ].
3017
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3461
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3462
        "/ detects: ((Smalltalk respondsTo:#isSmalltalkX) and:[Smalltalk isSmalltalkX]) ifTrue:[
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3463
        selector == #and: ifTrue:[
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3464
            recVal == false ifTrue:[
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3465
                "/ false here !!
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3466
                aBlock value:recVal.
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3467
                ^ true "/ constant
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3468
            ].
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3469
            recVal == true ifTrue:[
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3470
                argArray first isBlockNode ifTrue:[
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3471
                    argArray first isSingleExpressionBlock ifTrue:[
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3472
                        cond2 := argArray first simpleSendBlockExpression.
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3473
                        cond2 notNil ifTrue:[
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3474
                            (cond2 withConstantValueDo:[:val | condVal2 := val]) ifTrue:[
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3475
                                aBlock value:condVal2.
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3476
                                ^ true "/ constant
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3477
                            ]
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3478
                        ]
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3479
                    ]                                          
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3480
                ]
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3481
            ].
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3482
        ].
2268
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3483
    ].
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3484
    ^ false
2925
9ab2302a632d changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
  3485
9ab2302a632d changed: #withConstantValueDo:
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
  3486
    "Modified: / 12-09-2012 / 12:27:52 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3487
! !
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3488
2321
3eb00a4f2c8a category change
Claus Gittinger <cg@exept.de>
parents: 2273
diff changeset
  3489
!MessageNode methodsFor:'testing'!
3eb00a4f2c8a category change
Claus Gittinger <cg@exept.de>
parents: 2273
diff changeset
  3490
3eb00a4f2c8a category change
Claus Gittinger <cg@exept.de>
parents: 2273
diff changeset
  3491
isMessage
3eb00a4f2c8a category change
Claus Gittinger <cg@exept.de>
parents: 2273
diff changeset
  3492
    ^ true
3eb00a4f2c8a category change
Claus Gittinger <cg@exept.de>
parents: 2273
diff changeset
  3493
! !
3eb00a4f2c8a category change
Claus Gittinger <cg@exept.de>
parents: 2273
diff changeset
  3494
2601
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
  3495
!MessageNode methodsFor:'visiting'!
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
  3496
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
  3497
acceptVisitor:aVisitor 
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
  3498
    "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
  3499
     the selector (visitor pattern)"
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
  3500
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
  3501
    "stub code automatically generated - please change if required"
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
  3502
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
  3503
    ^ aVisitor visitMessageNode:self
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
  3504
! !
0bee48798eac - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2562
diff changeset
  3505
370
09c13380b03b slightly better code for "[true] whileTrue:[ ...]"
Claus Gittinger <cg@exept.de>
parents: 349
diff changeset
  3506
!MessageNode class methodsFor:'documentation'!
148
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 140
diff changeset
  3507
3017
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3508
version
3677
b344c261b4ad #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
  3509
    ^ '$Header$'
3017
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3510
!
c891786676f3 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  3511
2496
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
  3512
version_CVS
3677
b344c261b4ad #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
  3513
    ^ '$Header$'
2268
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3514
!
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  3515
2496
4d67e1d9423b Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2489
diff changeset
  3516
version_SVN
3164
f11d0862c65e Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3108
diff changeset
  3517
    ^ '$ Id $'
148
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 140
diff changeset
  3518
! !
3016
382e4e75d795 class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 2941
diff changeset
  3519