2 * Copyright (c) 2003 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
30 #include <sys/appleapiopts.h>
32 #include <machine/cpu_capabilities.h>
33 #include <machine/commpage.h>
38 * WARNING: this code is written for 32-bit mode, and ported by the kernel if necessary
39 * to 64-bit mode for use in the 64-bit commpage. This "port" consists of the following
40 * simple transformations:
41 * - all word compares are changed to doubleword
42 * - all "srwi[.]" opcodes are changed to "srdi[.]"
43 * Nothing else is done. For this to work, the following rules must be
45 * - do not use carry or overflow
46 * - only use record mode if you are sure the results are mode-invariant
47 * for example, all "andi." and almost all "rlwinm." are fine
48 * - do not use "slwi", "slw", or "srw"
49 * An imaginative programmer could break the porting model in other ways, but the above
50 * are the most likely problem areas. It is perhaps surprising how well in practice
51 * this simple method works.
54 // **********************
55 // * B Z E R O _ 1 2 8 *
56 // **********************
58 // For 64-bit processors with a 128-byte cache line.
62 // r3 = original ptr, not changed since memset returns it
63 // r4 = count of bytes to set
64 // r9 = working operand ptr
65 // WARNING: We do not touch r2 and r10-r12, which some callers depend on.
68 bzero_128: // void bzero(void *b, size_t len);
69 cmplwi cr7,r4,128 // too short for DCBZ128?
71 neg r5,r3 // start to compute #bytes to align
72 mr r9,r3 // make copy of operand ptr (can't change r3)
73 blt cr7,Ltail // length < 128, too short for DCBZ
75 // At least 128 bytes long, so compute alignment and #cache blocks.
77 andi. r5,r5,0x7F // r5 <- #bytes to 128-byte align
78 sub r4,r4,r5 // adjust length
79 srwi r8,r4,7 // r8 <- 128-byte chunks
80 rlwinm r4,r4,0,0x7F // mask length down to remaining bytes
81 mtctr r8 // set up loop count
82 beq Ldcbz // skip if already aligned (r8!=0)
86 mtcrf 0x01,r5 // start to move #bytes to align to cr6 and cr7
87 cmpwi cr1,r8,0 // any 128-byte cache lines to 0?
102 bf 28,4f // doubleword?
106 bf 27,5f // quadword?
111 bf 26,6f // 32-byte chunk?
118 bf 25,7f // 64-byte chunk?
129 beq cr1,Ltail // no chunks to dcbz128
131 // Loop doing 128-byte version of DCBZ instruction.
132 // NB: if the memory is cache-inhibited, the kernel will clear cr7
133 // when it emulates the alignment exception. Eventually, we may want
134 // to check for this case.
137 dcbz128 0,r9 // zero another 32 bytes
141 // Store trailing bytes.
147 srwi. r5,r4,4 // r5 <- 16-byte chunks to 0
148 mtcrf 0x01,r4 // remaining byte count to cr7
150 beq 2f // skip if no 16-byte chunks
151 1: // loop over 16-byte chunks
157 bf 28,4f // 8-byte chunk?
165 bf 30,6f // halfword?
173 COMMPAGE_DESCRIPTOR(bzero_128,_COMM_PAGE_BZERO,kCache128+k64Bit,0, \
174 kCommPageMTCRF+kCommPageBoth+kPort32to64)