| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341 | Object subclass: #ChunkParser	instanceVariableNames: 'stream'	category: 'Compiler'!!ChunkParser methodsFor: 'accessing'!stream: aStream	stream := aStream! !!ChunkParser methodsFor: 'reading'!nextChunk	"The chunk format (Smalltalk Interchange Format or Fileout format)	is a trivial format but can be a bit tricky to understand:		- Uses the exclamation mark as delimiter of chunks.		- Inside a chunk a normal exclamation mark must be doubled.		- A non empty chunk must be a valid Smalltalk expression.		- A chunk on top level with a preceding empty chunk is an instruction chunk:			- The object created by the expression then takes over reading chunks.	This metod returns next chunk as a String (trimmed), empty String (all whitespace) or nil."	| char result chunk |	result := '' writeStream.        [char := stream next.        char notNil] whileTrue: [                 char = '!!' ifTrue: [                         stream peek = '!!'                                ifTrue: [stream next "skipping the escape double"]                                ifFalse: [^result contents trimBoth  "chunk end marker found"]].                 result nextPut: char].	^nil "a chunk needs to end with !!"! !!ChunkParser class methodsFor: 'not yet classified'!on: aStream	^self new stream: aStream! !Object subclass: #Importer	instanceVariableNames: ''	category: 'Compiler'!!Importer methodsFor: 'fileIn'!import: aStream    | chunk result parser lastEmpty |    parser := ChunkParser on: aStream.    lastEmpty := false.    [chunk := parser nextChunk.     chunk isNil] whileFalse: [        chunk isEmpty       		ifTrue: [lastEmpty := true]       		ifFalse: [        		result := Compiler new loadExpression: chunk.        		lastEmpty             			ifTrue: [                                  	lastEmpty := false.                                  	result scanFrom: parser]]]! !Object subclass: #Exporter	instanceVariableNames: ''	category: 'Compiler'!!Exporter methodsFor: 'fileOut'!exportCategory: aString	| stream |	stream := '' writeStream.	(Smalltalk current classes 	    select: [:each | each category = aString])	    do: [:each | stream nextPutAll: (self export: each)].	self exportCategoryExtensions: aString on: stream.	^stream contents!export: aClass	| stream |	stream := '' writeStream.	self exportDefinitionOf: aClass on: stream.	self exportMethodsOf: aClass on: stream.	self exportMetaDefinitionOf: aClass on: stream.	self exportMethodsOf: aClass class on: stream.	^stream contents! !!Exporter methodsFor: 'private'!exportDefinitionOf: aClass on: aStream	aStream 	    nextPutAll: 'smalltalk.addClass(';	    nextPutAll: '''', (self classNameFor: aClass), ''', ';	    nextPutAll: 'smalltalk.', (self classNameFor: aClass superclass);	    nextPutAll: ', ['.	aClass instanceVariableNames 	    do: [:each | aStream nextPutAll: '''', each, '''']	    separatedBy: [aStream nextPutAll: ', '].	aStream		    nextPutAll: '], ''';	    nextPutAll: aClass category, '''';	    nextPutAll: ');'.	aClass comment notEmpty ifTrue: [	    aStream 	    	lf;		nextPutAll: 'smalltalk.';		nextPutAll: (self classNameFor: aClass);		nextPutAll: '.comment=';		nextPutAll: 'unescape(''', aClass comment escaped, ''')'].	aStream lf!exportMetaDefinitionOf: aClass on: aStream	aClass class instanceVariableNames isEmpty ifFalse: [	    aStream 		nextPutAll: 'smalltalk.', (self classNameFor: aClass class);		nextPutAll: '.iVarNames = ['.	    aClass class instanceVariableNames		do: [:each | aStream nextPutAll: '''', each, '''']		separatedBy: [aStream nextPutAll: ','].	    aStream nextPutAll: '];', String lf]!exportMethodsOf: aClass on: aStream	aClass methodDictionary values do: [:each |		(each category match: '^\*') ifFalse: [			self exportMethod: each of: aClass on: aStream]].	aStream lf!classNameFor: aClass	^aClass isMetaclass	    ifTrue: [aClass instanceClass name, '.klass']	    ifFalse: [		aClass isNil		    ifTrue: ['nil']		    ifFalse: [aClass name]]!exportMethod: aMethod of: aClass on: aStream	aStream 		nextPutAll: 'smalltalk.addMethod(';lf;		nextPutAll: '''', aMethod selector asSelector, ''',';lf;		nextPutAll: 'smalltalk.method({';lf;		nextPutAll: 'selector: ''', aMethod selector, ''',';lf;		nextPutAll: 'category: ''', aMethod category, ''',';lf;		nextPutAll: 'fn: ', aMethod fn compiledSource, ',';lf;		nextPutAll: 'source: unescape(''', aMethod source escaped, '''),';lf;		nextPutAll: 'messageSends: ', aMethod messageSends asJavascript, ',';lf;		nextPutAll: 'referencedClasses: ['.	    		aMethod referencedClasses 				do: [:each | aStream nextPutAll: 'smalltalk.', (self classNameFor: each)]				separatedBy: [aStream nextPutAll: ','].	aStream		nextPutAll: ']';lf;		nextPutAll: '}),';lf;		nextPutAll: 'smalltalk.', (self classNameFor: aClass);		nextPutAll: ');';lf;lf!exportCategoryExtensions: aString on: aStream	Smalltalk current classes, (Smalltalk current classes collect: [:each | each class]) do: [:each |		each methodDictionary values do: [:method |			method category = ('*', aString) ifTrue: [				self exportMethod: method of: each on: aStream]]]! !Exporter subclass: #ChunkExporter	instanceVariableNames: ''	category: 'Compiler'!!ChunkExporter methodsFor: 'not yet classified'!exportDefinitionOf: aClass on: aStream	"Chunk format."	aStream 	    nextPutAll: (self classNameFor: aClass superclass);	    nextPutAll: ' subclass: #', (self classNameFor: aClass); lf;	    nextPutAll: '	instanceVariableNames: '''.	aClass instanceVariableNames 	    do: [:each | aStream nextPutAll: each]	    separatedBy: [aStream nextPutAll: ' '].	aStream		    nextPutAll: ''''; lf;	    nextPutAll: '	category: ''', aClass category, '''!!'; lf. 	aClass comment notEmpty ifTrue: [	    aStream 		nextPutAll: '!!', (self classNameFor: aClass), ' commentStamp!!';lf;		nextPutAll: (self chunkEscape: aClass comment), '!!';lf].	aStream lf!exportMethod: aMethod of: aClass on: aStream	aStream 		lf; lf; nextPutAll: (self chunkEscape: aMethod source); lf;		nextPutAll: '!!'!exportMethodsOf: aClass on: aStream   aClass protocolsDo: [:category :methods |	(category match: '^\*') ifFalse: [ 		self			exportMethods: methods			category: category			of: aClass			on: aStream]]!exportMetaDefinitionOf: aClass on: aStream	aClass class instanceVariableNames isEmpty ifFalse: [		aStream 		    nextPutAll: (self classNameFor: aClass class);		    nextPutAll: ' instanceVariableNames: '''.		aClass class instanceVariableNames 		    do: [:each | aStream nextPutAll: each]		    separatedBy: [aStream nextPutAll: ' '].		aStream			    nextPutAll: '''!!'; lf; lf]!classNameFor: aClass	^aClass isMetaclass	    ifTrue: [aClass instanceClass name, ' class']	    ifFalse: [		aClass isNil		    ifTrue: ['nil']		    ifFalse: [aClass name]]!chunkEscape: aString	"Replace all occurrences of !! with !!!! and trim at both ends."	^(aString replace: '!!' with: '!!!!') trimBoth!exportCategoryExtensions: aString on: aStream	"We need to override this one too since we need to group	all methods in a given protocol under a leading methodsFor: chunk	for that class."	Smalltalk current classes, (Smalltalk current classes collect: [:each | each class]) do: [:each |		each protocolsDo: [:category :methods |			category = ('*', aString) ifTrue: [				self exportMethods: methods category: category of: each on: aStream]]]!exportMethods: methods category: category of: aClass on: aStream	aStream		nextPutAll: '!!', (self classNameFor: aClass);		nextPutAll: ' methodsFor: ''', category, '''!!'.    	methods do: [:each |		self exportMethod: each of: aClass on: aStream].	aStream nextPutAll: ' !!'; lf; lf! !Exporter subclass: #StrippedExporter	instanceVariableNames: ''	category: 'Compiler'!!StrippedExporter methodsFor: 'private'!exportDefinitionOf: aClass on: aStream	aStream 	    nextPutAll: 'smalltalk.addClass(';	    nextPutAll: '''', (self classNameFor: aClass), ''', ';	    nextPutAll: 'smalltalk.', (self classNameFor: aClass superclass);	    nextPutAll: ', ['.	aClass instanceVariableNames 	    do: [:each | aStream nextPutAll: '''', each, '''']	    separatedBy: [aStream nextPutAll: ', '].	aStream		    nextPutAll: '], ''';	    nextPutAll: aClass category, '''';	    nextPutAll: ');'.	aStream lf!exportMethod: aMethod of: aClass on: aStream	aStream 		nextPutAll: 'smalltalk.addMethod(';lf;		nextPutAll: '''', aMethod selector asSelector, ''',';lf;		nextPutAll: 'smalltalk.method({';lf;		nextPutAll: 'selector: ''', aMethod selector, ''',';lf;		nextPutAll: 'fn: ', aMethod fn compiledSource;lf;		nextPutAll: '}),';lf;		nextPutAll: 'smalltalk.', (self classNameFor: aClass);		nextPutAll: ');';lf;lf! !Object subclass: #Node	instanceVariableNames: 'nodes'	category: 'Compiler'!!Node methodsFor: 'accessing'!nodes	^nodes ifNil: [nodes := Array new]!addNode: aNode	self nodes add: aNode! !!Node methodsFor: 'building'!nodes: aCollection	nodes := aCollection! !!Node methodsFor: 'testing'!isValueNode	^false!isBlockNode	^false!isBlockSequenceNode	^false! !!Node methodsFor: 'visiting'!accept: aVisitor	aVisitor visitNode: self! !Node subclass: #MethodNode	instanceVariableNames: 'selector arguments source'	category: 'Compiler'!!MethodNode methodsFor: 'accessing'!selector	^selector!selector: aString	selector := aString!arguments	^arguments ifNil: [#()]!arguments: aCollection	arguments := aCollection!source	^source!source: aString	source := aString! !!MethodNode methodsFor: 'visiting'!accept: aVisitor	aVisitor visitMethodNode: self! !Node subclass: #SendNode	instanceVariableNames: 'selector arguments receiver'	category: 'Compiler'!!SendNode methodsFor: 'accessing'!selector	^selector!selector: aString	selector := aString!arguments	^arguments ifNil: [arguments := #()]!arguments: aCollection	arguments := aCollection!receiver	^receiver!receiver: aNode	receiver := aNode!valueForReceiver: anObject	^SendNode new	    receiver: (self receiver 		ifNil: [anObject]		ifNotNil: [self receiver valueForReceiver: anObject]);	    selector: self selector;	    arguments: self arguments;	    yourself!cascadeNodeWithMessages: aCollection	| first |	first := SendNode new	    selector: self selector;	    arguments: self arguments;	    yourself.	^CascadeNode new	    receiver: self receiver;	    nodes: (Array with: first), aCollection;	    yourself! !!SendNode methodsFor: 'visiting'!accept: aVisitor	aVisitor visitSendNode: self! !Node subclass: #CascadeNode	instanceVariableNames: 'receiver'	category: 'Compiler'!!CascadeNode methodsFor: 'accessing'!receiver	^receiver!receiver: aNode	receiver := aNode! !!CascadeNode methodsFor: 'visiting'!accept: aVisitor	aVisitor visitCascadeNode: self! !Node subclass: #AssignmentNode	instanceVariableNames: 'left right'	category: 'Compiler'!!AssignmentNode methodsFor: 'accessing'!left	^left!left: aNode	left := aNode.	left assigned: true!right	^right!right: aNode	right := aNode! !!AssignmentNode methodsFor: 'visiting'!accept: aVisitor	aVisitor visitAssignmentNode: self! !Node subclass: #BlockNode	instanceVariableNames: 'parameters inlined'	category: 'Compiler'!!BlockNode methodsFor: 'accessing'!parameters	^parameters ifNil: [parameters := Array new]!parameters: aCollection	parameters := aCollection!inlined	^inlined ifNil: [false]!inlined: aBoolean	inlined := aBoolean! !!BlockNode methodsFor: 'testing'!isBlockNode	^true! !!BlockNode methodsFor: 'visiting'!accept: aVisitor	aVisitor visitBlockNode: self! !Node subclass: #SequenceNode	instanceVariableNames: 'temps'	category: 'Compiler'!!SequenceNode methodsFor: 'accessing'!temps	^temps ifNil: [#()]!temps: aCollection	temps := aCollection! !!SequenceNode methodsFor: 'testing'!asBlockSequenceNode	^BlockSequenceNode new	    nodes: self nodes;	    temps: self temps;	    yourself! !!SequenceNode methodsFor: 'visiting'!accept: aVisitor	aVisitor visitSequenceNode: self! !SequenceNode subclass: #BlockSequenceNode	instanceVariableNames: ''	category: 'Compiler'!!BlockSequenceNode methodsFor: 'testing'!isBlockSequenceNode	^true! !!BlockSequenceNode methodsFor: 'visiting'!accept: aVisitor	aVisitor visitBlockSequenceNode: self! !Node subclass: #ReturnNode	instanceVariableNames: ''	category: 'Compiler'!!ReturnNode methodsFor: 'visiting'!accept: aVisitor	aVisitor visitReturnNode: self! !Node subclass: #ValueNode	instanceVariableNames: 'value'	category: 'Compiler'!!ValueNode methodsFor: 'accessing'!value	^value!value: anObject	value := anObject! !!ValueNode methodsFor: 'testing'!isValueNode	^true! !!ValueNode methodsFor: 'visiting'!accept: aVisitor	aVisitor visitValueNode: self! !ValueNode subclass: #VariableNode	instanceVariableNames: 'assigned'	category: 'Compiler'!!VariableNode methodsFor: 'accessing'!assigned	^assigned ifNil: [false]!assigned: aBoolean	assigned := aBoolean! !!VariableNode methodsFor: 'visiting'!accept: aVisitor	aVisitor visitVariableNode: self! !VariableNode subclass: #ClassReferenceNode	instanceVariableNames: ''	category: 'Compiler'!!ClassReferenceNode methodsFor: 'visiting'!accept: aVisitor	aVisitor visitClassReferenceNode: self! !Node subclass: #JSStatementNode	instanceVariableNames: 'source'	category: 'Compiler'!!JSStatementNode methodsFor: 'accessing'!source	^source ifNil: ['']!source: aString	source := aString! !!JSStatementNode methodsFor: 'visiting'!accept: aVisitor	aVisitor visitJSStatementNode: self! !Object subclass: #NodeVisitor	instanceVariableNames: ''	category: 'Compiler'!!NodeVisitor methodsFor: 'visiting'!visit: aNode	aNode accept: self!visitNode: aNode!visitMethodNode: aNode	self visitNode: aNode!visitSequenceNode: aNode	self visitNode: aNode!visitBlockSequenceNode: aNode	self visitSequenceNode: aNode!visitBlockNode: aNode	self visitNode: aNode!visitReturnNode: aNode	self visitNode: aNode!visitSendNode: aNode	self visitNode: aNode!visitCascadeNode: aNode	self visitNode: aNode!visitValueNode: aNode	self visitNode: aNode!visitVariableNode: aNode!visitAssignmentNode: aNode	self visitNode: aNode!visitClassReferenceNode: aNode	self 	    nextPutAll: 'smalltalk.';	    nextPutAll: aNode value!visitJSStatementNode: aNode	self 	    nextPutAll: 'function(){';	    nextPutAll: aNode source;	    nextPutAll: '})()'! !NodeVisitor subclass: #Compiler	instanceVariableNames: 'stream nestedBlocks earlyReturn currentClass currentSelector unknownVariables tempVariables messageSends referencedClasses classReferenced source'	category: 'Compiler'!!Compiler methodsFor: 'accessing'!parser	^SmalltalkParser new!currentClass	^currentClass!currentClass: aClass	currentClass := aClass!unknownVariables	^unknownVariables copy!pseudoVariables	^#('self' 'super' 'true' 'false' 'nil' 'thisContext')!tempVariables	^tempVariables copy!knownVariables	^self pseudoVariables 		addAll: self tempVariables;		yourself!classNameFor: aClass	^aClass isMetaclass	    ifTrue: [aClass instanceClass name, '.klass']	    ifFalse: [		aClass isNil		    ifTrue: ['nil']		    ifFalse: [aClass name]]!source	^source ifNil: ['']!source: aString	source := aString! !!Compiler methodsFor: 'compiling'!loadExpression: aString	| result |	DoIt addCompiledMethod: (self eval: (self compileExpression: aString)).	result := DoIt new doIt.	DoIt removeCompiledMethod: (DoIt methodDictionary at: #doIt).	^result!load: aString forClass: aClass	| compiled |	compiled := self eval: (self compile: aString forClass: aClass).	self setupClass: aClass.	^compiled!compile: aString forClass: aClass	self currentClass: aClass.	self source: aString.	^self compile: aString!compileExpression: aString	self currentClass: DoIt.	self source: 'doIt ^[', aString, '] value'.	^self compileNode: (self parse: self source)!eval: aString	<return eval(aString)>!compile: aString	^self compileNode: (self parse: aString)!compileNode: aNode	stream := '' writeStream.	self visit: aNode.	^stream contents!parse: aString    ^Smalltalk current parse: aString!parseExpression: aString    ^self parse: 'doIt ^[', aString, '] value'!recompile: aClass	aClass methodDictionary do: [:each || method |		method := self load: each source forClass: aClass.		method category: each category.		aClass addCompiledMethod: method].	aClass isMetaclass ifFalse: [self recompile: aClass class]!recompileAll	Smalltalk current classes do: [:each |		Transcript show: each; cr.		[self recompile: each] valueWithTimeout: 100]!setupClass: aClass	<smalltalk.init(aClass)>! !!Compiler methodsFor: 'initialization'!initialize	super initialize.	stream := '' writeStream. 	unknownVariables := #().	tempVariables := #().	messageSends := #().	classReferenced := #()! !!Compiler methodsFor: 'optimizations'!checkClass: aClassName for: receiver        stream nextPutAll: '(($receiver = ', receiver, ').klass === smalltalk.', aClassName, ') ? '!inlineLiteral: aSelector receiverNode: anObject argumentNodes: aCollection        | inlined |        inlined := false. 	"-- BlockClosures --"	(aSelector = 'whileTrue:') ifTrue: [          	(anObject isBlockNode and: [aCollection first isBlockNode]) ifTrue: [                	stream nextPutAll: '(function(){while('.                  	self visit: anObject.                  	stream nextPutAll: '()) {'.                	self visit: aCollection first.          		stream nextPutAll: '()}})()'.                	inlined := true]].	(aSelector = 'whileFalse:') ifTrue: [          	(anObject isBlockNode and: [aCollection first isBlockNode]) ifTrue: [                	stream nextPutAll: '(function(){while(!!'.                  	self visit: anObject.                  	stream nextPutAll: '()) {'.                	self visit: aCollection first.          		stream nextPutAll: '()}})()'.                	inlined := true]].	(aSelector = 'whileTrue') ifTrue: [          	anObject isBlockNode ifTrue: [                	stream nextPutAll: '(function(){while('.                  	self visit: anObject.                  	stream nextPutAll: '()) {}})()'.                	inlined := true]].	(aSelector = 'whileFalse') ifTrue: [          	anObject isBlockNode ifTrue: [                	stream nextPutAll: '(function(){while(!!'.                  	self visit: anObject.                  	stream nextPutAll: '()) {}})()'.                	inlined := true]].	"-- Numbers --"	(aSelector = '+') ifTrue: [          	(self isNode: anObject ofClass: Number) ifTrue: [                  	self visit: anObject.                  	stream nextPutAll: ' + '.                	self visit: aCollection first.                	inlined := true]].	(aSelector = '-') ifTrue: [          	(self isNode: anObject ofClass: Number) ifTrue: [                  	self visit: anObject.                  	stream nextPutAll: ' - '.                	self visit: aCollection first.                	inlined := true]].	(aSelector = '*') ifTrue: [          	(self isNode: anObject ofClass: Number) ifTrue: [                  	self visit: anObject.                  	stream nextPutAll: ' * '.                	self visit: aCollection first.                	inlined := true]].	(aSelector = '/') ifTrue: [          	(self isNode: anObject ofClass: Number) ifTrue: [                  	self visit: anObject.                  	stream nextPutAll: ' / '.                	self visit: aCollection first.                	inlined := true]].	(aSelector = '<') ifTrue: [          	(self isNode: anObject ofClass: Number) ifTrue: [                  	self visit: anObject.                  	stream nextPutAll: ' < '.                	self visit: aCollection first.                	inlined := true]].	(aSelector = '<=') ifTrue: [          	(self isNode: anObject ofClass: Number) ifTrue: [                  	self visit: anObject.                  	stream nextPutAll: ' <= '.                	self visit: aCollection first.                	inlined := true]].	(aSelector = '=') ifTrue: [          	(self isNode: anObject ofClass: Number) ifTrue: [                  	self visit: anObject.                  	stream nextPutAll: ' == '.                	self visit: aCollection first.                	inlined := true]].	(aSelector = '>') ifTrue: [          	(self isNode: anObject ofClass: Number) ifTrue: [                  	self visit: anObject.                  	stream nextPutAll: ' > '.                	self visit: aCollection first.                	inlined := true]].	(aSelector = '>=') ifTrue: [          	(self isNode: anObject ofClass: Number) ifTrue: [                  	self visit: anObject.                  	stream nextPutAll: ' >= '.                	self visit: aCollection first.                	inlined := true]].                	   	"-- UndefinedObject --"	(aSelector = 'ifNil:') ifTrue: [		aCollection first isBlockNode ifTrue: [          		stream nextPutAll: '(($receiver = '.          		self visit: anObject.          		stream nextPutAll: ') == nil || $receiver == undefined) ? '.                  	self visit: aCollection first.                  	stream nextPutAll: '() : $receiver'.                  	inlined := true]].	(aSelector = 'ifNotNil:') ifTrue: [		aCollection first isBlockNode ifTrue: [          		stream nextPutAll: '(($receiver = '.          		self visit: anObject.          		stream nextPutAll: ') !!= nil && $receiver !!= undefined) ? '.                  	self visit: aCollection first.                  	stream nextPutAll: '() : nil'.                  	inlined := true]].	(aSelector = 'ifNil:ifNotNil:') ifTrue: [		(aCollection first isBlockNode and: [aCollection second isBlockNode]) ifTrue: [          		stream nextPutAll: '(($receiver = '.          		self visit: anObject.          		stream nextPutAll: ') == nil || $receiver == undefined) ? '.                  	self visit: aCollection first.                  	stream nextPutAll: '() : '.                  	self visit: aCollection second.                  	stream nextPutAll: '()'.                  	inlined := true]].	(aSelector = 'ifNotNil:ifNil:') ifTrue: [		(aCollection first isBlockNode and: [aCollection second isBlockNode]) ifTrue: [          		stream nextPutAll: '(($receiver = '.          		self visit: anObject.          		stream nextPutAll: ') == nil || $receiver == undefined) ? '.                  	self visit: aCollection second.                  	stream nextPutAll: '() : '.                  	self visit: aCollection first.                  	stream nextPutAll: '()'.                  	inlined := true]].                         ^inlined!isNode: aNode ofClass: aClass	^aNode isValueNode and: [          	aNode value class = aClass or: [          		aNode value = 'self' and: [self currentClass = aClass]]]!inline: aSelector receiver: receiver argumentNodes: aCollection        | inlined |        inlined := false.	"-- Booleans --"	(aSelector = 'ifFalse:') ifTrue: [		aCollection first isBlockNode ifTrue: [                	self checkClass: 'Boolean' for: receiver.                	stream nextPutAll: '(!! $receiver ? '.                	self visit: aCollection first.          		stream nextPutAll: '() : nil)'.                	inlined := true]].	(aSelector = 'ifTrue:') ifTrue: [		aCollection first isBlockNode ifTrue: [                	self checkClass: 'Boolean' for: receiver.                	stream nextPutAll: '($receiver ? '.                	self visit: aCollection first.          		stream nextPutAll: '() : nil)'.                	inlined := true]].	(aSelector = 'ifTrue:ifFalse:') ifTrue: [		(aCollection first isBlockNode and: [aCollection second isBlockNode]) ifTrue: [                	self checkClass: 'Boolean' for: receiver.                	stream nextPutAll: '($receiver ? '.                	self visit: aCollection first.          		stream nextPutAll: '() : '.          		self visit: aCollection second.          		stream nextPutAll: '())'.                	inlined := true]].	(aSelector = 'ifFalse:ifTrue:') ifTrue: [		(aCollection first isBlockNode and: [aCollection second isBlockNode]) ifTrue: [                	self checkClass: 'Boolean' for: receiver.                	stream nextPutAll: '(!! $receiver ? '.                	self visit: aCollection first.          		stream nextPutAll: '() : '.          		self visit: aCollection second.          		stream nextPutAll: '())'.                	inlined := true]].	"-- Numbers --"	(aSelector = '<') ifTrue: [                self checkClass: 'Number' for: receiver.                stream nextPutAll: '$receiver <'.                self visit: aCollection first.                inlined := true].	(aSelector = '<=') ifTrue: [                self checkClass: 'Number' for: receiver.                stream nextPutAll: '$receiver <='.                self visit: aCollection first.                inlined := true].	(aSelector = '>') ifTrue: [                 self checkClass: 'Number' for: receiver.                stream nextPutAll: '$receiver >'.                self visit: aCollection first.                inlined := true].	(aSelector = '>=') ifTrue: [                self checkClass: 'Number' for: receiver.                stream nextPutAll: '$receiver >='.                self visit: aCollection first.                inlined := true].        (aSelector = '+') ifTrue: [                self checkClass: 'Number' for: receiver.                stream nextPutAll: '$receiver +'.                self visit: aCollection first.                inlined := true].        (aSelector = '-') ifTrue: [                self checkClass: 'Number' for: receiver.                stream nextPutAll: '$receiver -'.                self visit: aCollection first.                inlined := true].        (aSelector = '*') ifTrue: [                self checkClass: 'Number' for: receiver.                stream nextPutAll: '$receiver *'.                self visit: aCollection first.                inlined := true].        (aSelector = '/') ifTrue: [                self checkClass: 'Number' for: receiver.                stream nextPutAll: '$receiver /'.                self visit: aCollection first.                inlined := true].        ^inlined! !!Compiler methodsFor: 'testing'!performOptimizations	^self class performOptimizations! !!Compiler methodsFor: 'visiting'!visit: aNode	aNode accept: self!visitMethodNode: aNode	| str currentSelector |	currentSelector := aNode selector asSelector.	nestedBlocks := 0.	earlyReturn := false.	messageSends := #().	referencedClasses := #().	unknownVariables := #().	tempVariables := #().	stream 	    nextPutAll: 'smalltalk.method({'; lf;	    nextPutAll: 'selector: "', aNode selector, '",'; lf.	stream nextPutAll: 'source: unescape("', self source escaped, '"),';lf.	stream nextPutAll: 'fn: function('.	aNode arguments 	    do: [:each | 		tempVariables add: each.		stream nextPutAll: each]	    separatedBy: [stream nextPutAll: ', '].	stream 	    nextPutAll: '){'; lf;	    nextPutAll: 'var self=this;'; lf.	str := stream.	stream := '' writeStream.	aNode nodes do: [:each |	    self visit: each].	earlyReturn ifTrue: [	    str nextPutAll: 'try{'].	str nextPutAll: stream contents.	stream := str.	stream 	    lf; 	    nextPutAll: 'return self;'.	earlyReturn ifTrue: [	    stream lf; nextPutAll: '} catch(e) {if(e.name === ''stReturn'' && e.selector === ', currentSelector printString, '){return e.fn()} throw(e)}'].	stream nextPutAll: '}'.	stream 		nextPutAll: ',', String lf, 'messageSends: ';		nextPutAll: messageSends asJavascript, ','; lf;		nextPutAll: 'referencedClasses: ['.	referencedClasses 		do: [:each | stream nextPutAll: each]		separatedBy: [stream nextPutAll: ','].	stream nextPutAll: ']'.	stream nextPutAll: '})'!visitBlockNode: aNode	stream nextPutAll: '(function('.	aNode parameters 	    do: [:each |		tempVariables add: each.		stream nextPutAll: each]	    separatedBy: [stream nextPutAll: ', '].	stream nextPutAll: '){'.	aNode nodes do: [:each | self visit: each].	stream nextPutAll: '})'!visitSequenceNode: aNode	aNode temps do: [:each |	    tempVariables add: each.	    stream nextPutAll: 'var ', each, '=nil;'; lf].	aNode nodes do: [:each |	    self visit: each.	    stream nextPutAll: ';']	    separatedBy: [stream lf]!visitBlockSequenceNode: aNode	| index |	nestedBlocks := nestedBlocks + 1.	aNode nodes isEmpty	    ifTrue: [		stream nextPutAll: 'return nil;']	    ifFalse: [		aNode temps do: [:each |		    tempVariables add: each.		    stream nextPutAll: 'var ', each, '=nil;'; lf].		index := 0.		aNode nodes do: [:each |		    index := index + 1.		    index = aNode nodes size ifTrue: [			stream nextPutAll: 'return '].		    self visit: each.		    stream nextPutAll: ';']].	nestedBlocks := nestedBlocks - 1!visitReturnNode: aNode	nestedBlocks > 0 ifTrue: [	    earlyReturn := true].	earlyReturn	    ifTrue: [		stream		    nextPutAll: '(function(){throw(';		    nextPutAll: '{name: ''stReturn'', selector: ';		    nextPutAll: currentSelector printString;		    nextPutAll: ', fn: function(){return ']	    ifFalse: [stream nextPutAll: 'return '].	aNode nodes do: [:each |	    self visit: each].	earlyReturn ifTrue: [	    stream nextPutAll: '}})})()']!visitSendNode: aNode        | str receiver superSend inlined |        str := stream.        (messageSends includes: aNode selector) ifFalse: [                messageSends add: aNode selector].        stream := '' writeStream.        self visit: aNode receiver.        superSend := stream contents = 'super'.        receiver := superSend ifTrue: ['self'] ifFalse: [stream contents].        stream := str.		self performOptimizations 		ifTrue: [			(self inlineLiteral: aNode selector receiverNode: aNode receiver argumentNodes: aNode arguments) ifFalse: [				(self inline: aNode selector receiver: receiver argumentNodes: aNode arguments)                			ifTrue: [stream nextPutAll: ' : ', (self send: aNode selector to: '$receiver' arguments: aNode arguments superSend: superSend)]                			ifFalse: [stream nextPutAll: (self send: aNode selector to: receiver arguments: aNode arguments superSend: superSend)]]]		ifFalse: [stream nextPutAll: (self send: aNode selector to: receiver arguments: aNode arguments superSend: superSend)]!visitCascadeNode: aNode	| index |	index := 0.	(tempVariables includes: '$rec') ifFalse: [		tempVariables add: '$rec'].	stream nextPutAll: '(function($rec){'.	aNode nodes do: [:each |	    index := index + 1.	    index = aNode nodes size ifTrue: [		stream nextPutAll: 'return '].	    each receiver: (VariableNode new value: '$rec').	    self visit: each.	    stream nextPutAll: ';'].	stream nextPutAll: '})('.	self visit: aNode receiver.	stream nextPutAll: ')'!visitValueNode: aNode	stream nextPutAll: aNode value asJavascript!visitAssignmentNode: aNode	self visit: aNode left.	stream nextPutAll: '='.	self visit: aNode right!visitClassReferenceNode: aNode	| klass |	klass := '(smalltalk.', aNode value, ' || ', aNode value, ')'.	(Smalltalk current at: aNode value) isClass ifTrue: [		(referencedClasses includes: klass)			ifFalse: [referencedClasses add: klass]].	stream nextPutAll: klass!visitVariableNode: aNode	(self currentClass allInstanceVariableNames includes: aNode value) 		ifTrue: [stream nextPutAll: 'self[''@', aNode value, ''']']		ifFalse: [			(self knownVariables includes: aNode value)                   		ifFalse: [                                  	unknownVariables add: aNode value.                                  	aNode assigned                                   		ifTrue: [stream nextPutAll: aNode value]                                  		ifFalse: [stream nextPutAll: '(typeof ', aNode value, ' == ''undefined'' ? nil : ', aNode value, ')']]                  		ifTrue: [                			stream nextPutAll:aNode value]]!visitJSStatementNode: aNode	stream nextPutAll: (aNode source replace: '>>' with: '>')!visitFailure: aFailure	self error: aFailure asString!send: aSelector to: aReceiver arguments: aCollection superSend: aBoolean	^String streamContents: [:str || tmp |        	tmp := stream.		str nextPutAll: 'smalltalk.send('.		str nextPutAll: aReceiver.		str nextPutAll: ', "', aSelector asSelector, '", ['.                stream := str.		aCollection	    		do: [:each | self visit: each]	    		separatedBy: [stream nextPutAll: ', '].                stream := tmp.                str nextPutAll: ']'.		aBoolean ifTrue: [			str nextPutAll: ', smalltalk.', (self classNameFor: self currentClass superclass)].		str nextPutAll: ')']! !Compiler class instanceVariableNames: 'performOptimizations'!!Compiler class methodsFor: 'accessing'!performOptimizations	^performOptimizations ifNil: [true]!performOptimizations: aBoolean	performOptimizations := aBoolean! !!Compiler class methodsFor: 'compiling'!recompile: aClass	aClass methodDictionary do: [:each || method |		method := self new load: each source forClass: aClass.		method category: each category.		aClass addCompiledMethod: method].	aClass isMetaclass ifFalse: [self recompile: aClass class]!recompileAll	Smalltalk current classes do: [:each |		self recompile: each]! !Object subclass: #DoIt	instanceVariableNames: ''	category: 'Compiler'!
 |