2 * Copyright (c) 1991-1994 by Xerox Corporation. All rights reserved.
4 * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
5 * OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
7 * Permission is hereby granted to use or copy this program
8 * for any purpose, provided the above notices are retained on all copies.
9 * Permission to modify the code and to distribute modified code is granted,
10 * provided the above notices are retained, and a notice that the code was
11 * modified is included with the above copyright notice.
14 /* Check whether setjmp actually saves registers in jmp_buf. */
15 /* If it doesn't, the generic mark_regs code won't work. */
16 /* Compilers vary as to whether they will put x in a */
17 /* (callee-save) register without -O. The code is */
18 /* contrived such that any decent compiler should put x in */
19 /* a callee-save register with -O. Thus it is is */
20 /* recommended that this be run optimized. (If the machine */
21 /* has no callee-save registers, then the generic code is */
22 /* safe, but this will not be noticed by this piece of */
23 /* code.) This test appears to be far from perfect. */
27 #include "private/gcconfig.h"
30 /* GETPAGESIZE() is set to getpagesize() by default, but that */
31 /* doesn't really exist, and the collector doesn't need it. */
32 #define INCL_DOSFILEMGR
34 #define INCL_DOSERRORS
42 if (DosQuerySysInfo(QSV_PAGE_SIZE
, QSV_PAGE_SIZE
,
43 (void *)result
, sizeof(ULONG
)) != NO_ERROR
) {
44 fprintf(stderr
, "DosQuerySysInfo failed\n");
47 return((int)(result
[0]));
51 struct {char a_a
; char * a_b
;} a
;
63 long ps
= GETPAGESIZE();
65 register int x
= (int)strlen("a"); /* 1, slightly disguised */
68 printf("This appears to be a %s running %s\n", MACH_TYPE
, OS_TYPE
);
69 if (nested_sp() < &dummy
) {
70 printf("Stack appears to grow down, which is the default.\n");
71 printf("A good guess for STACKBOTTOM on this machine is 0x%lx.\n",
72 ((unsigned long)(&dummy
) + ps
) & ~(ps
-1));
74 printf("Stack appears to grow up.\n");
75 printf("Define STACK_GROWS_UP in gc_private.h\n");
76 printf("A good guess for STACKBOTTOM on this machine is 0x%lx.\n",
77 ((unsigned long)(&dummy
) + ps
) & ~(ps
-1));
79 printf("Note that this may vary between machines of ostensibly\n");
80 printf("the same architecture (e.g. Sun 3/50s and 3/80s).\n");
81 printf("On many machines the value is not fixed.\n");
82 printf("A good guess for ALIGNMENT on this machine is %ld.\n",
83 (unsigned long)(&(a
.a_b
))-(unsigned long)(&a
));
85 /* Encourage the compiler to keep x in a callee-save register */
92 printf("Generic mark_regs code probably wont work\n");
93 # if defined(SPARC) || defined(RS6000) || defined(VAX) || defined(MIPS) || defined(M68K) || defined(I386) || defined(NS32K) || defined(RT)
94 printf("Assembly code supplied\n");
96 printf("Need assembly code\n");
99 printf("Generic mark_regs code may work\n");
101 printf("Very strange setjmp implementation\n");
106 if (y
== 1) longjmp(b
,1);