- cpu_mmu.mac: test mmr0,1,3; test m*p* sp access; use call/return; - stktst/data/2022-08-03: add note on bsd kernel version confusion
stktst: a program testing 2.11BSD stack extension logic
The stktst program exercises the 2.11BSD stack extension logic.
In a first step, the sp can be aligned to a click (64 byte) or a
page (8129 byte) boundary.
An offset can also be applied after this alignment.
In a second step, a sequence of integer and floating point instructions with
a -(sp) destination is executed.
This allows to set up almost every possible stack extension situation.
Motivation for stktst were differences in the MMR1 register implementation
in different PDP-11 CPUs and differences in the modeling of MMR1 in
PDP-11 simulators (see
simh@groups.io post).
That combined with the 2.11BSD stack extension handling prior to #473 can lead
to unexpected "segmentation fault" aborts in 2.11BSD.
The results are collected in the data folder.
stktst has an assembler core dotst.s which is called from a
C main program stktst.c. It is called as
./stktst <cmd> <count> [-p np] [-c nc] [-o no]
The options control the initial stack alignment:
-p np: aligns to 8192 byte page boundaries. np=1 to the next one, np=2 to the second next one, etc. Obviously,npshould be smaller than 8. The option is ignored if np<=0.-c nc: aligns to 64 byte click boundaries. nc=1 to the next one, nc=2 to the second next one, etc. The first alignment step will not change the stack if it was alreay on a click bounday, it will therefore add 0 to 62 bytes to the stack. The option is ignored if nc<=0. Click alignment is done after page alignment.-o no: addsnotosp.nomust be even and can be positive or negative.
Notes:
- no range check is done for
no. After a -p it is safe to use small positivenovalues to positionspa bit before a page boundary. After a -c it is better to use negativenovalues to positionspbefore the next click boundary. - the stack is allocated below the argument and environment values.
The initial
spvalue will therefore decrease when the number of characters in the argument list increases because the stack base moves down. In some cases it is therefore prudent to specify the numbers as quoted strings with some leading blanks, likeThat allows changing the counts without changing the length of the argument list../stktst d ' 3' -c ' 2' -o ' 4' - the code was called horrible and is indeed awkward to use. That's
mostly because the stack is moving target. A change from
shtotcsh, which gives a different environment, changes already the stack base and alignment. Library calls, likeprintf, may temporarily use significant stack space and trigger a stack extension, and change the environment. So chasing issues in the stack extension logic, especially when it is FPP specific, is subtle.stktsttries the best and should be forgotten when all issues have been resolved.
The cmd argument selects the instruction that does the stack push and
count determines how often it is executed.
The available modes for cmd are
I: useclr -(sp)--> integer word pushi: usemovfi -(sp)afterseti--> word push from FPPl: usemovfi -(sp)aftersetl--> double word push from FPPf: usemovf -(sp)aftersetf--> double word push from FPPd: usemovf -(sp)aftersetd--> quad word push from FPP
For debug purposes three additional cmd modes are available:
r: usescountas an address and readsw: usescountas an address, reads and re-writesh: runs ahalt
stktst prints the sp after alignment and after the stack pushes like
stktst-I: before sp 177304 (0, 4,60); 177200 (0, 5,64);
stktst-I: after sp 177304 (0, 4,60); 177200 (0, 5,64); 167200 (0, 69,64);
and gives the sp value
- after
dotst.sis called - after alignments and offsets were applied
- after stack pushes were executed
and prints it in octal and broken down in page, click and byte offset.
Because the stack is a downward growing segment, all offsets measure the
distance to the top of memory and increase when the sp decreases.
When a stack extension fails, the program will print the first line and abort.