⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mac2defs.h

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻 H
字号:
/** 	@(#)mac2defs.h	4.1	(ULTRIX)	7/17/90*//************************************************************************ *									* *			Copyright (c) 1986 by				* *		Digital Equipment Corporation, Maynard, MA		* *			All rights reserved.				* *									* *   This software is furnished under a license and may be used and	* *   copied  only  in accordance with the terms of such license and	* *   with the  inclusion  of  the  above  copyright  notice.   This	* *   software  or  any  other copies thereof may not be provided or	* *   otherwise made available to any other person.  No title to and	* *   ownership of the software is hereby transferred.			* *									* *   This software is  derived  from  software  received  from  the	* *   University    of   California,   Berkeley,   and   from   Bell	* *   Laboratories.  Use, duplication, or disclosure is  subject  to	* *   restrictions  under  license  agreements  with  University  of	* *   California and with AT&T.						* *									* *   The information in this software is subject to change  without	* *   notice  and should not be construed as a commitment by Digital	* *   Equipment Corporation.						* *									* *   Digital assumes no responsibility for the use  or  reliability	* *   of its software on equipment which is not supplied by Digital.	* *									* ************************************************************************//**************************************************************************			Modification History**	David Metsky		14-Jan-86** 001	Replaced old version with BSD 4.3 version as part of upgrade.**	Based on:	mac2defs.h	4.2		85/08/23**************************************************************************//* * VAX-11/780 Registers *//* * Scratch registers */#define R0	0#define R1	1#define R2	2#define R3	3#define R4	4#define R5	5/* * Register variables */#define R6	6#define R7	7#define R8	8#define R9	9#define R10	10#define R11	11/* * Special purpose registers */#define AP	12		/* argument pointer */#define FP	13		/* frame pointer */#define SP	14		/* stack pointer */#define PC	15		/* program counter */#define REGSZ	16#define TMPREG	FP#define R2REGS	1		/* permit double indexing */extern	int fregs;extern	int maxargs;#define BYTEOFF(x)	((x)&03)#define wdal(k)		(BYTEOFF(k)==0)		/* word align */#define BITOOR(x)	((x)>>3)		/* bit offset to oreg offset *//* * Some macros used in store(): *	just evaluate the arguments, and be done with it... */#define STOARG(p)#define STOFARG(p)#define STOSTARG(p)#define genfcall(a,b)	gencall(a,b)/* * Some short routines that get called an awful lot are actually macros. */#if defined(FORT) || defined(SPRECC)#define	szty(t)	((t) == DOUBLE ? 2 : 1)#else#define	szty(t)	(((t) == DOUBLE || (t) == FLOAT) ? 2 : 1)#endif#define	shltype(o, p) \	((o) == REG || (o) == NAME || (o) == ICON || \	 (o) == OREG || ((o) == UNARY MUL && shumul((p)->in.left)))#define	ncopy(q, p)	((q)->in = (p)->in)#define MYREADER(p) myreader(p)int	optim2();/* This indicates there are no additional special shapes, see match.c */#define special(a, b)	0

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -