123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432 |
- Smalltalk createPackage: 'Compiler-Core'!
- (Smalltalk packageAt: 'Compiler-Core' ifAbsent: [ self error: 'Package not created: Compiler-Core' ]) imports: {'smalltalkParser' -> 'amber/parser'}!
- Object subclass: #AbstractCodeGenerator
- slots: {#currentClass. #currentPackage. #source}
- package: 'Compiler-Core'!
- !AbstractCodeGenerator commentStamp!
- I am the abstract super class of all code generators and provide their common API.!
- !AbstractCodeGenerator methodsFor: 'accessing'!
- currentClass
- ^ currentClass
- !
- currentClass: aClass
- currentClass := aClass
- !
- currentPackage
- ^ currentPackage
- !
- currentPackage: anObject
- currentPackage := anObject
- !
- pseudoVariables
- ^ Smalltalk pseudoVariableNames
- !
- source
- ^ source ifNil: [ '' ]
- !
- source: aString
- source := aString
- ! !
- !AbstractCodeGenerator methodsFor: 'compiling'!
- compileNode: aNode
- ^ self transformers
- inject: aNode
- into: [ :input :transformer | transformer value: input ]
- !
- transformers
- | dict |
- dict := self transformersDictionary.
- ^ dict keys asArray sort collect: [ :each | dict at: each ]
- !
- transformersDictionary
- self subclassResponsibility
- ! !
- AbstractCodeGenerator subclass: #AstGenerator
- slots: {#transformersDictionary}
- package: 'Compiler-Core'!
- !AstGenerator commentStamp!
- I am a very basic code generator.
- I generate semantically augmented abstract syntax tree,
- Some initial pragmas (eg. #inlineJS:) are applied to transform the tree.!
- !AstGenerator methodsFor: 'compiling'!
- semanticAnalyzer
- ^ (SemanticAnalyzer on: self currentClass)
- thePackage: self currentPackage;
- yourself
- !
- semanticAstPragmator
- ^ AstSemanticPragmator new
- !
- transformersDictionary
- ^ transformersDictionary ifNil: [ transformersDictionary := Dictionary new
- at: '2000-semantic' put: self semanticAnalyzer;
- at: '2500-semanticPragmas' put: self semanticAstPragmator;
- yourself ]
- ! !
- AstGenerator subclass: #CodeGenerator
- slots: {}
- package: 'Compiler-Core'!
- !CodeGenerator commentStamp!
- I am a basic code generator. I generate a valid JavaScript output, but do not perform any inlining.
- See `InliningCodeGenerator` for an optimized JavaScript code generation.!
- !CodeGenerator methodsFor: 'compiling'!
- irTranslator
- ^ self irTranslatorClass new
- currentClass: self currentClass;
- yourself
- !
- irTranslatorClass
- ^ IRJSTranslator
- !
- lateIRPragmator
- ^ IRLatePragmator new
- !
- transformersDictionary
- ^ transformersDictionary ifNil: [ transformersDictionary := super transformersDictionary
- at: '5000-astToIr' put: self translator;
- at: '7000-irLatePragmas' put: self lateIRPragmator;
- at: '8000-irToJs' put: self irTranslator;
- yourself ]
- !
- translator
- ^ IRASTTranslator new
- source: self source;
- theClass: self currentClass;
- yourself
- ! !
- Object subclass: #Compiler
- slots: {#currentPackage. #codeGeneratorClass. #codeGenerator}
- package: 'Compiler-Core'!
- !Compiler commentStamp!
- I provide the public interface for compiling Amber source code into JavaScript.
- The code generator used to produce JavaScript can be plugged with `#codeGeneratorClass`.
- The default code generator is an instance of `InlinedCodeGenerator`!
- !Compiler methodsFor: 'accessing'!
- cleanCodeGenerator
- codeGenerator := nil
- !
- codeGenerator
- ^ codeGenerator
- !
- codeGenerator: anObject
- codeGenerator := anObject
- !
- codeGeneratorClass
- ^ codeGeneratorClass ifNil: [ InliningCodeGenerator ]
- !
- codeGeneratorClass: aClass
- codeGeneratorClass := aClass
- !
- currentPackage
- ^ currentPackage
- !
- currentPackage: anObject
- currentPackage := anObject
- ! !
- !Compiler methodsFor: 'compiling'!
- ast: aString forClass: aClass protocol: anotherString
- ^ self
- codeGeneratorClass: AstGenerator;
- start: aString forClass: aClass protocol: anotherString;
- compileNode: (self parse: aString)
- !
- compile: aString forClass: aClass protocol: anotherString
- | sanitizedSource compilationResult result pragmas closureFactory |
- sanitizedSource := aString crlfSanitized.
- compilationResult := self
- start: sanitizedSource forClass: aClass protocol: anotherString;
- compileNode: (self parse: sanitizedSource).
- closureFactory := self
- eval: (self wrappedSourceOf: compilationResult)
- forPackage: self currentPackage.
- result := Smalltalk core method: #{
- #selector -> compilationResult selector.
- #protocol -> anotherString.
- #source -> sanitizedSource.
- #messageSends -> compilationResult messageSends asArray.
- #args -> compilationResult arguments.
- #referencedClasses -> compilationResult classReferences asArray.
- } withFactory: closureFactory.
- result pragmas: compilationResult pragmas.
- ^ result
- !
- compileNode: aNode
- | result |
- result := self codeGenerator compileNode: aNode.
- self cleanCodeGenerator.
- ^ result
- !
- eval: aString
- <inlineJS: 'return eval(aString)'>
- !
- eval: aString forPackage: aPackage
- ^ aPackage
- ifNil: [ self eval: aString ]
- ifNotNil: [ aPackage eval: aString ]
- !
- evaluateExpression: aString
- "Unlike #eval: evaluate a Smalltalk expression and answer the returned object"
- ^ self evaluateExpression: aString on: DoIt new
- !
- evaluateExpression: aString on: anObject
- "Unlike #eval: evaluate a Smalltalk expression with anObject as the receiver and answer the returned object"
- | result method |
- method := self
- install: (self sourceForExpression: aString)
- forClass: anObject class
- protocol: '**xxxDoIt'.
- result := anObject xxxDoIt.
- anObject class removeCompiledMethod: method.
- ^ result
- !
- install: aString forClass: aBehavior protocol: anotherString
- | compiledMethod |
- compiledMethod := self compile: aString forClass: aBehavior protocol: anotherString.
- aBehavior addCompiledMethod: compiledMethod.
- ^ compiledMethod
- !
- parse: aString
- | result |
-
- [ result := self basicParse: aString ]
- tryIfTrue: [ :err | (err basicAt: 'location') notNil ]
- catch: [ :ex | (self parseError: ex parsing: aString) signal ].
-
- ^ result
- !
- parseExpression: aString
- ^ self parse: (self sourceForExpression: aString)
- !
- recompile: aClass
- aClass includingPossibleMetaDo: [ :eachSide |
- eachSide methodDictionary values
- do: [ :each | each origin = eachSide ifTrue: [
- self
- install: each source
- forClass: eachSide
- protocol: each protocol ] ]
- displayingProgress: 'Recompiling ', eachSide name ]
- !
- recompileAll
- Smalltalk classes
- do: [ :each | self recompile: each ]
- displayingProgress: 'Compiling all classes...'
- !
- sourceForExpression: aString
- ^ 'xxxDoIt ^ [ ', aString, ' ] value'
- !
- start: aString forClass: aClass protocol: anotherString
- | package |
- package := aClass packageOfProtocol: anotherString.
- self
- currentPackage: package;
- codeGenerator: (self codeGeneratorClass new
- source: aString;
- currentClass: aClass;
- currentPackage: package;
- yourself)
- !
- transformerAt: aString put: anObject
- self codeGenerator transformersDictionary at: aString put: anObject
- ! !
- !Compiler methodsFor: 'error handling'!
- error: aString
- CompilerError signal: aString
- !
- parseError: anException parsing: aString
- | loc |
- loc := anException basicAt: 'location'.
- ^ ParseError messageText:
- 'Parse error on line ', loc start line asString,
- ' column ' , loc start column asString,
- ' : Unexpected character ', (anException basicAt: 'found')
- ! !
- !Compiler methodsFor: 'private'!
- basicParse: aString
- ^ smalltalkParser parse: aString
- !
- wrappedSourceOf: anIRMethod
- ^ anIRMethod attachments
- ifEmpty: [
- '(function ($methodClass){ return ',
- anIRMethod compiledSource,
- '; })' ]
- ifNotEmpty: [ :attachments |
- '(function ($methodClass){ return Object.defineProperty(',
- anIRMethod compiledSource,
- ',"a$atx",{enumerable:false,configurable:true,writable:true,value:',
- attachments asJavaScriptSource,
- '}); })' ]
- ! !
- !Compiler class methodsFor: 'compiling'!
- recompile: aClass
- self new recompile: aClass
- !
- recompileAll
- Smalltalk classes do: [ :each |
- self recompile: each ]
- ! !
- !Compiler class methodsFor: 'evaluating'!
- eval: aString
- ^ self new eval: aString
- ! !
- !Compiler class methodsFor: 'initialization'!
- initialize
- "TODO remove, backward compat"
- Smalltalk globals at: #SmalltalkParser put: smalltalkParser
- ! !
- !Compiler class methodsFor: 'parsing'!
- parse: aString
- ^ self new parse: aString
- !
- pseudoVariableNames
- ^ PseudoVar dictionary keys asArray
- ! !
- Object subclass: #DoIt
- slots: {}
- package: 'Compiler-Core'!
- !DoIt commentStamp!
- `DoIt` is the class used to compile and evaluate expressions. See `Compiler >> evaluateExpression:`.!
- Object subclass: #Evaluator
- slots: {}
- package: 'Compiler-Core'!
- !Evaluator commentStamp!
- I evaluate code against a receiver, dispatching #evaluate:on: to the receiver.!
- !Evaluator methodsFor: 'evaluating'!
- evaluate: aString for: anObject
- ^ anObject evaluate: aString on: self
- !
- evaluate: aString receiver: anObject
- | compiler |
-
- compiler := Compiler new.
- [ compiler parseExpression: aString ]
- on: Error
- do: [ :ex | ^ Terminal alert: ex messageText ].
- ^ compiler evaluateExpression: aString on: anObject
- ! !
- !Evaluator class methodsFor: 'instance creation'!
- evaluate: aString for: anObject
- ^ self new evaluate: aString for: anObject
- ! !
- Error subclass: #ParseError
- slots: {}
- package: 'Compiler-Core'!
- !ParseError commentStamp!
- Instance of ParseError are signaled on any parsing error.
- See `Compiler >> #parse:`!
- Trait named: #TPragmator
- package: 'Compiler-Core'!
- !TPragmator methodsFor: 'pragma processing'!
- canProcessPragma: aMessage
- ^ self class includesSelector: aMessage selector
- !
- processPragma: aMessage
- (self canProcessPragma: aMessage) ifTrue: [
- ^ aMessage sendTo: self ]
- !
- processPragmas: aCollection
- aCollection do: [ :each | self processPragma: each ]
- ! !
- !Package methodsFor: '*Compiler-Core'!
- eval: aString
- ^ self context
- ifEmpty: [ Compiler eval: aString ]
- ifNotEmpty: [ :context |
- | wrapperSource |
- wrapperSource :=
- '(function(', (',' join: context keys), '){return(', aString, ');})'.
- (Compiler eval: wrapperSource)
- valueWithPossibleArguments: context values ]
- ! !
- !String methodsFor: '*Compiler-Core'!
- asVariableName
- ^ (Smalltalk reservedWords includes: self)
- ifTrue: [ self, '_' ]
- ifFalse: [ self ]
- ! !
|