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

commits at source.squeak.org commits at source.squeak.org
Sat Jul 4 21:36:21 UTC 2020


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

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

Name: VMMaker.oscog-eem.2771
Author: eem
Time: 4 July 2020, 2:36:08.977687 pm
UUID: a7ba3af0-70cc-4104-be1b-8895f533ed7b
Ancestors: VMMaker.oscog-eem.2770

Oops! Fix slip in previous commit.

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

Item was changed:
  ----- Method: Cogit>>MulOverflowR:R: (in category 'abstract instructions') -----
  MulOverflowR: reg1 R: reg2
  	"Multiplication is a little weird on some processors.  Defer to the backEnd
  	 to allow it to generate any special code it may need to."
  	<inline: true>
  	^backEnd canMulRRDetectOverflow
  		ifTrue: [backEnd genMulR: reg1 R: reg2]
+ 		ifFalse: [backEnd genMulOverflowR: reg1 R: reg2]!
- 		ifFalse: [backEnd MulOverflowR: reg1 R: reg2]!



More information about the Vm-dev mailing list