2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * This module only exists because I don't know how to get the silly C compiler
24 * and/or linker to generate data areas that are aligned on a particular boundary.
25 * And, this stuff is in the V=R mapped area.
27 * Do the following for each:
29 * .size name,size-in-bytes
30 * .type area-name,@object
34 * .set .,.+size-in-bytes
36 * So long as I'm being pedantic, always make sure that the most aligned,
37 * i.e., the largest power-of-twos, are first and then descend to the smallest.
38 * If you don't, and you are not careful and hand calculate, you'll end up
39 * with holes and waste storage. I hate C.
41 * Define the sizes in genassym.c
48 #include <ppc/proc_reg.h>
52 ; NOTE: We need this only if PREEMPTSTACK is set to non-zero in hw_lock.
53 ; Make sure they are set to the same thing
55 #define PREEMPTSTACK 0
59 /* 1024-byte aligned areas */
61 .globl EXT(per_proc_info)
63 EXT(per_proc_info): ; Per processor data area
64 .fill (ppSize*NCPUS)/4,4,0 ; (filled with 0s)
66 /* 512-byte aligned areas */
68 .globl EXT(kernel_pmap_store) ; This is the kernel_pmap
70 EXT(kernel_pmap_store):
74 /* 256-byte aligned areas */
76 .globl EXT(GratefulDebWork)
78 EXT(GratefulDebWork): ; Enough for 2 rows of 8 chars of 16-pixel wide 32-bit pixels and a 256 byte work area
86 .globl EXT(hw_counts) ; Counter banks per processor
94 ; NOTE: We need this only if PREEMPTSTACK is set to non-zero in hw_lock.
97 .globl EXT(DBGpreempt) ; preemption debug stack
100 .set .,.+(NCPUS*PREEMPTSTACK*16)
104 /* 128-byte aligned areas */
106 .globl EXT(saveanchor)
119 .long EXT(traceTableBeg) ; The next trace entry to use
121 /* .long 0x02000000 */ /* Only alignment exceptions enabled */
122 .long 0xFFFFFFFF /* All enabled */
123 /* .long 0xFBBFFFFF */ /* EXT and DEC disabled */
124 /* .long 0xFFBFFFFF */ /* DEC disabled */
126 .long 0x00000000 ; All disabled on non-debug systems
128 .long EXT(traceTableBeg) ; Start of the trace table
129 .long EXT(traceTableEnd) ; End (wrap point) of the trace
130 .long 0 ; Saved mask while in debugger
142 .globl EXT(free_mappings)
148 .globl EXT(syncClkSpot)
172 /* 32-byte aligned areas */
181 #include <ppc/hexfont.h>
183 .globl EXT(QNaNbarbarian)
187 .long 0x7FFFDEAD /* This is a quiet not-a-number which is a "known" debug value */
188 .long 0x7FFFDEAD /* This is a quiet not-a-number which is a "known" debug value */
189 .long 0x7FFFDEAD /* This is a quiet not-a-number which is a "known" debug value */
190 .long 0x7FFFDEAD /* This is a quiet not-a-number which is a "known" debug value */
192 .long 0x7FFFDEAD /* This is a quiet not-a-number which is a "known" debug value */
193 .long 0x7FFFDEAD /* This is a quiet not-a-number which is a "known" debug value */
194 .long 0x7FFFDEAD /* This is a quiet not-a-number which is a "known" debug value */
195 .long 0x7FFFDEAD /* This is a quiet not-a-number which is a "known" debug value */
210 /* 8-byte aligned areas */
212 .globl EXT(FloatInit)
216 .long 0xC24BC195 /* Initial value */
217 .long 0x87859393 /* of floating point registers */
218 .long 0xE681A2C8 /* and others */
221 .globl EXT(DebugWork)