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

commits at source.squeak.org commits at source.squeak.org
Wed Dec 2 20:48:53 UTC 2015


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

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

Name: VMMaker.oscog-eem.1543
Author: eem
Time: 2 December 2015, 12:47:13.204 pm
UUID: 7ab33230-086d-4b21-a335-26f16100a3b4
Ancestors: VMMaker.oscog-eem.1542

...and fix the shadowing warnings.

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

Item was changed:
  ----- Method: Cogit>>blockCreationBytecodeSizeForHeader: (in category 'method map') -----
+ blockCreationBytecodeSizeForHeader: aMethodHeader
- blockCreationBytecodeSizeForHeader: methodHeader
  	<inline: true>
  	^self cppIf: MULTIPLEBYTECODESETS
  		ifTrue:
+ 			[(coInterpreter headerIndicatesAlternateBytecodeSet: aMethodHeader)
- 			[(coInterpreter headerIndicatesAlternateBytecodeSet: methodHeader)
  				ifTrue: [AltBlockCreationBytecodeSize]
  				ifFalse: [BlockCreationBytecodeSize]]
  		ifFalse: [BlockCreationBytecodeSize]!

Item was changed:
  ----- Method: Cogit>>bytecodeSetOffsetForHeader: (in category 'initialization') -----
+ bytecodeSetOffsetForHeader: aMethodHeader
- bytecodeSetOffsetForHeader: methodHeader
  	<inline: true>
  	^self
  		cppIf: MULTIPLEBYTECODESETS
  		ifTrue:
+ 			[(coInterpreter headerIndicatesAlternateBytecodeSet: aMethodHeader)
- 			[(coInterpreter headerIndicatesAlternateBytecodeSet: methodHeader)
  				ifTrue: [256]
  				ifFalse: [0]]
  		ifFalse: [0]!



More information about the Vm-dev mailing list