Elliott Hughes | aefe999 | 2023-11-08 12:04:41 -0800 | [diff] [blame] | 1 | /*- |
| 2 | * SPDX-License-Identifier: BSD-3-Clause |
| 3 | * |
| 4 | * Copyright (c) 1990, 1993 |
| 5 | * The Regents of the University of California. All rights reserved. |
| 6 | * |
| 7 | * This code is derived from software contributed to Berkeley by |
| 8 | * Mike Hibler and Chris Torek. |
| 9 | * |
| 10 | * Redistribution and use in source and binary forms, with or without |
| 11 | * modification, are permitted provided that the following conditions |
| 12 | * are met: |
| 13 | * 1. Redistributions of source code must retain the above copyright |
| 14 | * notice, this list of conditions and the following disclaimer. |
| 15 | * 2. Redistributions in binary form must reproduce the above copyright |
| 16 | * notice, this list of conditions and the following disclaimer in the |
| 17 | * documentation and/or other materials provided with the distribution. |
| 18 | * 3. Neither the name of the University nor the names of its contributors |
| 19 | * may be used to endorse or promote products derived from this software |
| 20 | * without specific prior written permission. |
| 21 | * |
| 22 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 23 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 24 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 25 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 26 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 27 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 28 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 29 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 30 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 31 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 32 | * SUCH DAMAGE. |
| 33 | */ |
| 34 | |
| 35 | #include <sys/types.h> |
| 36 | |
| 37 | #include <limits.h> |
| 38 | |
| 39 | #define wsize sizeof(u_long) |
| 40 | #define wmask (wsize - 1) |
| 41 | |
| 42 | #include <string.h> |
| 43 | |
| 44 | #define RETURN return (dst0) |
| 45 | #define VAL c0 |
| 46 | #define WIDEVAL c |
| 47 | |
| 48 | void * |
| 49 | memset_gc(void *dst0, int c0, size_t length) |
| 50 | { |
| 51 | size_t t; |
| 52 | u_long c; |
| 53 | u_char *dst; |
| 54 | |
| 55 | dst = dst0; |
| 56 | /* |
| 57 | * If not enough words, just fill bytes. A length >= 2 words |
| 58 | * guarantees that at least one of them is `complete' after |
| 59 | * any necessary alignment. For instance: |
| 60 | * |
| 61 | * |-----------|-----------|-----------| |
| 62 | * |00|01|02|03|04|05|06|07|08|09|0A|00| |
| 63 | * ^---------------------^ |
| 64 | * dst dst+length-1 |
| 65 | * |
| 66 | * but we use a minimum of 3 here since the overhead of the code |
| 67 | * to do word writes is substantial. |
| 68 | * |
| 69 | * TODO: This threshold might not be sensible for 64-bit u_long. |
| 70 | * We should benchmark and revisit this decision. |
| 71 | */ |
| 72 | if (length < 3 * wsize) { |
| 73 | while (length != 0) { |
| 74 | *dst++ = VAL; |
| 75 | --length; |
| 76 | } |
| 77 | RETURN; |
| 78 | } |
| 79 | |
| 80 | if ((c = (u_char)c0) != 0) { /* Fill the word. */ |
| 81 | c = (c << 8) | c; /* u_long is 16 bits. */ |
| 82 | c = (c << 16) | c; /* u_long is 32 bits. */ |
| 83 | c = (c << 32) | c; /* u_long is 64 bits. */ |
| 84 | } |
| 85 | /* Align destination by filling in bytes. */ |
| 86 | if ((t = (long)dst & wmask) != 0) { |
| 87 | t = wsize - t; |
| 88 | length -= t; |
| 89 | do { |
| 90 | *dst++ = VAL; |
| 91 | } while (--t != 0); |
| 92 | } |
| 93 | |
| 94 | /* Fill words. Length was >= 2*words so we know t >= 1 here. */ |
| 95 | t = length / wsize; |
| 96 | do { |
| 97 | *(u_long *)(void *)dst = WIDEVAL; |
| 98 | dst += wsize; |
| 99 | } while (--t != 0); |
| 100 | |
| 101 | /* Mop up trailing bytes, if any. */ |
| 102 | t = length & wmask; |
| 103 | if (t != 0) |
| 104 | do { |
| 105 | *dst++ = VAL; |
| 106 | } while (--t != 0); |
| 107 | RETURN; |
| 108 | } |