AssignmentNode.st
author claus
Sat, 11 Dec 1993 02:07:55 +0100
changeset 6 0cd4e7480440
parent 4 f6fd83437415
child 17 f06d70d785dc
permissions -rw-r--r--
*** empty log message ***

"
 COPYRIGHT (c) 1989 by Claus Gittinger
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"

ParseNode subclass:#AssignmentNode
       instanceVariableNames:'variable expression'
       classVariableNames:''
       poolDictionaries:''
       category:'System-Compiler-Support'
!

AssignmentNode comment:'

COPYRIGHT (c) 1989 by Claus Gittinger
              All Rights Reserved

$Header: /cvs/stx/stx/libcomp/AssignmentNode.st,v 1.4 1993-12-11 01:05:14 claus Exp $
'!

!AssignmentNode class methodsFor:'instance creation'!

variable:v expression:e
    ^ (self basicNew) variable:v expression:e
! !

!AssignmentNode methodsFor:'evaluating'!

evaluate
    |value|
    value := expression evaluate.
    variable store:value.
    ^ value
! !

!AssignmentNode methodsFor:'accessing'!

variable:v expression:e
    variable := v.
    expression := e
! !

!AssignmentNode methodsFor:'code generation'!

codeForSideEffectOn:aStream inBlock:b
    |sel arg|

    (variable type == #MethodVariable) ifTrue:[
        expression isBinaryMessage ifTrue:[
            sel := expression selector.
            ((sel == #+) or:[sel == #-]) ifTrue:[
                (expression receiver type == #MethodVariable) ifTrue:[
                    (expression receiver index == variable index) ifTrue:[
                        arg := expression arg1.
                        arg isConstant ifTrue:[
                            (arg value == 1) ifTrue:[
                                (sel == #+) ifTrue:[
                                    aStream nextPut:#incMethodVar
                                ] ifFalse:[
                                    aStream nextPut:#decMethodVar
                                ].
                                aStream nextPut:(expression lineNumber).
                                aStream nextPut:(variable index).
                                ^ self
                            ]
                        ]
                    ]
                ]
            ]
        ]
    ].
    expression codeOn:aStream inBlock:b.
    variable codeStoreOn:aStream inBlock:b valueNeeded:false
!

codeOn:aStream inBlock:b
    expression codeOn:aStream inBlock:b.
    variable codeStoreOn:aStream inBlock:b valueNeeded:true
! !

!AssignmentNode methodsFor:'printing'!

printOn:aStream indent:i
    variable printOn:aStream.
    aStream nextPutAll:' := '.
    expression printOn:aStream
! !