]>
git.saurik.com Git - apple/xnu.git/blob - EXTERNAL_HEADERS/architecture/ppc/reg_help.h
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
23 * @APPLE_LICENSE_HEADER_END@
25 /* Copyright (c) 1996 NeXT Software, Inc. All rights reserved.
27 * File: architecture/ppc/reg_help.h
28 * Author: Doug Mitchell, NeXT Computer, Inc.
30 * m98k-specific macros and inlines for defining machine registers.
33 * 05-Nov-92 Doug Mitchell at NeXT
36 * 29-Dec-96 Umesh Vaishampayan (umeshv@NeXT.com)
37 * Ported from m98k. Removed dependency on nrw directory.
38 * Merged code from architecture/nrw/reg_help.h.
39 * Moved Register Usage #defines from asm_help.h in here.
42 #ifndef _ARCH_PPC_REG_HELP_H_
43 #define _ARCH_PPC_REG_HELP_H_
45 #if defined(__ASSEMBLER__)
47 * GRF Register Usage Aliases
49 #define zt r0 // architecturally 0 for mem refs only!
50 // real reg other inst, caller-saved
51 #define sp r1 // stack pointer, callee-saved
52 #define toc r2 // tbl of contents, callee-saved
53 #define a0 r3 // arg 0, return value 0, caller saved
54 #define a1 r4 // arg 1, return value 1, caller saved
60 #define a7 r10 // arg 7, return value 7, caller saved
61 #define ep r11 // environment ptr, caller saved
62 #define at r12 // assembler temp, caller saved
63 #define s17 r13 // callee-saved 17
79 #define s1 r29 // ....
80 #define s0 r30 // callee-saved 0
81 #define fp r31 // frame-pointer, callee-saved
84 * Conversion of GRF aliases to register numbers
86 #define GRF_ZT 0 // architecturally 0 for mem refs only!
87 // real reg other inst, caller-saved
88 #define GRF_SP 1 // stack pointer, callee-saved
89 #define GRF_TOC 2 // tbl of contents, callee-saved
90 #define GRF_A0 3 // arg 0, return value 0, caller saved
91 #define GRF_A1 4 // arg 1, return value 1, caller saved
92 #define GRF_A2 5 // ....
97 #define GRF_A7 10 // arg 7, return value 7, caller saved
98 #define GRF_EP 11 // environment ptr, caller saved
99 #define GRF_AT 12 // assembler temp, caller saved
100 #define GRF_S17 13 // callee-saved 17
116 #define GRF_S1 29 // ....
117 #define GRF_S0 30 // callee-saved 0
118 #define GRF_FP 31 // frame pointer, callee-saved
123 #define ft0 f0 // scratch reg, caller-saved
124 #define fa0 f1 // fp arg 0, return 0, caller-saved
125 #define fa1 f2 // fp arg 1, caller-saved
126 #define fa2 f3 // fp arg 2, caller-saved
136 #define fa12 f13 // fp arg 12, caller-saved
137 #define fs17 f14 // callee-saved 17
154 #define fs0 f31 // callee-saved 0
157 * Conversion of FPF aliases to register numbers
159 #define FPF_FT0 0 // scratch reg, caller-saved
160 #define FPF_FA0 1 // fp arg 0, return 0, caller-saved
161 #define FPF_FA1 2 // fp arg 1, caller-saved
162 #define FPF_FA2 3 // fp arg 2, caller-saved
172 #define FPF_FA12 13 // fp arg 12, caller-saved
173 #define FPF_FS17 14 // callee-saved 17
190 #define FPF_FS0 31 // callee-saved 0
192 #endif /* __ASSEMBLER__ */
195 /* Bitfield definition aid */
196 #define BITS_WIDTH(msb, lsb) ((msb)-(lsb)+1)
197 #define BIT_WIDTH(pos) (1) /* mostly to record the position */
200 #define MKMASK(width, offset) (((unsigned)-1)>>(32-(width))<<(offset))
201 #define BITSMASK(msb, lsb) MKMASK(BITS_WIDTH(msb, lsb), lsb & 0x1f)
202 #define BITMASK(pos) MKMASK(BIT_WIDTH(pos), pos & 0x1f)
204 /* Register addresses */
206 # define REG_ADDR(type, addr) (addr)
207 #else /* ! __ASSEMBLER__ */
208 # define REG_ADDR(type, addr) (*(volatile type *)(addr))
209 #endif /* __ASSEMBLER__ */
211 /* Cast a register to be an unsigned */
212 /* CAUTION : non naturally aligned foo can result into alignment traps
215 #define CONTENTS(foo) (*(unsigned *) &(foo))
217 /* STRINGIFY -- perform all possible substitutions, then stringify */
218 #define __STR(x) #x /* just a helper macro */
219 #define STRINGIFY(x) __STR(x)
222 * Stack pointer must always be a multiple of 16
224 #define STACK_INCR 16
225 #define ROUND_FRAME(x) ((((unsigned)(x)) + STACK_INCR - 1) & ~(STACK_INCR-1))
227 #endif /* _ARCH_PPC_REG_HELP_H_ */