[Vm-dev] VM Maker: VMMaker.oscog-eem.2659.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Jan 10 06:19:35 UTC 2020


Eliot Miranda uploaded a new version of VMMaker to project VM Maker:
http://source.squeak.org/VMMaker/VMMaker.oscog-eem.2659.mcz

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

Name: VMMaker.oscog-eem.2659
Author: eem
Time: 9 January 2020, 10:19:20.319563 pm
UUID: 442ae512-679e-40e6-9582-47528bdf3a58
Ancestors: VMMaker.oscog-eem.2658

Have Slang placate C and the senders of printForwarder: by having printForwarder: match the return type of printOop: et al.

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

Item was changed:
  ----- Method: StackInterpreter>>printForwarder: (in category 'debug printing') -----
  printForwarder: oop
  	<inline: false>
  	self
  		print: ' is a forwarded object to '; printHex: (objectMemory followForwarded: oop);
  		print: ' of slot size '; printNum: (objectMemory numSlotsOfAny: oop).
+ 	objectMemory printHeaderTypeOf: oop.
+ 	self cr.
+ 	^0!
- 	 objectMemory printHeaderTypeOf: oop.
- 	 self cr!



More information about the Vm-dev mailing list