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

commits at source.squeak.org commits at source.squeak.org
Thu Jun 4 05:44:14 UTC 2015


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

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

Name: VMMaker.oscog-eem.1337
Author: eem
Time: 3 June 2015, 10:42:04.417 pm
UUID: bbb568f4-b2c8-4711-9d7a-7ad42d103182
Ancestors: VMMaker.oscog-eem.1336

Fix defaultCogCodeSize to avoid exporting the AbstractInstruction type

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

Item was removed:
- ----- Method: CogARMCompiler>>defaultCogCodeSize (in category 'accessing') -----
- defaultCogCodeSize
- 	"Return the default number of bytes to allocate for native code at startup.
- 	 The actual value can be set via vmParameterAt: and/or a preference in the ini file."
- 	<api>
- 	^1024 * 1400!

Item was added:
+ ----- Method: CogARMCompiler>>getDefaultCogCodeSize (in category 'accessing') -----
+ getDefaultCogCodeSize
+ 	"Return the default number of bytes to allocate for native code at startup.
+ 	 The actual value can be set via vmParameterAt: and/or a preference in the ini file."
+ 	<inline: true>
+ 	^1024 * 1400!

Item was removed:
- ----- Method: CogAbstractInstruction>>defaultCogCodeSize (in category 'accessing') -----
- defaultCogCodeSize
- 	"Return the default number of bytes to allocate for native code at startup.
- 	 The actual value can be set via vmParameterAt: and/or a preference in the ini file."
- 	<api>
- 	^1024 * 1024!

Item was added:
+ ----- Method: CogAbstractInstruction>>getDefaultCogCodeSize (in category 'accessing') -----
+ getDefaultCogCodeSize
+ 	"Return the default number of bytes to allocate for native code at startup.
+ 	 The actual value can be set via vmParameterAt: and/or a preference in the ini file."
+ 	<inline: true>
+ 	^1024 * 1024!

Item was changed:
  ----- Method: Cogit>>defaultCogCodeSize (in category 'accessing') -----
  defaultCogCodeSize
  	"Return the default number of bytes to allocate for native code at startup.
  	 The actual value can be set via vmParameterAt: and/or a preference in the ini file."
+ 	<api>
+ 	^backEnd getDefaultCogCodeSize!
- 	<doNotGenerate>
- 	^backEnd defaultCogCodeSize!



More information about the Vm-dev mailing list