[Vm-dev] [commit][3474] Correct an obsolescence in Workspace.text.

commits at squeakvm.org commits at squeakvm.org
Thu Oct 8 19:36:04 UTC 2015


Revision: 3474
Author:   eliot
Date:     2015-10-08 12:36:03 -0700 (Thu, 08 Oct 2015)
Log Message:
-----------
Correct an obsolescence in Workspace.text.  Add an In-image Compilation Workspace.

Modified Paths:
--------------
    branches/Cog/image/BuildSqueakSpurTrunkVMMakerImage.st
    branches/Cog/image/Workspace.text

Added Paths:
-----------
    branches/Cog/image/In-image Compilation Workspace.text

Modified: branches/Cog/image/BuildSqueakSpurTrunkVMMakerImage.st
===================================================================
--- branches/Cog/image/BuildSqueakSpurTrunkVMMakerImage.st	2015-10-08 19:11:37 UTC (rev 3473)
+++ branches/Cog/image/BuildSqueakSpurTrunkVMMakerImage.st	2015-10-08 19:36:03 UTC (rev 3474)
@@ -50,7 +50,10 @@
 
 World findATranscript: nil.
 
-#( 'Workspace' 'VM Simulation Workspace' 'Slang Test Workspace' ) reverse do:
+#( 'Workspace'
+   'VM Simulation Workspace'
+   'Slang Test Workspace'
+   'In-image Compilation Workspace.text' ) reverse do:
 	[:textFileName|
 	(StringHolder new contents: (FileDirectory default fileNamed: textFileName, '.text') contentsOfEntireFile)
 		openLabel: textFileName].
Added: branches/Cog/image/In-image Compilation Workspace.text
===================================================================
--- branches/Cog/image/In-image Compilation Workspace.text	                        (rev 0)
+++ branches/Cog/image/In-image Compilation Workspace.text	2015-10-08 19:36:03 UTC (rev 3474)
@@ -0,0 +1,16 @@
+StackToRegisterMappingCogit
+	genAndDis: Object>>#at:put:
+	options: #(ObjectMemory Spur32BitCoMemoryManager)
+
+StackToRegisterMappingCogit
+	genAndDis: Object>>#perform:with:with:with:
+	options: #(ObjectMemory Spur32BitCoMemoryManager)
+
+StackToRegisterMappingCogit
+	genAndDis: SequenceableCollection>>#indexOf:startingAt:ifAbsent:
+	options: #(ObjectMemory Spur32BitCoMemoryManager
+				ISA ARMv5)
+
+StackToRegisterMappingCogit
+	genAndDis: SequenceableCollection>>#indexOf:startingAt:ifAbsent:
+	options: #(ObjectMemory NewCoObjectMemory)
Modified: branches/Cog/image/Workspace.text
===================================================================
--- branches/Cog/image/Workspace.text	2015-10-08 19:11:37 UTC (rev 3473)
+++ branches/Cog/image/Workspace.text	2015-10-08 19:36:03 UTC (rev 3474)
@@ -6,7 +6,7 @@
 
 These items, and some convenient multi-window browser configurations have been added to the "do..." menu for your convenience.
 
-To rebuild this image run buildsqueak45image.sh.
+To rebuild this image run buildspurtrunkvmmakerimage.sh.
 
 Read the class comments of StackInterpreterSimulator and CogVMSimulator for running the simulator, and/or look at the examples in the VM Simulation Workspace.
 
@@ -19,4 +19,4 @@
 	and: nil with: #()
 	to: VMMaker sourceTree, '/src'
 	platformDir: VMMaker sourceTree, '/platforms'
-	including: plugins) generateExternalPlugins)
\ No newline at end of file
+	including: plugins) generateExternalPlugins)


More information about the Vm-dev mailing list