[squeak-dev] The Trunk: Compiler-tobe.448.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Oct 21 16:13:56 UTC 2020


Marcel Taeumel uploaded a new version of Compiler to project The Trunk:
http://source.squeak.org/trunk/Compiler-tobe.448.mcz

==================== Summary ====================

Name: Compiler-tobe.448
Author: tobe
Time: 17 October 2020, 9:11:04.555834 am
UUID: 0827d6fb-39db-4734-8440-9c0af90b39e5
Ancestors: Compiler-eem.447

Report pc for closureCreationNodes of full blocks

See BlockNode>>#emitCodeForValue:encoder: for the analogous call without full blocks

=============== Diff against Compiler-eem.447 ===============

Item was changed:
  ----- Method: BlockNode>>emitCodeForFullBlockValue:encoder: (in category 'code generation') -----
  emitCodeForFullBlockValue: stack encoder: encoder
  	copiedValues do:
  		[:copiedValue| copiedValue emitCodeForValue: stack encoder: encoder].
+ 	closureCreationNode pc: encoder nextPC.
  	encoder
  		genPushFullClosure: closureCreationNode index
  		numCopied: copiedValues size.
  	stack
  		pop: copiedValues size;
  		push: 1!



More information about the Squeak-dev mailing list