123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786 |
- Smalltalk createPackage: 'Compiler-AST'!
- DagParentNode subclass: #ASTNode
- slots: {#parent. #position. #source}
- package: 'Compiler-AST'!
- !ASTNode commentStamp!
- I am the abstract root class of the abstract syntax tree.
- Concrete classes should implement `#accept:` to allow visiting.
- `position` holds a point containing line and column number of the symbol location in the original source file.!
- !ASTNode methodsFor: 'accessing'!
- location: aLocation
- self position: aLocation start line @ aLocation start column
- !
- navigationNodeAt: aPoint ifAbsent: aBlock
- "Answer the navigation node in the receiver's tree at aPoint
- or nil if no navigation node was found.
-
- See `node >> isNaviationNode`"
-
- | children |
-
- children := self allDagChildren select: [ :each |
- each isNavigationNode and: [ each inPosition: aPoint ] ].
-
- children ifEmpty: [ ^ aBlock value ].
-
- ^ (children asArray sort: [ :a :b |
- (a positionStart dist: aPoint) <=
- (b positionStart dist: aPoint) ]) first
- !
- parent
- ^ parent
- !
- parent: aNode
- parent := aNode
- !
- position
- "answer the line and column of the receiver in the source code"
-
- ^ position ifNil: [
- self parent ifNotNil: [ :node | node position ] ]
- !
- position: aPosition
- position := aPosition
- !
- positionEnd
- ^ self positionStart + ((self source lines size - 1) @ (self source lines last size - 1))
- !
- positionStart
- ^ self position
- !
- size
- ^ self source size
- !
- source
- ^ source ifNil: [ '' ]
- !
- source: aString
- source := aString
- ! !
- !ASTNode methodsFor: 'testing'!
- inPosition: aPoint
- ^ (self positionStart <= aPoint and: [
- self positionEnd >= aPoint ])
- !
- isNavigationNode
- "Answer true if the node can be navigated to"
-
- ^ false
- !
- isReturnNode
- ^ false
- ! !
- ASTNode subclass: #ExpressionNode
- slots: {#shouldBeAliased}
- package: 'Compiler-AST'!
- !ExpressionNode commentStamp!
- I am the abstract root class for expression nodes.!
- !ExpressionNode methodsFor: 'accessing'!
- shouldBeAliased
- ^ shouldBeAliased ifNil: [ false ]
- !
- shouldBeAliased: aBoolean
- shouldBeAliased := aBoolean
- ! !
- !ExpressionNode methodsFor: 'building'!
- withTail: aCollection
- ^ aCollection inject: self into: [
- :receiver :send | SendNode new
- position: send position;
- source: send source;
- receiver: receiver;
- selector: send selector;
- arguments: send arguments;
- yourself ]
- ! !
- !ExpressionNode methodsFor: 'testing'!
- isIdempotent
- ^ false
- !
- isImmutable
- self deprecatedAPI: 'Use #isIdempotent instead.'.
- ^ self isIdempotent
- !
- isSuper
- ^ false
- ! !
- ExpressionNode subclass: #AssignmentNode
- slots: {#left. #right}
- package: 'Compiler-AST'!
- !AssignmentNode commentStamp!
- I represent an assignment node.!
- !AssignmentNode methodsFor: 'accessing'!
- dagChildren
- ^ { self left. self right }
- !
- left
- ^ left
- !
- left: aNode
- left := aNode
- !
- right
- ^ right
- !
- right: aNode
- right := aNode
- ! !
- !AssignmentNode methodsFor: 'visiting'!
- acceptDagVisitor: aVisitor
- ^ aVisitor visitAssignmentNode: self
- ! !
- ExpressionNode subclass: #BlockNode
- slots: {#parameters. #scope. #sequenceNode}
- package: 'Compiler-AST'!
- !BlockNode commentStamp!
- I represent an block closure node.!
- !BlockNode methodsFor: 'accessing'!
- dagChild
- ^ self sequenceNode
- !
- parameters
- ^ parameters ifNil: [ parameters := Array new ]
- !
- parameters: aCollection
- parameters := aCollection
- !
- scope
- ^ scope
- !
- scope: aLexicalScope
- scope := aLexicalScope
- !
- sequenceNode
- ^ sequenceNode
- !
- sequenceNode: anObject
- sequenceNode := anObject
- ! !
- !BlockNode methodsFor: 'visiting'!
- acceptDagVisitor: aVisitor
- ^ aVisitor visitBlockNode: self
- ! !
- ExpressionNode subclass: #CascadeNode
- slots: {#receiver}
- package: 'Compiler-AST'!
- !CascadeNode commentStamp!
- I represent an cascade node.!
- !CascadeNode methodsFor: 'accessing'!
- receiver
- ^ receiver
- !
- receiver: aNode
- receiver := aNode
- ! !
- !CascadeNode methodsFor: 'visiting'!
- acceptDagVisitor: aVisitor
- ^ aVisitor visitCascadeNode: self
- ! !
- ExpressionNode subclass: #DynamicArrayNode
- slots: {}
- package: 'Compiler-AST'!
- !DynamicArrayNode commentStamp!
- I represent an dynamic array node.!
- !DynamicArrayNode methodsFor: 'visiting'!
- acceptDagVisitor: aVisitor
- ^ aVisitor visitDynamicArrayNode: self
- ! !
- ExpressionNode subclass: #DynamicDictionaryNode
- slots: {}
- package: 'Compiler-AST'!
- !DynamicDictionaryNode commentStamp!
- I represent an dynamic dictionary node.!
- !DynamicDictionaryNode methodsFor: 'visiting'!
- acceptDagVisitor: aVisitor
- ^ aVisitor visitDynamicDictionaryNode: self
- ! !
- ExpressionNode subclass: #SendNode
- slots: {#selector. #arguments. #receiver. #index. #javaScriptSelector. #argumentSwitcher. #isSideEffect}
- package: 'Compiler-AST'!
- !SendNode commentStamp!
- I represent an message send node.!
- !SendNode methodsFor: 'accessing'!
- argumentSwitcher
- ^ argumentSwitcher
- !
- argumentSwitcher: aJSFunction
- argumentSwitcher := aJSFunction
- !
- arguments
- ^ arguments ifNil: [ arguments := #() ]
- !
- arguments: aCollection
- arguments := aCollection
- !
- beSideEffect
- isSideEffect := true
- !
- dagChildren
- self receiver ifNil: [ ^ self arguments copy ].
-
- ^ self arguments copyWithFirst: self receiver
- !
- index
- ^ index
- !
- index: anInteger
- index := anInteger
- !
- isSideEffect
- ^ isSideEffect ifNil: [ false ]
- !
- javaScriptSelector
- ^ javaScriptSelector
- !
- javaScriptSelector: aString
- javaScriptSelector := aString
- !
- navigationLink
- ^ self selector
- !
- receiver
- ^ receiver
- !
- receiver: aNode
- receiver := aNode
- !
- selector
- ^ selector
- !
- selector: aString
- selector := aString
- !
- superSend
- ^ self receiver ifNil: [ false ] ifNotNil: [ :recv | recv isSuper ]
- ! !
- !SendNode methodsFor: 'testing'!
- isNavigationNode
- ^ true
- ! !
- !SendNode methodsFor: 'visiting'!
- acceptDagVisitor: aVisitor
- ^ aVisitor visitSendNode: self
- ! !
- ExpressionNode subclass: #ValueNode
- slots: {#value}
- package: 'Compiler-AST'!
- !ValueNode commentStamp!
- I represent a value node.!
- !ValueNode methodsFor: 'accessing'!
- value
- ^ value
- !
- value: anObject
- value := anObject
- ! !
- !ValueNode methodsFor: 'testing'!
- isIdempotent
- ^ self value isImmutable
- ! !
- !ValueNode methodsFor: 'visiting'!
- acceptDagVisitor: aVisitor
- ^ aVisitor visitValueNode: self
- ! !
- ExpressionNode subclass: #VariableNode
- slots: {#identifier. #assigned. #binding}
- package: 'Compiler-AST'!
- !VariableNode commentStamp!
- I represent an variable node.!
- !VariableNode methodsFor: 'accessing'!
- alias
- ^ self binding alias
- !
- assigned
- ^ assigned ifNil: [ false ]
- !
- assigned: aBoolean
- assigned := aBoolean
- !
- binding
- ^ binding
- !
- binding: aScopeVar
- binding := aScopeVar
- !
- identifier
- ^ identifier
- !
- identifier: anObject
- identifier := anObject
- !
- navigationLink
- ^ self identifier
- !
- value
- self deprecatedAPI: 'Use #identifier instead.'.
- ^ self identifier
- !
- value: anObject
- self deprecatedAPI: 'Use #identifier: instead.'.
- self identifier: anObject
- ! !
- !VariableNode methodsFor: 'testing'!
- isAssignable
- ^ self binding isAssignable
- !
- isIdempotent
- ^ self binding isIdempotent
- !
- isImmutable
- self deprecatedAPI: 'Use #isIdempotent / #isAssignable not instead.'.
- ^ self isIdempotent "to be consistent with super"
- !
- isNavigationNode
- ^ true
- !
- isSuper
- ^ self binding isSuper
- ! !
- !VariableNode methodsFor: 'visiting'!
- acceptDagVisitor: aVisitor
- ^ aVisitor visitVariableNode: self
- ! !
- ASTNode subclass: #JSStatementNode
- slots: {}
- package: 'Compiler-AST'!
- !JSStatementNode commentStamp!
- I represent an JavaScript statement node.!
- !JSStatementNode methodsFor: 'visiting'!
- acceptDagVisitor: aVisitor
- ^ aVisitor visitJSStatementNode: self
- ! !
- ASTNode subclass: #MethodNode
- slots: {#selector. #arguments. #pragmas. #scope. #classReferences. #sendIndexes. #sequenceNode}
- package: 'Compiler-AST'!
- !MethodNode commentStamp!
- I represent an method node.
- A method node must be the root and only method node of a valid AST.!
- !MethodNode methodsFor: 'accessing'!
- arguments
- ^ arguments ifNil: [ #() ]
- !
- arguments: aCollection
- arguments := aCollection
- !
- classReferences
- ^ classReferences
- !
- classReferences: aCollection
- classReferences := aCollection
- !
- dagChild
- ^ self sequenceNode
- !
- messageSends
- ^ self sendIndexes keys
- !
- method
- ^ self
- !
- pragmas
- ^ pragmas ifNil: [ #() ]
- !
- pragmas: aCollection
- pragmas := aCollection
- !
- scope
- ^ scope
- !
- scope: aMethodScope
- scope := aMethodScope
- !
- selector
- ^ selector
- !
- selector: aString
- selector := aString
- !
- sendIndexes
- ^ sendIndexes
- !
- sendIndexes: aDictionary
- sendIndexes := aDictionary
- !
- sequenceNode
- ^ sequenceNode
- !
- sequenceNode: aSequenceNode
- sequenceNode := aSequenceNode
- ! !
- !MethodNode methodsFor: 'visiting'!
- acceptDagVisitor: aVisitor
- ^ aVisitor visitMethodNode: self
- ! !
- ASTNode subclass: #ReturnNode
- slots: {#scope. #expression}
- package: 'Compiler-AST'!
- !ReturnNode commentStamp!
- I represent an return node. At the AST level, there is not difference between a local return or non-local return.!
- !ReturnNode methodsFor: 'accessing'!
- dagChild
- ^ self expression
- !
- expression
- ^ expression ifNil: [ nodes first ]
- !
- expression: anObject
- expression := anObject
- !
- scope
- ^ scope
- !
- scope: aLexicalScope
- scope := aLexicalScope
- ! !
- !ReturnNode methodsFor: 'testing'!
- isReturnNode
- ^ true
- !
- nonLocalReturn
- ^ self scope isMethodScope not
- ! !
- !ReturnNode methodsFor: 'visiting'!
- acceptDagVisitor: aVisitor
- ^ aVisitor visitReturnNode: self
- ! !
- ASTNode subclass: #SequenceNode
- slots: {#temps}
- package: 'Compiler-AST'!
- !SequenceNode commentStamp!
- I represent an sequence node. A sequence represent a set of instructions inside the same scope (the method scope or a block scope).!
- !SequenceNode methodsFor: 'accessing'!
- temps
- ^ temps ifNil: [ #() ]
- !
- temps: aCollection
- temps := aCollection
- ! !
- !SequenceNode methodsFor: 'visiting'!
- acceptDagVisitor: aVisitor
- ^ aVisitor visitSequenceNode: self
- ! !
- SequenceNode subclass: #BlockSequenceNode
- slots: {}
- package: 'Compiler-AST'!
- !BlockSequenceNode commentStamp!
- I represent an special sequence node for block scopes.!
- !BlockSequenceNode methodsFor: 'visiting'!
- acceptDagVisitor: aVisitor
- ^ aVisitor visitBlockSequenceNode: self
- ! !
- Object subclass: #AstPragmator
- slots: {#methodNode}
- package: 'Compiler-AST'!
- !AstPragmator commentStamp!
- I am abstract superclass for pragma-processing transformer.
- My subclasses should implement messages for each pragma
- they process. Pragma processing checks if a message is known
- to a class but not to its superclass. IOW, each and only those
- pragmas are processed which are defined as methods in the subclass.
- These messages can access sequence node in which
- a pragma occurred and its containing method node
- as `self sequenceNode` and `self methodNode`.
- See `EarlyPragmator` for an example.!
- !AstPragmator methodsFor: 'accessing'!
- methodNode
- ^ methodNode
- !
- methodNode: anObject
- methodNode := anObject
- ! !
- !AstPragmator methodsFor: 'visiting'!
- value: aMethodNode
- self methodNode: aMethodNode.
- self processPragmas: aMethodNode pragmas.
- ^ aMethodNode
- ! !
- AstPragmator subclass: #AstSemanticPragmator
- slots: {}
- package: 'Compiler-AST'!
- !AstSemanticPragmator methodsFor: 'pragmas'!
- inlineJS: aString
- self methodNode sequenceNode dagChildren ifNotEmpty: [
- CompilerError signal: 'There must be no other code or code generator pragma than a lone inlineJS:' ].
- self methodNode sequenceNode addDagChild: (
- JSStatementNode new
- source: aString;
- yourself)
- ! !
- Error subclass: #CompilerError
- slots: {}
- package: 'Compiler-AST'!
- !CompilerError commentStamp!
- I am the common superclass of all compiling errors.!
- PathDagVisitor subclass: #ParentFakingPathDagVisitor
- slots: {#setParentSelector}
- package: 'Compiler-AST'!
- !ParentFakingPathDagVisitor commentStamp!
- I am base class of `DagNode` visitor.
- I hold the path of ancestors up to actual node
- in `self path`.!
- !ParentFakingPathDagVisitor methodsFor: 'visiting'!
- visit: aNode
- self path ifNotEmpty: [ :p | aNode parent: p last ].
- ^ super visit: aNode
- ! !
- ParentFakingPathDagVisitor subclass: #NodeVisitor
- slots: {}
- package: 'Compiler-AST'!
- !NodeVisitor commentStamp!
- I am the abstract super class of all AST node visitors.!
- !NodeVisitor methodsFor: 'visiting'!
- visitAssignmentNode: aNode
- ^ self visitDagNode: aNode
- !
- visitBlockNode: aNode
- ^ self visitDagNode: aNode
- !
- visitBlockSequenceNode: aNode
- ^ self visitSequenceNode: aNode
- !
- visitCascadeNode: aNode
- ^ self visitDagNode: aNode
- !
- visitDagNode: aNode
- ^ self visitDagNodeVariantSimple: aNode
- !
- visitDynamicArrayNode: aNode
- ^ self visitDagNode: aNode
- !
- visitDynamicDictionaryNode: aNode
- ^ self visitDagNode: aNode
- !
- visitJSStatementNode: aNode
- ^ self visitDagNode: aNode
- !
- visitMethodNode: aNode
- ^ self visitDagNode: aNode
- !
- visitReturnNode: aNode
- ^ self visitDagNode: aNode
- !
- visitSendNode: aNode
- ^ self visitDagNode: aNode
- !
- visitSequenceNode: aNode
- ^ self visitDagNode: aNode
- !
- visitValueNode: aNode
- ^ self visitDagNode: aNode
- !
- visitVariableNode: aNode
- ^ self visitDagNode: aNode
- ! !
- AssignmentNode setTraitComposition: {TDerivedDagChildren} asTraitComposition!
- BlockNode setTraitComposition: {TSingleDagChild} asTraitComposition!
- SendNode setTraitComposition: {TDerivedDagChildren} asTraitComposition!
- ValueNode setTraitComposition: {TDagSink} asTraitComposition!
- VariableNode setTraitComposition: {TDagSink} asTraitComposition!
- JSStatementNode setTraitComposition: {TDagSink} asTraitComposition!
- MethodNode setTraitComposition: {TSingleDagChild} asTraitComposition!
- ReturnNode setTraitComposition: {TSingleDagChild} asTraitComposition!
- AstPragmator setTraitComposition: {TPragmator} asTraitComposition!
- ! !
- !CompiledMethod methodsFor: '*Compiler-AST'!
- ast
- self source ifEmpty: [ CompilerError signal: 'Method source is empty' ].
-
- ^ Compiler new
- ast: self source
- forClass: self origin
- protocol: self protocol
- ! !
|