VM Maker: VMMaker.oscog-eem.2400.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-eem.2400.mcz

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

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

Name: VMMaker.oscog-eem.2400
Author: eem
Time: 31 May 2018, 11:01:06.49964 am
UUID: 1ba9bd98-23e8-4045-9b36-21c45003b2c4
Ancestors: VMMaker.oscog-eem.2399

Fix Sista build which is failing due to the lack of an export of objectBytesForSlots:.

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

Item was added:
+ ----- Method: Spur32BitCoMemoryManager>>objectBytesForSlots: (in category 'object enumeration') -----
+ objectBytesForSlots: numSlots
+ "Answer the total number of bytes in an object with the given
+ number of slots, including header and possible overflow size header."
+ <api>
+ <option: #SistaVM>
+ ^super objectBytesForSlots: numSlots!

Item was added:
+ ----- Method: Spur64BitCoMemoryManager>>objectBytesForSlots: (in category 'object enumeration') -----
+ objectBytesForSlots: numSlots
+ "Answer the total number of bytes in an object with the given
+ number of slots, including header and possible overflow size header."
+ <api>
+ <option: #SistaVM>
+ ^super objectBytesForSlots: numSlots!