PERFORCE change 92572 for review

Kip Macy kmacy at FreeBSD.org
Tue Feb 28 23:36:43 PST 2006


http://perforce.freebsd.org/chv.cgi?CH=92572

Change 92572 by kmacy at kmacy_storage:sun4v_work on 2006/03/01 07:36:23

	add directives to make assembler from solaris mostly just work

Affected files ...

.. //depot/projects/kmacy_sun4v/src/sys/sparc64/include/asm.h#4 edit

Differences ...

==== //depot/projects/kmacy_sun4v/src/sys/sparc64/include/asm.h#4 (text+ko) ====

@@ -95,6 +95,12 @@
 #define	ENTRY(x)	_ENTRY(x)
 #define	END(x)		.size x, . - x
 
+#define STACK_ALIGN     16
+#define SET_SIZE(x)     END(x)
+#define SA(X)           (((X)+(STACK_ALIGN-1)) & ~(STACK_ALIGN-1))  
+#define WINDOWSIZE64    (16*8)
+#define MINFRAME64      (WINDOWSIZE64 + 48)
+#define MINFRAME        MINFRAME64
 /*
  * Kernel RCS ID tag and copyright macros
  */


More information about the p4-projects mailing list