[Vm-dev] VM Maker: VMMaker.oscog-nice.1764.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Apr 5 22:21:04 UTC 2016


Nicolas Cellier uploaded a new version of VMMaker to project VM Maker:
http://source.squeak.org/VMMaker/VMMaker.oscog-nice.1764.mcz

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

Name: VMMaker.oscog-nice.1764
Author: nice
Time: 6 April 2016, 12:18:06.794 am
UUID: c776e6b6-a8ad-46a8-89c9-15460bf25c9a
Ancestors: VMMaker.oscog-cb.1763

Provide missing spur simulator messages byteSwapped32IfBigEndian: and byteSwapped64IfBigEndian:

=============== Diff against VMMaker.oscog-cb.1763 ===============

Item was added:
+ ----- Method: Spur32BitMMLECoSimulator>>byteSwapped32IfBigEndian: (in category 'memory access') -----
+ byteSwapped32IfBigEndian: w
+ 	^w bitAnd: 16rFFFFFFFF!

Item was added:
+ ----- Method: Spur32BitMMLECoSimulator>>byteSwapped64IfBigEndian: (in category 'memory access') -----
+ byteSwapped64IfBigEndian: w
+ 	^w bitAnd: 16rFFFFFFFFFFFFFFFF!

Item was added:
+ ----- Method: Spur32BitMMLESimulator>>byteSwapped32IfBigEndian: (in category 'memory access') -----
+ byteSwapped32IfBigEndian: w
+ 	^w bitAnd: 16rFFFFFFFF!

Item was added:
+ ----- Method: Spur32BitMMLESimulator>>byteSwapped64IfBigEndian: (in category 'memory access') -----
+ byteSwapped64IfBigEndian: w
+ 	^w bitAnd: 16rFFFFFFFFFFFFFFFF!

Item was added:
+ ----- Method: Spur64BitMMLECoSimulator>>byteSwapped32IfBigEndian: (in category 'memory access') -----
+ byteSwapped32IfBigEndian: w
+ 	^w bitAnd: 16rFFFFFFFF!

Item was added:
+ ----- Method: Spur64BitMMLECoSimulator>>byteSwapped64IfBigEndian: (in category 'memory access') -----
+ byteSwapped64IfBigEndian: w
+ 	^w bitAnd: 16rFFFFFFFFFFFFFFFF!

Item was added:
+ ----- Method: Spur64BitMMLESimulator>>byteSwapped32IfBigEndian: (in category 'memory access') -----
+ byteSwapped32IfBigEndian: w
+ 	^w bitAnd: 16rFFFFFFFF!

Item was added:
+ ----- Method: Spur64BitMMLESimulator>>byteSwapped64IfBigEndian: (in category 'memory access') -----
+ byteSwapped64IfBigEndian: w
+ 	^w bitAnd: 16rFFFFFFFFFFFFFFFF!



More information about the Vm-dev mailing list