1
0

Compiler-IR.st 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233
  1. Smalltalk current createPackage: 'Compiler-IR' properties: #{}!
  2. NodeVisitor subclass: #IRASTTranslator
  3. instanceVariableNames: 'source theClass method sequence nextAlias'
  4. package: 'Compiler-IR'!
  5. !IRASTTranslator commentStamp!
  6. I am the AST (abstract syntax tree) visitor responsible for building the intermediate representation graph.
  7. I rely on a builder object, instance of IRBuilder.!
  8. !IRASTTranslator methodsFor: 'accessing'!
  9. method
  10. ^ method
  11. !
  12. method: anIRMethod
  13. method := anIRMethod
  14. !
  15. nextAlias
  16. nextAlias ifNil: [ nextAlias := 0 ].
  17. nextAlias := nextAlias + 1.
  18. ^ nextAlias asString
  19. !
  20. sequence
  21. ^ sequence
  22. !
  23. sequence: anIRSequence
  24. sequence := anIRSequence
  25. !
  26. source
  27. ^ source
  28. !
  29. source: aString
  30. source := aString
  31. !
  32. theClass
  33. ^ theClass
  34. !
  35. theClass: aClass
  36. theClass := aClass
  37. !
  38. withSequence: aSequence do: aBlock
  39. | outerSequence |
  40. outerSequence := self sequence.
  41. self sequence: aSequence.
  42. aBlock value.
  43. self sequence: outerSequence.
  44. ^ aSequence
  45. ! !
  46. !IRASTTranslator methodsFor: 'visiting'!
  47. alias: aNode
  48. | variable |
  49. aNode isImmutable ifTrue: [ ^ self visit: aNode ].
  50. variable := IRVariable new
  51. variable: (AliasVar new name: '$', self nextAlias);
  52. yourself.
  53. self sequence add: (IRAssignment new
  54. add: variable;
  55. add: (self visit: aNode);
  56. yourself).
  57. self method internalVariables add: variable.
  58. ^ variable
  59. !
  60. aliasTemporally: aCollection
  61. "https://github.com/NicolasPetton/amber/issues/296
  62. If a node is aliased, all preceding ones are aliased as well.
  63. The tree is iterated twice. First we get the aliasing dependency,
  64. then the aliasing itself is done"
  65. | threshold result |
  66. threshold := 0.
  67. aCollection withIndexDo: [ :each :i |
  68. each subtreeNeedsAliasing
  69. ifTrue: [ threshold := i ]].
  70. result := OrderedCollection new.
  71. aCollection withIndexDo: [ :each :i |
  72. result add: (i <= threshold
  73. ifTrue: [ self alias: each ]
  74. ifFalse: [ self visit: each ])].
  75. ^result
  76. !
  77. visitAssignmentNode: aNode
  78. | left right assignment |
  79. right := self visit: aNode right.
  80. left := self visit: aNode left.
  81. self sequence add: (IRAssignment new
  82. add: left;
  83. add: right;
  84. yourself).
  85. ^ left
  86. !
  87. visitBlockNode: aNode
  88. | closure |
  89. closure := IRClosure new
  90. arguments: aNode parameters;
  91. scope: aNode scope;
  92. yourself.
  93. aNode scope temps do: [ :each |
  94. closure add: (IRTempDeclaration new
  95. name: each name;
  96. scope: aNode scope;
  97. yourself) ].
  98. aNode nodes do: [ :each | closure add: (self visit: each) ].
  99. ^ closure
  100. !
  101. visitBlockSequenceNode: aNode
  102. ^ self
  103. withSequence: IRBlockSequence new
  104. do: [
  105. aNode nodes ifNotEmpty: [
  106. aNode nodes allButLast do: [ :each |
  107. self sequence add: (self visit: each) ].
  108. aNode nodes last isReturnNode
  109. ifFalse: [ self sequence add: (IRBlockReturn new add: (self visit: aNode nodes last); yourself) ]
  110. ifTrue: [ self sequence add: (self visit: aNode nodes last) ]]]
  111. !
  112. visitCascadeNode: aNode
  113. | alias |
  114. aNode receiver isImmutable ifFalse: [
  115. alias := self alias: aNode receiver.
  116. aNode nodes do: [ :each |
  117. each receiver: (VariableNode new binding: alias variable) ]].
  118. aNode nodes allButLast do: [ :each |
  119. self sequence add: (self visit: each) ].
  120. ^ self alias: aNode nodes last
  121. !
  122. visitDynamicArrayNode: aNode
  123. | array |
  124. array := IRDynamicArray new.
  125. (self aliasTemporally: aNode nodes) do: [:each | array add: each].
  126. ^ array
  127. !
  128. visitDynamicDictionaryNode: aNode
  129. | dictionary |
  130. dictionary := IRDynamicDictionary new.
  131. (self aliasTemporally: aNode nodes) do: [:each | dictionary add: each].
  132. ^ dictionary
  133. !
  134. visitJSStatementNode: aNode
  135. ^ IRVerbatim new
  136. source: aNode source;
  137. yourself
  138. !
  139. visitMethodNode: aNode
  140. self method: (IRMethod new
  141. source: self source;
  142. theClass: self theClass;
  143. arguments: aNode arguments;
  144. selector: aNode selector;
  145. messageSends: aNode messageSends;
  146. superSends: aNode superSends;
  147. classReferences: aNode classReferences;
  148. scope: aNode scope;
  149. yourself).
  150. aNode scope temps do: [ :each |
  151. self method add: (IRTempDeclaration new
  152. name: each name;
  153. scope: aNode scope;
  154. yourself) ].
  155. aNode nodes do: [ :each | self method add: (self visit: each) ].
  156. aNode scope hasLocalReturn ifFalse: [
  157. (self method add: IRReturn new) add: (IRVariable new
  158. variable: (aNode scope pseudoVars at: 'self');
  159. yourself) ].
  160. ^ self method
  161. !
  162. visitReturnNode: aNode
  163. | return |
  164. return := aNode nonLocalReturn
  165. ifTrue: [ IRNonLocalReturn new ]
  166. ifFalse: [ IRReturn new ].
  167. return scope: aNode scope.
  168. aNode nodes do: [ :each |
  169. return add: (self alias: each) ].
  170. ^ return
  171. !
  172. visitSendNode: aNode
  173. | send all receiver arguments |
  174. send := IRSend new.
  175. send
  176. selector: aNode selector;
  177. index: aNode index.
  178. aNode superSend ifTrue: [ send classSend: self theClass superclass ].
  179. all := self aliasTemporally: { aNode receiver }, aNode arguments.
  180. receiver := all first.
  181. arguments := all allButFirst.
  182. send add: receiver.
  183. arguments do: [ :each | send add: each ].
  184. ^ send
  185. !
  186. visitSequenceNode: aNode
  187. ^ self
  188. withSequence: IRSequence new
  189. do: [
  190. aNode nodes do: [ :each | | instruction |
  191. instruction := self visit: each.
  192. instruction isVariable ifFalse: [
  193. self sequence add: instruction ]]]
  194. !
  195. visitValueNode: aNode
  196. ^ IRValue new
  197. value: aNode value;
  198. yourself
  199. !
  200. visitVariableNode: aNode
  201. ^ IRVariable new
  202. variable: aNode binding;
  203. yourself
  204. ! !
  205. Object subclass: #IRInstruction
  206. instanceVariableNames: 'parent instructions'
  207. package: 'Compiler-IR'!
  208. !IRInstruction commentStamp!
  209. I am the abstract root class of the IR (intermediate representation) instructions class hierarchy.
  210. The IR graph is used to emit JavaScript code using a JSStream.!
  211. !IRInstruction methodsFor: 'accessing'!
  212. instructions
  213. ^ instructions ifNil: [ instructions := OrderedCollection new ]
  214. !
  215. method
  216. ^ self parent method
  217. !
  218. parent
  219. ^ parent
  220. !
  221. parent: anIRInstruction
  222. parent := anIRInstruction
  223. ! !
  224. !IRInstruction methodsFor: 'building'!
  225. add: anObject
  226. anObject parent: self.
  227. ^ self instructions add: anObject
  228. !
  229. remove
  230. self parent remove: self
  231. !
  232. remove: anIRInstruction
  233. self instructions remove: anIRInstruction
  234. !
  235. replace: anIRInstruction with: anotherIRInstruction
  236. anotherIRInstruction parent: self.
  237. self instructions
  238. at: (self instructions indexOf: anIRInstruction)
  239. put: anotherIRInstruction
  240. !
  241. replaceWith: anIRInstruction
  242. self parent replace: self with: anIRInstruction
  243. ! !
  244. !IRInstruction methodsFor: 'testing'!
  245. canBeAssigned
  246. ^ true
  247. !
  248. isClosure
  249. ^ false
  250. !
  251. isInlined
  252. ^ false
  253. !
  254. isLocalReturn
  255. ^ false
  256. !
  257. isMethod
  258. ^ false
  259. !
  260. isReturn
  261. ^ false
  262. !
  263. isSend
  264. ^ false
  265. !
  266. isSequence
  267. ^ false
  268. !
  269. isTempDeclaration
  270. ^ false
  271. !
  272. isVariable
  273. ^ false
  274. ! !
  275. !IRInstruction methodsFor: 'visiting'!
  276. accept: aVisitor
  277. ^ aVisitor visitIRInstruction: self
  278. ! !
  279. !IRInstruction class methodsFor: 'instance creation'!
  280. on: aBuilder
  281. ^ self new
  282. builder: aBuilder;
  283. yourself
  284. ! !
  285. IRInstruction subclass: #IRAssignment
  286. instanceVariableNames: ''
  287. package: 'Compiler-IR'!
  288. !IRAssignment methodsFor: 'visiting'!
  289. accept: aVisitor
  290. ^ aVisitor visitIRAssignment: self
  291. ! !
  292. IRInstruction subclass: #IRDynamicArray
  293. instanceVariableNames: ''
  294. package: 'Compiler-IR'!
  295. !IRDynamicArray methodsFor: 'visiting'!
  296. accept: aVisitor
  297. ^ aVisitor visitIRDynamicArray: self
  298. ! !
  299. IRInstruction subclass: #IRDynamicDictionary
  300. instanceVariableNames: ''
  301. package: 'Compiler-IR'!
  302. !IRDynamicDictionary methodsFor: 'visiting'!
  303. accept: aVisitor
  304. ^ aVisitor visitIRDynamicDictionary: self
  305. ! !
  306. IRInstruction subclass: #IRScopedInstruction
  307. instanceVariableNames: 'scope'
  308. package: 'Compiler-IR'!
  309. !IRScopedInstruction methodsFor: 'accessing'!
  310. scope
  311. ^ scope
  312. !
  313. scope: aScope
  314. scope := aScope
  315. ! !
  316. IRScopedInstruction subclass: #IRClosure
  317. instanceVariableNames: 'arguments'
  318. package: 'Compiler-IR'!
  319. !IRClosure methodsFor: 'accessing'!
  320. arguments
  321. ^ arguments ifNil: [ #() ]
  322. !
  323. arguments: aCollection
  324. arguments := aCollection
  325. !
  326. locals
  327. ^ self arguments copy
  328. addAll: (self tempDeclarations collect: [ :each | each name ]);
  329. yourself
  330. !
  331. scope: aScope
  332. super scope: aScope.
  333. aScope instruction: self
  334. !
  335. sequence
  336. ^ self instructions last
  337. !
  338. tempDeclarations
  339. ^ self instructions select: [ :each |
  340. each isTempDeclaration ]
  341. ! !
  342. !IRClosure methodsFor: 'testing'!
  343. isClosure
  344. ^ true
  345. ! !
  346. !IRClosure methodsFor: 'visiting'!
  347. accept: aVisitor
  348. ^ aVisitor visitIRClosure: self
  349. ! !
  350. IRScopedInstruction subclass: #IRMethod
  351. instanceVariableNames: 'theClass source selector classReferences messageSends superSends arguments internalVariables'
  352. package: 'Compiler-IR'!
  353. !IRMethod commentStamp!
  354. I am a method instruction!
  355. !IRMethod methodsFor: 'accessing'!
  356. arguments
  357. ^ arguments
  358. !
  359. arguments: aCollection
  360. arguments := aCollection
  361. !
  362. classReferences
  363. ^ classReferences
  364. !
  365. classReferences: aCollection
  366. classReferences := aCollection
  367. !
  368. internalVariables
  369. ^ internalVariables ifNil: [ internalVariables := Set new ]
  370. !
  371. isMethod
  372. ^ true
  373. !
  374. locals
  375. ^ self arguments copy
  376. addAll: (self tempDeclarations collect: [ :each | each name ]);
  377. yourself
  378. !
  379. messageSends
  380. ^ messageSends
  381. !
  382. messageSends: aCollection
  383. messageSends := aCollection
  384. !
  385. method
  386. ^ self
  387. !
  388. scope: aScope
  389. super scope: aScope.
  390. aScope instruction: self
  391. !
  392. selector
  393. ^ selector
  394. !
  395. selector: aString
  396. selector := aString
  397. !
  398. source
  399. ^ source
  400. !
  401. source: aString
  402. source := aString
  403. !
  404. superSends
  405. ^ superSends
  406. !
  407. superSends: aCollection
  408. superSends := aCollection
  409. !
  410. tempDeclarations
  411. ^ self instructions select: [ :each |
  412. each isTempDeclaration ]
  413. !
  414. theClass
  415. ^ theClass
  416. !
  417. theClass: aClass
  418. theClass := aClass
  419. ! !
  420. !IRMethod methodsFor: 'visiting'!
  421. accept: aVisitor
  422. ^ aVisitor visitIRMethod: self
  423. ! !
  424. IRScopedInstruction subclass: #IRReturn
  425. instanceVariableNames: ''
  426. package: 'Compiler-IR'!
  427. !IRReturn commentStamp!
  428. I am a local return instruction.!
  429. !IRReturn methodsFor: 'testing'!
  430. canBeAssigned
  431. ^ false
  432. !
  433. isBlockReturn
  434. ^ false
  435. !
  436. isLocalReturn
  437. ^ true
  438. !
  439. isNonLocalReturn
  440. ^ self isLocalReturn not
  441. !
  442. isReturn
  443. ^ true
  444. ! !
  445. !IRReturn methodsFor: 'visiting'!
  446. accept: aVisitor
  447. ^ aVisitor visitIRReturn: self
  448. ! !
  449. IRReturn subclass: #IRBlockReturn
  450. instanceVariableNames: ''
  451. package: 'Compiler-IR'!
  452. !IRBlockReturn commentStamp!
  453. Smalltalk blocks return their last statement. I am a implicit block return instruction.!
  454. !IRBlockReturn methodsFor: 'testing'!
  455. isBlockReturn
  456. ^ true
  457. ! !
  458. !IRBlockReturn methodsFor: 'visiting'!
  459. accept: aVisitor
  460. ^ aVisitor visitIRBlockReturn: self
  461. ! !
  462. IRReturn subclass: #IRNonLocalReturn
  463. instanceVariableNames: ''
  464. package: 'Compiler-IR'!
  465. !IRNonLocalReturn commentStamp!
  466. I am a non local return instruction.
  467. Non local returns are handled using a try/catch JS statement.
  468. See IRNonLocalReturnHandling class!
  469. !IRNonLocalReturn methodsFor: 'testing'!
  470. isLocalReturn
  471. ^ false
  472. ! !
  473. !IRNonLocalReturn methodsFor: 'visiting'!
  474. accept: aVisitor
  475. ^ aVisitor visitIRNonLocalReturn: self
  476. ! !
  477. IRScopedInstruction subclass: #IRTempDeclaration
  478. instanceVariableNames: 'name'
  479. package: 'Compiler-IR'!
  480. !IRTempDeclaration methodsFor: 'accessing'!
  481. name
  482. ^ name
  483. !
  484. name: aString
  485. name := aString
  486. ! !
  487. !IRTempDeclaration methodsFor: 'testing'!
  488. isTempDeclaration
  489. ^ true
  490. ! !
  491. !IRTempDeclaration methodsFor: 'visiting'!
  492. accept: aVisitor
  493. ^ aVisitor visitIRTempDeclaration: self
  494. ! !
  495. IRInstruction subclass: #IRSend
  496. instanceVariableNames: 'selector classSend index'
  497. package: 'Compiler-IR'!
  498. !IRSend commentStamp!
  499. I am a message send instruction.!
  500. !IRSend methodsFor: 'accessing'!
  501. classSend
  502. ^ classSend
  503. !
  504. classSend: aClass
  505. classSend := aClass
  506. !
  507. index
  508. ^ index
  509. !
  510. index: anInteger
  511. index := anInteger
  512. !
  513. javascriptSelector
  514. ^ self classSend
  515. ifNil: [ self selector asSelector ]
  516. ifNotNil: [ self selector asSuperSelector ]
  517. !
  518. selector
  519. ^ selector
  520. !
  521. selector: aString
  522. selector := aString
  523. ! !
  524. !IRSend methodsFor: 'testing'!
  525. isSend
  526. ^ true
  527. ! !
  528. !IRSend methodsFor: 'visiting'!
  529. accept: aVisitor
  530. ^ aVisitor visitIRSend: self
  531. ! !
  532. IRInstruction subclass: #IRSequence
  533. instanceVariableNames: ''
  534. package: 'Compiler-IR'!
  535. !IRSequence methodsFor: 'testing'!
  536. isSequence
  537. ^ true
  538. ! !
  539. !IRSequence methodsFor: 'visiting'!
  540. accept: aVisitor
  541. ^ aVisitor visitIRSequence: self
  542. ! !
  543. IRSequence subclass: #IRBlockSequence
  544. instanceVariableNames: ''
  545. package: 'Compiler-IR'!
  546. !IRBlockSequence methodsFor: 'visiting'!
  547. accept: aVisitor
  548. ^ aVisitor visitIRBlockSequence: self
  549. ! !
  550. IRInstruction subclass: #IRValue
  551. instanceVariableNames: 'value'
  552. package: 'Compiler-IR'!
  553. !IRValue commentStamp!
  554. I am the simplest possible instruction. I represent a value.!
  555. !IRValue methodsFor: 'accessing'!
  556. value
  557. ^value
  558. !
  559. value: aString
  560. value := aString
  561. ! !
  562. !IRValue methodsFor: 'visiting'!
  563. accept: aVisitor
  564. ^ aVisitor visitIRValue: self
  565. ! !
  566. IRInstruction subclass: #IRVariable
  567. instanceVariableNames: 'variable'
  568. package: 'Compiler-IR'!
  569. !IRVariable commentStamp!
  570. I am a variable instruction.!
  571. !IRVariable methodsFor: 'accessing'!
  572. variable
  573. ^ variable
  574. !
  575. variable: aScopeVariable
  576. variable := aScopeVariable
  577. ! !
  578. !IRVariable methodsFor: 'testing'!
  579. isVariable
  580. ^ true
  581. ! !
  582. !IRVariable methodsFor: 'visiting'!
  583. accept: aVisitor
  584. ^ aVisitor visitIRVariable: self
  585. ! !
  586. IRInstruction subclass: #IRVerbatim
  587. instanceVariableNames: 'source'
  588. package: 'Compiler-IR'!
  589. !IRVerbatim methodsFor: 'accessing'!
  590. source
  591. ^ source
  592. !
  593. source: aString
  594. source := aString
  595. ! !
  596. !IRVerbatim methodsFor: 'visiting'!
  597. accept: aVisitor
  598. ^ aVisitor visitIRVerbatim: self
  599. ! !
  600. Object subclass: #IRVisitor
  601. instanceVariableNames: ''
  602. package: 'Compiler-IR'!
  603. !IRVisitor methodsFor: 'visiting'!
  604. visit: anIRInstruction
  605. ^ anIRInstruction accept: self
  606. !
  607. visitIRAssignment: anIRAssignment
  608. ^ self visitIRInstruction: anIRAssignment
  609. !
  610. visitIRBlockReturn: anIRBlockReturn
  611. ^ self visitIRReturn: anIRBlockReturn
  612. !
  613. visitIRBlockSequence: anIRBlockSequence
  614. ^ self visitIRSequence: anIRBlockSequence
  615. !
  616. visitIRClosure: anIRClosure
  617. ^ self visitIRInstruction: anIRClosure
  618. !
  619. visitIRDynamicArray: anIRDynamicArray
  620. ^ self visitIRInstruction: anIRDynamicArray
  621. !
  622. visitIRDynamicDictionary: anIRDynamicDictionary
  623. ^ self visitIRInstruction: anIRDynamicDictionary
  624. !
  625. visitIRInlinedClosure: anIRInlinedClosure
  626. ^ self visitIRClosure: anIRInlinedClosure
  627. !
  628. visitIRInlinedSequence: anIRInlinedSequence
  629. ^ self visitIRSequence: anIRInlinedSequence
  630. !
  631. visitIRInstruction: anIRInstruction
  632. anIRInstruction instructions do: [ :each | self visit: each ].
  633. ^ anIRInstruction
  634. !
  635. visitIRMethod: anIRMethod
  636. ^ self visitIRInstruction: anIRMethod
  637. !
  638. visitIRNonLocalReturn: anIRNonLocalReturn
  639. ^ self visitIRInstruction: anIRNonLocalReturn
  640. !
  641. visitIRNonLocalReturnHandling: anIRNonLocalReturnHandling
  642. ^ self visitIRInstruction: anIRNonLocalReturnHandling
  643. !
  644. visitIRReturn: anIRReturn
  645. ^ self visitIRInstruction: anIRReturn
  646. !
  647. visitIRSend: anIRSend
  648. ^ self visitIRInstruction: anIRSend
  649. !
  650. visitIRSequence: anIRSequence
  651. ^ self visitIRInstruction: anIRSequence
  652. !
  653. visitIRTempDeclaration: anIRTempDeclaration
  654. ^ self visitIRInstruction: anIRTempDeclaration
  655. !
  656. visitIRValue: anIRValue
  657. ^ self visitIRInstruction: anIRValue
  658. !
  659. visitIRVariable: anIRVariable
  660. ^ self visitIRInstruction: anIRVariable
  661. !
  662. visitIRVerbatim: anIRVerbatim
  663. ^ self visitIRInstruction: anIRVerbatim
  664. ! !
  665. IRVisitor subclass: #IRJSTranslator
  666. instanceVariableNames: 'stream'
  667. package: 'Compiler-IR'!
  668. !IRJSTranslator methodsFor: 'accessing'!
  669. contents
  670. ^ self stream contents
  671. !
  672. stream
  673. ^ stream
  674. !
  675. stream: aStream
  676. stream := aStream
  677. ! !
  678. !IRJSTranslator methodsFor: 'initialization'!
  679. initialize
  680. super initialize.
  681. stream := JSStream new.
  682. ! !
  683. !IRJSTranslator methodsFor: 'visiting'!
  684. visitIRAssignment: anIRAssignment
  685. self visit: anIRAssignment instructions first.
  686. self stream nextPutAssignment.
  687. self visit: anIRAssignment instructions last.
  688. !
  689. visitIRClosure: anIRClosure
  690. self stream
  691. nextPutClosureWith: [
  692. self stream nextPutVars: (anIRClosure tempDeclarations collect: [ :each |
  693. each name asVariableName ]).
  694. self stream
  695. nextPutBlockContextFor: anIRClosure
  696. during: [ super visitIRClosure: anIRClosure ] ]
  697. arguments: anIRClosure arguments
  698. !
  699. visitIRDynamicArray: anIRDynamicArray
  700. self stream nextPutAll: '['.
  701. anIRDynamicArray instructions
  702. do: [ :each | self visit: each ]
  703. separatedBy: [ self stream nextPutAll: ',' ].
  704. stream nextPutAll: ']'
  705. !
  706. visitIRDynamicDictionary: anIRDynamicDictionary
  707. self stream nextPutAll: 'smalltalk.HashedCollection._fromPairs_(['.
  708. anIRDynamicDictionary instructions
  709. do: [ :each | self visit: each ]
  710. separatedBy: [self stream nextPutAll: ',' ].
  711. self stream nextPutAll: '])'
  712. !
  713. visitIRMethod: anIRMethod
  714. self stream
  715. nextPutMethodDeclaration: anIRMethod
  716. with: [ self stream
  717. nextPutFunctionWith: [
  718. self stream nextPutVars: (anIRMethod tempDeclarations collect: [ :each |
  719. each name asVariableName ]).
  720. self stream nextPutContextFor: anIRMethod during: [
  721. anIRMethod internalVariables notEmpty ifTrue: [
  722. self stream nextPutVars: (anIRMethod internalVariables asArray collect: [ :each |
  723. each variable alias ]) ].
  724. anIRMethod scope hasNonLocalReturn
  725. ifTrue: [
  726. self stream nextPutNonLocalReturnHandlingWith: [
  727. super visitIRMethod: anIRMethod ]]
  728. ifFalse: [ super visitIRMethod: anIRMethod ]]]
  729. arguments: anIRMethod arguments ]
  730. !
  731. visitIRNonLocalReturn: anIRNonLocalReturn
  732. self stream nextPutNonLocalReturnWith: [
  733. super visitIRNonLocalReturn: anIRNonLocalReturn ]
  734. !
  735. visitIRReturn: anIRReturn
  736. self stream nextPutReturnWith: [
  737. super visitIRReturn: anIRReturn ]
  738. !
  739. visitIRSend: anIRSend
  740. anIRSend classSend
  741. ifNil: [
  742. self stream nextPutAll: '_st('.
  743. self visit: anIRSend instructions first.
  744. self stream nextPutAll: ').', anIRSend selector asSelector, '('.
  745. anIRSend instructions allButFirst
  746. do: [ :each | self visit: each ]
  747. separatedBy: [ self stream nextPutAll: ',' ].
  748. self stream nextPutAll: ')' ]
  749. ifNotNil: [
  750. self stream
  751. nextPutAll: anIRSend classSend asJavascript, '.fn.prototype.';
  752. nextPutAll: anIRSend selector asSelector, '.apply(';
  753. nextPutAll: '_st('.
  754. self visit: anIRSend instructions first.
  755. self stream nextPutAll: '), ['.
  756. anIRSend instructions allButFirst
  757. do: [ :each | self visit: each ]
  758. separatedBy: [ self stream nextPutAll: ',' ].
  759. self stream nextPutAll: '])' ]
  760. !
  761. visitIRSequence: anIRSequence
  762. self stream nextPutSequenceWith: [
  763. anIRSequence instructions do: [ :each |
  764. self stream nextPutStatementWith: (self visit: each) ]]
  765. !
  766. visitIRTempDeclaration: anIRTempDeclaration
  767. "self stream
  768. nextPutAll: 'var ', anIRTempDeclaration name asVariableName, ';';
  769. lf"
  770. !
  771. visitIRValue: anIRValue
  772. self stream nextPutAll: anIRValue value asJavascript
  773. !
  774. visitIRVariable: anIRVariable
  775. anIRVariable variable name = 'thisContext'
  776. ifTrue: [ self stream nextPutAll: 'smalltalk.getThisContext()' ]
  777. ifFalse: [ self stream nextPutAll: anIRVariable variable alias ]
  778. !
  779. visitIRVerbatim: anIRVerbatim
  780. self stream nextPutStatementWith: [
  781. self stream nextPutAll: anIRVerbatim source ]
  782. ! !
  783. Object subclass: #JSStream
  784. instanceVariableNames: 'stream'
  785. package: 'Compiler-IR'!
  786. !JSStream methodsFor: 'accessing'!
  787. contents
  788. ^ stream contents
  789. ! !
  790. !JSStream methodsFor: 'initialization'!
  791. initialize
  792. super initialize.
  793. stream := '' writeStream.
  794. ! !
  795. !JSStream methodsFor: 'streaming'!
  796. lf
  797. stream lf
  798. !
  799. nextPut: aString
  800. stream nextPut: aString
  801. !
  802. nextPutAll: aString
  803. stream nextPutAll: aString
  804. !
  805. nextPutAssignment
  806. stream nextPutAll: '='
  807. !
  808. nextPutBlockContextFor: anIRClosure during: aBlock
  809. self
  810. nextPutAll: 'return smalltalk.withContext(function(', anIRClosure scope alias, ') {';
  811. nextPutAll: String cr.
  812. aBlock value.
  813. self
  814. nextPutAll: '}, function(', anIRClosure scope alias, ') {';
  815. nextPutAll: anIRClosure scope alias, '.fillBlock({'.
  816. anIRClosure locals
  817. do: [ :each |
  818. self
  819. nextPutAll: each asVariableName;
  820. nextPutAll: ':';
  821. nextPutAll: each asVariableName]
  822. separatedBy: [ self nextPutAll: ',' ].
  823. self
  824. nextPutAll: '},';
  825. nextPutAll: anIRClosure method scope alias, ')})'
  826. !
  827. nextPutClosureWith: aBlock arguments: anArray
  828. stream nextPutAll: '(function('.
  829. anArray
  830. do: [ :each | stream nextPutAll: each asVariableName ]
  831. separatedBy: [ stream nextPut: ',' ].
  832. stream nextPutAll: '){'; lf.
  833. aBlock value.
  834. stream nextPutAll: '})'
  835. !
  836. nextPutContextFor: aMethod during: aBlock
  837. self
  838. nextPutAll: 'return smalltalk.withContext(function(', aMethod scope alias, ') { ';
  839. nextPutAll: String cr.
  840. aBlock value.
  841. self
  842. nextPutAll: '}, function(', aMethod scope alias, ') {', aMethod scope alias;
  843. nextPutAll: '.fill(self,', aMethod selector asJavascript, ',{'.
  844. aMethod locals
  845. do: [ :each |
  846. self
  847. nextPutAll: each asVariableName;
  848. nextPutAll: ':';
  849. nextPutAll: each asVariableName]
  850. separatedBy: [ self nextPutAll: ',' ].
  851. self
  852. nextPutAll: '}, ';
  853. nextPutAll: aMethod theClass asJavascript;
  854. nextPutAll: ')})'
  855. !
  856. nextPutFunctionWith: aBlock arguments: anArray
  857. stream nextPutAll: 'fn: function('.
  858. anArray
  859. do: [ :each | stream nextPutAll: each asVariableName ]
  860. separatedBy: [ stream nextPut: ',' ].
  861. stream nextPutAll: '){'; lf.
  862. stream nextPutAll: 'var self=this;'; lf.
  863. aBlock value.
  864. stream nextPutAll: '}'
  865. !
  866. nextPutIf: aBlock with: anotherBlock
  867. stream nextPutAll: 'if('.
  868. aBlock value.
  869. stream nextPutAll: '){'; lf.
  870. anotherBlock value.
  871. stream nextPutAll: '}'
  872. !
  873. nextPutIfElse: aBlock with: ifBlock with: elseBlock
  874. stream nextPutAll: 'if('.
  875. aBlock value.
  876. stream nextPutAll: '){'; lf.
  877. ifBlock value.
  878. stream nextPutAll: '} else {'; lf.
  879. elseBlock value.
  880. stream nextPutAll: '}'
  881. !
  882. nextPutMethodDeclaration: aMethod with: aBlock
  883. stream
  884. nextPutAll: 'smalltalk.method({'; lf;
  885. nextPutAll: 'selector: "', aMethod selector, '",'; lf;
  886. nextPutAll: 'source: ', aMethod source asJavascript, ',';lf.
  887. aBlock value.
  888. stream
  889. nextPutAll: ',', String lf, 'messageSends: ';
  890. nextPutAll: aMethod messageSends asArray asJavascript, ','; lf;
  891. nextPutAll: 'args: ', (aMethod arguments collect: [ :each | each value ]) asArray asJavascript, ','; lf;
  892. nextPutAll: 'referencedClasses: ['.
  893. aMethod classReferences
  894. do: [:each | stream nextPutAll: each asJavascript]
  895. separatedBy: [stream nextPutAll: ','].
  896. stream
  897. nextPutAll: ']';
  898. nextPutAll: '})'
  899. !
  900. nextPutNonLocalReturnHandlingWith: aBlock
  901. stream
  902. nextPutAll: 'var $early={};'; lf;
  903. nextPutAll: 'try {'; lf.
  904. aBlock value.
  905. stream
  906. nextPutAll: '}'; lf;
  907. nextPutAll: 'catch(e) {if(e===$early)return e[0]; throw e}'; lf
  908. !
  909. nextPutNonLocalReturnWith: aBlock
  910. stream nextPutAll: 'throw $early=['.
  911. aBlock value.
  912. stream nextPutAll: ']'
  913. !
  914. nextPutReturn
  915. stream nextPutAll: 'return '
  916. !
  917. nextPutReturnWith: aBlock
  918. self nextPutReturn.
  919. aBlock value
  920. !
  921. nextPutSequenceWith: aBlock
  922. "stream
  923. nextPutAll: 'switch(smalltalk.thisContext.pc){'; lf."
  924. aBlock value.
  925. "stream
  926. nextPutAll: '};'; lf"
  927. !
  928. nextPutStatement: anInteger with: aBlock
  929. stream nextPutAll: 'case ', anInteger asString, ':'; lf.
  930. self nextPutStatementWith: aBlock.
  931. stream nextPutAll: 'smalltalk.thisContext.pc=', (anInteger + 1) asString, ';'; lf
  932. !
  933. nextPutStatementWith: aBlock
  934. aBlock value.
  935. stream nextPutAll: ';'; lf
  936. !
  937. nextPutVar: aString
  938. stream nextPutAll: 'var ', aString, ';'; lf
  939. !
  940. nextPutVars: aCollection
  941. aCollection ifEmpty: [ ^self ].
  942. stream nextPutAll: 'var '.
  943. aCollection
  944. do: [ :each | stream nextPutAll: each ]
  945. separatedBy: [ stream nextPutAll: ',' ].
  946. stream nextPutAll: ';'; lf
  947. ! !
  948. !BlockClosure methodsFor: '*Compiler-IR'!
  949. appendToInstruction: anIRInstruction
  950. anIRInstruction appendBlock: self
  951. ! !
  952. !String methodsFor: '*Compiler-IR'!
  953. asVariableName
  954. ^ (Smalltalk current reservedWords includes: self)
  955. ifTrue: [ self, '_' ]
  956. ifFalse: [ self ]
  957. ! !