VM Maker: VMMaker.oscog-EstebanLorenzano.2024.mcz

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

VM Maker: VMMaker.oscog-EstebanLorenzano.2024.mcz

commits-2
 
Esteban Lorenzano uploaded a new version of VMMaker to project VM Maker:
http://source.squeak.org/VMMaker/VMMaker.oscog-EstebanLorenzano.2024.mcz

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

Name: VMMaker.oscog-EstebanLorenzano.2024
Author: EstebanLorenzano
Time: 5 December 2016, 9:57:01.004046 am
UUID: 7870434f-e14e-4873-b8b9-5f639ef5d66d
Ancestors: VMMaker.oscog-eem.2023

rename temp var to avoid conflict with global while generating sources.

=============== Diff against VMMaker.oscog-eem.2023 ===============

Item was changed:
  ----- Method: CogBytecodeFixup>>recordBcpc: (in category 'simulation') -----
+ recordBcpc: theBytecodePC
- recordBcpc: bytecodePC
  <inline: true>
  self cCode: '' inSmalltalk:
  [bcpc
+ ifNil: [bcpc := theBytecodePC]
- ifNil: [bcpc := bytecodePC]
  ifNotNil:
  [bcpc := bcpc isInteger
+ ifTrue: [{bcpc. theBytecodePC}]
+ ifFalse: [bcpc, {theBytecodePC}]]]!
- ifTrue: [{bcpc. bytecodePC}]
- ifFalse: [bcpc, {bytecodePC}]]]!