arm.h revision 129222
1129222Scognet/*-
2129222Scognet * Copyright (c) 1991, 1993
3129222Scognet *	The Regents of the University of California.  All rights reserved.
4129222Scognet *
5129222Scognet * Redistribution and use in source and binary forms, with or without
6129222Scognet * modification, are permitted provided that the following conditions
7129222Scognet * are met:
8129222Scognet * 1. Redistributions of source code must retain the above copyright
9129222Scognet *    notice, this list of conditions and the following disclaimer.
10129222Scognet * 2. Redistributions in binary form must reproduce the above copyright
11129222Scognet *    notice, this list of conditions and the following disclaimer in the
12129222Scognet *    documentation and/or other materials provided with the distribution.
13129222Scognet * 3. All advertising materials mentioning features or use of this software
14129222Scognet *    must display the following acknowledgement:
15129222Scognet *	This product includes software developed by the University of
16129222Scognet *	California, Berkeley and its contributors.
17129222Scognet * 4. Neither the name of the University nor the names of its contributors
18129222Scognet *    may be used to endorse or promote products derived from this software
19129222Scognet *    without specific prior written permission.
20129222Scognet *
21129222Scognet * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22129222Scognet * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23129222Scognet * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24129222Scognet * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25129222Scognet * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26129222Scognet * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27129222Scognet * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28129222Scognet * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29129222Scognet * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30129222Scognet * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31129222Scognet * SUCH DAMAGE.
32129222Scognet *
33129222Scognet *	@(#)i386.h	8.1 (Berkeley) 6/6/93
34129222Scognet * $FreeBSD: head/usr.bin/gprof/arm.h 129222 2004-05-14 13:44:04Z cognet $
35129222Scognet */
36129222Scognet
37129222Scognet    /*
38129222Scognet     *	offset (in bytes) of the code from the entry address of a routine.
39129222Scognet     *	(see asgnsamples for use and explanation.)
40129222Scognet     */
41129222Scognet#define OFFSET_OF_CODE	0
42129222Scognet
43129222Scognetenum opermodes { dummy };
44129222Scognettypedef enum opermodes	operandenum;
45