AssignmentNode.st
author Claus Gittinger <cg@exept.de>
Mon, 21 Oct 1996 16:00:31 +0200
changeset 381 f1366b7aa598
parent 375 00e24958b103
child 386 2f66de89a89b
permissions -rw-r--r--
*** empty log message ***
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
52
d80ec10c3321 *** empty log message ***
claus
parents: 32
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
"
7ad01559b262 Initial revision
claus
parents:
diff changeset
    12
7ad01559b262 Initial revision
claus
parents:
diff changeset
    13
ParseNode subclass:#AssignmentNode
375
00e24958b103 optionally code the lineNr.
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
    14
	instanceVariableNames:'variable expression lineNr'
219
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    15
	classVariableNames:''
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    16
	poolDictionaries:''
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    17
	category:'System-Compiler-Support'
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    18
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
    19
20
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    20
!AssignmentNode class methodsFor:'documentation'!
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    21
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    22
copyright
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    23
"
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    24
 COPYRIGHT (c) 1989 by Claus Gittinger
52
d80ec10c3321 *** empty log message ***
claus
parents: 32
diff changeset
    25
	      All Rights Reserved
20
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    26
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    27
 This software is furnished under a license and may be used
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    28
 only in accordance with the terms of that license and with the
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    29
 inclusion of the above copyright notice.   This software may not
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    30
 be provided or otherwise made available to, or used by, any
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    31
 other person.  No title to or ownership of the software is
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    32
 hereby transferred.
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    33
"
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    34
!
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    35
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    36
documentation
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    37
"
261
0372e948ca2d commentary
Claus Gittinger <cg@exept.de>
parents: 224
diff changeset
    38
    node for parse-trees, representing assignments.
0372e948ca2d commentary
Claus Gittinger <cg@exept.de>
parents: 224
diff changeset
    39
    This is a helper class for the compiler.
263
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 261
diff changeset
    40
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 261
diff changeset
    41
    [author:]
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 261
diff changeset
    42
        Claus Gittinger
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 261
diff changeset
    43
20
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    44
"
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    45
! !
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    46
7ad01559b262 Initial revision
claus
parents:
diff changeset
    47
!AssignmentNode class methodsFor:'instance creation'!
7ad01559b262 Initial revision
claus
parents:
diff changeset
    48
7ad01559b262 Initial revision
claus
parents:
diff changeset
    49
variable:v expression:e
7ad01559b262 Initial revision
claus
parents:
diff changeset
    50
    ^ (self basicNew) variable:v expression:e
7ad01559b262 Initial revision
claus
parents:
diff changeset
    51
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
    52
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    53
!AssignmentNode methodsFor:'accessing'!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    54
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    55
expression
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    56
    ^ expression
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    57
!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    58
375
00e24958b103 optionally code the lineNr.
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
    59
lineNr
00e24958b103 optionally code the lineNr.
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
    60
    "return lineNr"
00e24958b103 optionally code the lineNr.
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
    61
00e24958b103 optionally code the lineNr.
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
    62
    ^ lineNr
00e24958b103 optionally code the lineNr.
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
    63
00e24958b103 optionally code the lineNr.
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
    64
    "Created: 21.10.1996 / 11:49:01 / cg"
00e24958b103 optionally code the lineNr.
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
    65
!
00e24958b103 optionally code the lineNr.
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
    66
00e24958b103 optionally code the lineNr.
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
    67
lineNr:something
00e24958b103 optionally code the lineNr.
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
    68
    "set lineNr"
00e24958b103 optionally code the lineNr.
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
    69
00e24958b103 optionally code the lineNr.
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
    70
    lineNr := something.
00e24958b103 optionally code the lineNr.
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
    71
00e24958b103 optionally code the lineNr.
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
    72
    "Created: 21.10.1996 / 11:49:01 / cg"
00e24958b103 optionally code the lineNr.
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
    73
!
00e24958b103 optionally code the lineNr.
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
    74
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    75
variable:v expression:e
7ad01559b262 Initial revision
claus
parents:
diff changeset
    76
    variable := v.
7ad01559b262 Initial revision
claus
parents:
diff changeset
    77
    expression := e
7ad01559b262 Initial revision
claus
parents:
diff changeset
    78
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
    79
7ad01559b262 Initial revision
claus
parents:
diff changeset
    80
!AssignmentNode methodsFor:'code generation'!
7ad01559b262 Initial revision
claus
parents:
diff changeset
    81
117
claus
parents: 104
diff changeset
    82
checkIncDecOn:aStream
219
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    83
    "check if we can use incMvar / decMvar instruction.
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    84
     If so, code it and return true.
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    85
     Otherwise, return false."
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    86
117
claus
parents: 104
diff changeset
    87
    |sel erec arg code|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    88
7ad01559b262 Initial revision
claus
parents:
diff changeset
    89
    (variable type == #MethodVariable) ifTrue:[
219
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    90
        expression isBinaryMessage ifTrue:[
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    91
            sel := expression selector.
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    92
            erec := expression receiver.
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    93
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    94
            ((sel == #+) or:[sel == #-]) ifTrue:[
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    95
                (erec type == #MethodVariable) ifTrue:[
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    96
                    (erec index == variable index) ifTrue:[
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    97
                        arg := expression arg1.
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    98
                        arg isConstant ifTrue:[
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    99
                            (arg value == 1) ifTrue:[
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   100
                                (sel == #+) ifTrue:[
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   101
                                    code := #incMethodVar
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   102
                                ] ifFalse:[
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   103
                                    code := #decMethodVar
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   104
                                ].
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   105
                                aStream nextPut:code; nextPut:(expression lineNumber); nextPut:(variable index).
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   106
                                ^ true
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   107
                            ]
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   108
                        ]
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   109
                    ]
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   110
                ]
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   111
            ]
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   112
        ]
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   113
    ].
117
claus
parents: 104
diff changeset
   114
    ^ false
219
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   115
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   116
    "Modified: 1.3.1996 / 00:08:02 / cg"
117
claus
parents: 104
diff changeset
   117
!
claus
parents: 104
diff changeset
   118
claus
parents: 104
diff changeset
   119
codeForSideEffectOn:aStream inBlock:b for:aCompiler
claus
parents: 104
diff changeset
   120
    (self checkIncDecOn:aStream) ifTrue:[^ self].
219
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   121
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   122
    self codeNormalOn:aStream valueNeeded:false inBlock:b for:aCompiler
117
claus
parents: 104
diff changeset
   123
claus
parents: 104
diff changeset
   124
    "Modified: 4.9.1995 / 14:38:10 / claus"
219
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   125
    "Modified: 1.3.1996 / 00:42:10 / cg"
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   126
!
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   127
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   128
codeNormalOn:aStream valueNeeded:forValue inBlock:b for:aCompiler
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   129
    expression codeOn:aStream inBlock:b for:aCompiler.
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   130
    expression isBlock ifTrue:[
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   131
        variable isLocal ifTrue:[
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   132
            aStream nextPut:#blockRef
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   133
        ]
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   134
    ].
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   135
375
00e24958b103 optionally code the lineNr.
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
   136
    lineNr notNil ifTrue:[
381
f1366b7aa598 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   137
        ParseNode codeLineNumber:lineNr on:aStream for:aCompiler
375
00e24958b103 optionally code the lineNr.
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
   138
    ].
219
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   139
    variable codeStoreOn:aStream inBlock:b valueNeeded:forValue for:aCompiler
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   140
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   141
    "Modified: 4.9.1995 / 14:38:10 / claus"
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   142
    "Created: 1.3.1996 / 00:41:43 / cg"
381
f1366b7aa598 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   143
    "Modified: 21.10.1996 / 14:45:07 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   144
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
   145
104
claus
parents: 103
diff changeset
   146
codeOn:aStream inBlock:b for:aCompiler
117
claus
parents: 104
diff changeset
   147
    (self checkIncDecOn:aStream) ifTrue:[
219
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   148
        expression receiver codeOn:aStream inBlock:b for:aCompiler.
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   149
        ^ self
117
claus
parents: 104
diff changeset
   150
    ].
219
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   151
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   152
    self codeNormalOn:aStream valueNeeded:true inBlock:b for:aCompiler
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   153
6b977f472cda care for block-stores into outer contexts
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
   154
    "Modified: 1.3.1996 / 00:42:21 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   155
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
   156
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   157
!AssignmentNode methodsFor:'evaluating'!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   158
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   159
evaluate
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   160
    |value|
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   161
    value := expression evaluate.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   162
    variable store:value.
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   163
    ^ value
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   164
! !
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   165
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   166
!AssignmentNode methodsFor:'printing'!
7ad01559b262 Initial revision
claus
parents:
diff changeset
   167
7ad01559b262 Initial revision
claus
parents:
diff changeset
   168
printOn:aStream indent:i
7ad01559b262 Initial revision
claus
parents:
diff changeset
   169
    variable printOn:aStream.
7ad01559b262 Initial revision
claus
parents:
diff changeset
   170
    aStream nextPutAll:' := '.
7ad01559b262 Initial revision
claus
parents:
diff changeset
   171
    expression printOn:aStream
7ad01559b262 Initial revision
claus
parents:
diff changeset
   172
! !
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   173
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   174
!AssignmentNode methodsFor:'queries'!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   175
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   176
isAssignment
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   177
    "return true, if this is a node for an assignment"
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   178
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   179
    ^ true
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   180
! !
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   181
148
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 140
diff changeset
   182
!AssignmentNode class methodsFor:'documentation'!
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 140
diff changeset
   183
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 140
diff changeset
   184
version
381
f1366b7aa598 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   185
    ^ '$Header: /cvs/stx/stx/libcomp/AssignmentNode.st,v 1.21 1996-10-21 14:00:31 cg Exp $'
148
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 140
diff changeset
   186
! !