powerpc.h revision 153819
1153819Sgrehan/*-
2153819Sgrehan * Copyright (c) 1991, 1993
3153819Sgrehan *	The Regents of the University of California.  All rights reserved.
4153819Sgrehan *
5153819Sgrehan * Redistribution and use in source and binary forms, with or without
6153819Sgrehan * modification, are permitted provided that the following conditions
7153819Sgrehan * are met:
8153819Sgrehan * 1. Redistributions of source code must retain the above copyright
9153819Sgrehan *    notice, this list of conditions and the following disclaimer.
10153819Sgrehan * 2. Redistributions in binary form must reproduce the above copyright
11153819Sgrehan *    notice, this list of conditions and the following disclaimer in the
12153819Sgrehan *    documentation and/or other materials provided with the distribution.
13153819Sgrehan * 3. All advertising materials mentioning features or use of this software
14153819Sgrehan *    must display the following acknowledgement:
15153819Sgrehan *	This product includes software developed by the University of
16153819Sgrehan *	California, Berkeley and its contributors.
17153819Sgrehan * 4. Neither the name of the University nor the names of its contributors
18153819Sgrehan *    may be used to endorse or promote products derived from this software
19153819Sgrehan *    without specific prior written permission.
20153819Sgrehan *
21153819Sgrehan * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22153819Sgrehan * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23153819Sgrehan * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24153819Sgrehan * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25153819Sgrehan * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26153819Sgrehan * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27153819Sgrehan * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28153819Sgrehan * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29153819Sgrehan * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30153819Sgrehan * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31153819Sgrehan * SUCH DAMAGE.
32153819Sgrehan *
33153819Sgrehan *	@(#)i386.h	8.1 (Berkeley) 6/6/93
34153819Sgrehan * $FreeBSD: head/usr.bin/gprof/powerpc.h 153819 2005-12-29 04:23:54Z grehan $
35153819Sgrehan */
36153819Sgrehan
37153819Sgrehan    /*
38153819Sgrehan     *	offset (in bytes) of the code from the entry address of a routine.
39153819Sgrehan     *	(see asgnsamples for use and explanation.)
40153819Sgrehan     */
41153819Sgrehan#define OFFSET_OF_CODE	0
42153819Sgrehan
43153819Sgrehanenum opermodes { dummy };
44153819Sgrehantypedef enum opermodes	operandenum;
45