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