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

commits at source.squeak.org commits at source.squeak.org
Sun Jul 31 00:18:40 UTC 2022


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

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

Name: VMMaker.oscog-eem.3229
Author: eem
Time: 30 July 2022, 5:18:27.281453 pm
UUID: 41835b90-715d-4687-811d-1365b7275958
Ancestors: VMMaker.oscog-eem.3228

Tiny tweak to eliminate duplicate strlens in methodHasPrimitiveInPrimTracePlugin:

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

Item was changed:
  ----- Method: StackInterpreter>>object:equalsString: (in category 'utilities') -----
  object: anOop equalsString: aCString
  	<var: 'aCString' type: #'char *'>
  	<inline: true>
+ 	| len |
+ 	len := self strlen: aCString.
+ 	^self object: anOop equalsString: aCString ofSize: len!
- 	^self object: anOop equalsString: aCString ofSize: (self strlen: aCString)!



More information about the Vm-dev mailing list