[squeak-dev] The Trunk: SystemReporter-eem.53.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Dec 18 20:50:26 UTC 2021


Eliot Miranda uploaded a new version of SystemReporter to project The Trunk:
http://source.squeak.org/trunk/SystemReporter-eem.53.mcz

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

Name: SystemReporter-eem.53
Author: eem
Time: 18 December 2021, 12:50:24.433657 pm
UUID: 9a73d6e6-a091-4a40-b87a-96858648df8f
Ancestors: SystemReporter-eem.52

VM parameter 6, survivor count tenuring threshold, is also meaningful in Spur VMs

=============== Diff against SystemReporter-eem.52 ===============

Item was changed:
  ----- Method: SystemReporter>>reportVMParameters: (in category 'reporting') -----
  reportVMParameters: aStream
  	| vmParameters isStack isCog isSpur |
  	self header: 'Virtual Machine Parameters' on: aStream.
  	vmParameters := Smalltalk vm getVMParameters.
  	isStack := (vmParameters at: 42 ifAbsent: [0]) ~= 0. "42 = number of stack pages available"
  	isCog := isStack and: [(vmParameters at: 46) ~= 0].  "46 is machine code zone size"
  	isSpur := isStack and: [(vmParameters at: 41) anyMask: 2r10000]. "41 is imageFormatVersion for the VM; bit 16 is the Spur bit"
  	(isSpur
  		ifFalse:
  			[#(	1	'size of old space'
  				2	'size of young+old space'
  				3	'size of memory'
  				4	'allocationCount'
+ 				5	'allocations between GCs')]
- 				5	'allocations between GCs'
- 				6	'survivor count tenuring threshold')]
  		ifTrue:
  			[#(	1	'size of old space'
  				2	'used bytes in new space (used eden + used past space)'
  				3	'size of heap')]),
+ 	#(	6	'survivor count tenuring threshold'
+ 		7	'full GCs since startup'
- 	#(	7	'full GCs since startup'
  		8	'total milliseconds in full GCs since startup'),
  	(isSpur
  		ifFalse: [#(	9	'incremental GCs since startup'
  					10	'total milliseconds in incremental GCs since startup'
  					11	'tenures of surving objects since startup'),
  					{12 to: 19. 'specific to the translating VM'}]
  		ifTrue: [#(	9	'scavenging GCs since startup'
  					10	'total milliseconds in scavenging GCs since startup'
  					11	'tenures of surving objects since startup'
  					12	'event trace mask (for debugging input events)'
  					13	'VM ticker start microseconds (Croquet/QwaqVM)'
  					14	'VM ticker count (Croquet/QwaqVM)'
  					15	'VM ticker call count (Croquet/QwaqVM)'
  					16	'total microseconds in idle since startup'
  					17	'proportion of code zone available for use (Sista VMs only; read-write)'
  					18	'total milliseconds in full GC compaction since startup (a portion of parameter 8)'
  					19	'scavenge threshold; the effective size of eden')]),
  	#(	20  'utc microseconds at startup (if non-zero)'
  		21	'root/remembered table size (occupancy)'
  		22	'root/remembered table overflows since startup'
  		23	'bytes of extra memory to reserve for VM buffers, plugins, etc.'
  		24	'free memory threshold above which object memory will be shrunk'
  		25	'memory headroom when growing object memory'),
  	(isStack
  		ifFalse:
  			[#(	26  'interruptChecksEveryNms - force an ioProcessEvents every N milliseconds, in case the image is not calling getNextEvent often')]
  		ifTrue:
  			[#(	26  'heartbeat period (ms; see #58)')]),
  	(isSpur
  		ifFalse:
  			[#(	27	'number of times mark loop iterated for current IGC/FGC includes ALL marking'
  				28	'number of times sweep loop iterated  for current IGC/FGC'
  				29	'number of times make forward loop iterated for current IGC/FGC'
  				30	'number of times compact move loop iterated for current IGC/FGC')]
  		ifTrue: [#()]),
  	#(	31	'number of grow memory requests'
  		32	'number of shrink memory requests'),
  	(isSpur
  		ifFalse:
  			[#(	33	'number of root table entries used for current IGC/FGC'
  				34	'number of allocations done before current IGC/FGC'
  				35	'number of survivor objects after current IGC/FGC'
  				36  'millisecond clock when current IGC/FGC completed'
  				37  'number of marked objects for Roots of the world, not including Root Table entries for current IGC/FGC'
  				38  'milliseconds taken by current IGC'
  				39  'Number of finalization signals for Weak Objects pending when current IGC/FGC completed')]
  		ifTrue:
  			[#(	33	'number of root table entries at last scavenge'
  				35	'number of survivor objects at last scavenge (if non-zero)'
  				36  'millisecond clock when current scavenge completed'
  				38  'milliseconds taken by current scavenge'
  				39  'Number of finalization signals for Weak Objects pending when current SGC/FGC completed')]),
  	#(	40  'VM word size - 4 or 8'),
  	(isStack
  		ifTrue:
  			[#(
  				41	'imageFormatVersion for the VM'
  				42	'number of stack pages available'
  				43	'desired number of stack pages (stored in image file header, max 65535)'
  				44	'size of eden, in bytes'
  				45	'desired size of eden, in bytes (stored in image file header)'
  				46	'machine code zone size, in bytes (0 in Stack VM)'
  				47	'desired machine code zone size (0 => default 1Mb to 2Mb depending on processor)'),
  			  {	48.	'Persistent image header flags\		bit 0: implies Process has threadId as its 4th inst var\		bit 1: if set, methods that are interpreted will have the flag bit set in their header\		bit 2: if set, implies preempting a process does not put it to the back of its run queue\		bit 3: if set, implies the GUI should run on the first thread and event queues should not be accessed from other threads\		bit 4: if set, implies the new finalization scheme where WeakArrays are queued\		bit 5: if set, implies wheel events will be delivered as such and not mapped to arrow key events\		bit 6: if set, implies arithmetic primitives will fail if given arguments of different types (float vs int)\		bit 7: if set, causes times delivered from file primitives to be in UTC rather than local time.' withCRs },
  			#(	49	'max size the image promises to grow the external semaphore table to'),
  			(isSpur
  				ifFalse:
  					[{	50 to: 51.	'reserved for VM parameters that persist in the image (such as size of eden above)'.
  						52 to: 56.	'specific to Spur' }]
  				ifTrue:
  					[{	50 to: 51.	'reserved for VM parameters that persist in the image (such as size of eden above)' },
  					#(	52			'root/remembered table capacity'
  						53			'number of old space segments'
  						54			'total free old space'
  						55			'ratio of growth and image size at or above which a GC will be performed post scavenge')]),
  			#(	56	'number of process switches since startup'
  				57	'number of ioProcessEvents calls since startup'
  				58	'number of forceInterruptCheck calls since startup'
  				59	'number of check event calls since startup'
  				60	'number of stack page overflows since startup'
  				61	'number of stack page divorces since startup'
  				62	'compiled code compactions since startup'),
  			(isCog
  				ifFalse:
  					[#()]
  				ifTrue:
  					[#(	63	'total milliseconds in compiled code compactions since startup'
  						64	'the number of methods that currently have jitted machine-code')]),
  			{	65.	'Cog feature flags\		bit 0: set if the VM supports MULTIPLE_BYTECODE_SETS.\		bit 1: set if the VM supports read-only objects (IMMUTABILITY).\		bit 2: set if the VM has an ITIMER_HEARTBEAT\		bit 3: set if the VM supports cross-platform BIT_IDENTICAL_FLOATING_POINT arithmetic\		bit 4: set if the VM can catch exceptions in FFI calls and answer them as primitive failures' withCRs.
  				66.	'the byte size of a stack page'.},
  			(isSpur
  				ifFalse:
  					[{	67 to: 69.	'reserved for more Cog-related info' }]
  				ifTrue:
  					[#(	67		'the maximum allowed size of old space (if zero there is no limit)'
  						68		'the average number of live stack pages when scanned by scavenge/gc/become'
  						69		'the maximum number of live stack pages when scanned by scavenge/gc/become')]),
  			#(	70	'the vmProxyMajorVersion (the interpreterProxy VM_MAJOR_VERSION)'
  				71	'the vmProxyMinorVersion (the interpreterProxy VM_MINOR_VERSION)'),
  			(isSpur
  				ifFalse: [#()]
  				ifTrue:
  					[#(	72	'milliseconds spent marking since startup'
  						73	'reserved for more Spur-related info'
  						74	'reserved for more Spur-related info'
  						75	'do mixed arithmetic; if false binary arithmetic primitives will fail unless receiver and argument are of the same type')]),
  			(isCog
  				ifFalse: [#()]
  				ifTrue: [#(76 'minimum unused bytes of headroom on all stack pages')])]
  		ifFalse:
  			[#()])
  	pairsDo: [:idx :desc | | value values |
  		(idx isInteger ifTrue: [idx] ifFalse: [idx last]) <= vmParameters size ifTrue:
  			[aStream nextPut: $#.
  			 idx isInteger
  				ifTrue:
  					[value := vmParameters at: idx.
  					 aStream
  						print: idx; tab: (idx < 10 ifTrue: [2] ifFalse: [1]);
  						nextPutAll: ((value isInteger and: [idx ~= 41])
  										ifTrue: [(desc includesSubstring: 'bit 0:')
  													ifTrue: [value printStringBase: 2 nDigits: value highBit]
  													ifFalse: [value asStringWithCommas]]
  										ifFalse: [value printString])]
  				ifFalse:
  					[value := vmParameters at: idx first.
  					 aStream print: idx first; next: 2 put: $.; print: idx last; tab.
  					 values := idx collect: [:i| vmParameters at: i].
  					 values asSet size = 1
  						ifTrue: [aStream print: value]
  						ifFalse: [values do: [:v| aStream print: v] separatedBy: [aStream nextPutAll: ', ']]].
  			 aStream tab; nextPutAll: desc; cr]]!



More information about the Squeak-dev mailing list