xref: /csrg-svn/usr.bin/gprof/sparc.h (revision 54807)
1*54807Storek /*-
2*54807Storek  * Copyright (c) 1992 The Regents of the University of California.
3*54807Storek  * All rights reserved.
4*54807Storek  *
5*54807Storek  * This software was developed by the Computer Systems Engineering group
6*54807Storek  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
7*54807Storek  * contributed to Berkeley.
8*54807Storek  *
9*54807Storek  * %sccs.include.redist.c%
10*54807Storek  *
11*54807Storek  *	@(#)sparc.h	5.1 (Berkeley) 07/08/92
12*54807Storek  */
13*54807Storek 
14*54807Storek /*
15*54807Storek  * offset (in bytes) of the code from the entry address of a routine.
16*54807Storek  * (see asgnsamples for use and explanation.)
17*54807Storek  */
18*54807Storek #define OFFSET_OF_CODE	0
19*54807Storek #define	UNITS_TO_CODE	(OFFSET_OF_CODE / sizeof(UNIT))
20*54807Storek 
21*54807Storek enum opermodes { dummy };
22*54807Storek typedef enum opermodes	operandenum;
23