[squeak-dev] The Trunk: System-eem.1146.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Mar 10 22:57:41 UTC 2020


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

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

Name: System-eem.1146
Author: eem
Time: 10 March 2020, 3:57:36.849789 pm
UUID: b7fb488c-bb55-4116-b634-6299a784171d
Ancestors: System-eem.1145

Accurate info for vm parameter 65 (bytecode set, read-only support, heartbeat implementation)

=============== Diff against System-eem.1145 ===============

Item was changed:
  ----- Method: SmalltalkImage>>vmParameterAt: (in category 'vm parameters') -----
  vmParameterAt: parameterIndex
  	"parameterIndex is a positive integer corresponding to one of the VM's internal parameter/metric registers.
  	 Answer with the current value of that register.  Fail if parameterIndex has no corresponding register.
  	 VM parameters are numbered as follows:
  		1	byte size of old-space (read-only)
  		2	byte size of young-space (read-only)
  		3	byte size of object memory (read-only)
  		4	allocationCount (read-only; nil in Cog VMs)
  		5	allocations between GCs (read-write; nil in Cog VMs)
  		6	survivor count tenuring threshold (read-write)
  		7	full GCs since startup (read-only)
  		8	total milliseconds in full GCs since startup (read-only)
  		9	incremental GCs since startup (read-only; scavenging GCs on Spur)
  		10	total milliseconds in incremental/scavenging GCs since startup (read-only)
  		11	tenures of surving objects since startup (read-only)
  		12-15 specific to the translating VM
  		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 VM start-up (actually at time initialization, which precedes image load) (newer Cog VMs only).
  		21	root (remembered) table size (read-only)
  		22	root (remembered) table overflows since startup (read-only)
  		23	bytes of extra memory to reserve for VM buffers, plugins, etc.
  		24	memory threshold above which to shrink object memory (read-write)
  		25	ammount to grow by when growing object memory (read-write)
  		26	interruptChecksEveryNms - force an ioProcessEvents every N milliseconds (read-write)
  		27	number of times mark loop iterated for current IGC/FGC (read-only) includes ALL marking
  		28	number of times sweep loop iterated for current IGC/FGC (read-only)
  		29	number of times make forward loop iterated for current IGC/FGC (read-only)
  		30	number of times compact move loop iterated for current IGC/FGC (read-only)
  		31	number of grow memory requests (read-only)
  		32	number of shrink memory requests (read-only)
  		33	number of root table entries used for current IGC/FGC (read-only)
  		34	bytes allocated in total since start-up or reset (read-write)
  		35	number of survivor objects after current IGC/FGC (read-only)
  		36	millisecond clock when current IGC/FGC completed (read-only)
  		37	number of marked objects for Roots of the world, not including Root Table entries for current IGC/FGC (read-only)
  		38	milliseconds taken by current IGC (read-only)
  		39	Number of finalization signals for Weak Objects pending when current IGC/FGC completed (read-only)
  		40	BytesPerWord for this image
  		41	imageFormatVersion for the VM
  		42	number of stack pages in use (Cog Stack VM only, otherwise nil)
  		43	desired number of stack pages (stored in image file header, max 65535; Cog VMs only, otherwise nil)
  		44	size of eden, in bytes (Cog VMs only, otherwise nil)
  		45	desired size of eden, in bytes (stored in image file header; Cog VMs only, otherwise nil)
  		46	size of machine code zone, in bytes (stored in image file header; Cog JIT VM only, otherwise nil)
  		47	desired size of machine code zone, in bytes (applies at startup only, stored in image file header; Cog JIT VM only)
  		48	various properties of the Cog VM as an integer encoding an array of bit flags.
  			Bit 0: tells the VM that the image's Process class has threadId as its 5th inst var (after nextLink, suspendedContext, priority & myList)
  			Bit 1: on Cog JIT VMs asks the VM to set the flag bit in interpreted methods
  			Bit 2: if set, preempting a process puts it to the head of its run queue, not the back,
  					i.e. preempting a process by a higher priority one will not cause the preempted process to yield
  						to others at the same priority.
  			Bit 3: in a muilt-threaded VM, if set, the Window system will only be accessed from the first VM thread
  			Bit 4: in a Spur vm, if set, causes weaklings and ephemerons to be queued individually for finalization
  			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)
  		49	the size of the external semaphore table (read-write; Cog VMs only)
  		50-51 reserved for VM parameters that persist in the image (such as eden above)
  		52	root (remembered) table maximum size (read-only)
  		53	the number of oldSpace segments (Spur only, otherwise nil)
  		54	total size of free old space (Spur only, otherwise nil)
  		55	ratio of growth and image size at or above which a GC will be performed post scavenge (Spur only, otherwise nil)
  		56	number of process switches since startup (read-only)
  		57	number of ioProcessEvents calls since startup (read-only)
  		58	number of forceInterruptCheck (Cog VMs) or quickCheckInterruptCalls (non-Cog VMs) calls since startup (read-only)
  		59	number of check event calls since startup (read-only)
  		60	number of stack page overflows since startup (read-only; Cog VMs only)
  		61	number of stack page divorces since startup (read-only; Cog VMs only)
  		62	number of machine code zone compactions since startup (read-only; Cog VMs only)
  		63	milliseconds taken by machine code zone compactions since startup (read-only; Cog VMs only)
  		64	current number of machine code methods (read-only; Cog VMs only)
  		65	In newer Cog VMs a set of flags describing VM features,
  				if non-zero bit 0 implies multiple bytecode set support;
+ 				if non-zero bit 1 implies read-only object support;
+ 				if non-zero bit 2 implies the VM suffers from using an ITIMER heartbeat (if 0 it has a thread that provides the heartbeat)
- 				if non-zero bit 0 implies read-only object support
  			(read-only; Cog VMs only; nil in older Cog VMs, a boolean answering multiple bytecode support in not so old Cog VMs)
  		66	the byte size of a stack page in the stack zone  (read-only; Cog VMs only)
  		67	the maximum allowed size of old space in bytes, 0 implies no internal limit (Spur VMs only).
  		68	the average number of live stack pages when scanned by GC (at scavenge/gc/become et al)
  		69	the maximum number of live stack pages when scanned by GC (at scavenge/gc/become et al)
  		70	the value of VM_PROXY_MAJOR (the interpreterProxy major version number)
  		71	the value of VM_PROXY_MINOR (the interpreterProxy minor version number)
  		72 total milliseconds in full GCs Mark phase since startup (read-only)
  		73 total milliseconds in full GCs Sweep phase since startup (read-only, can be 0 depending on compactors)
  		74 maximum pause time due to segment allocation"
  
  	<primitive: 254>
  	self primitiveFailed!



More information about the Squeak-dev mailing list