The Trunk: Compiler-tobe.448.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Compiler-tobe.448.mcz

commits-2
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!