blob: 07a4d08a5964656206230fbfcaf4b9f170d60b0a [file] [log] [blame]
Uwe Hermannc52761b2008-03-20 00:02:07 +00001/*
2 * This file is part of the libpayload project.
3 *
4 * It has originally been taken from the HelenOS project
5 * (http://www.helenos.eu), and slightly modified for our purposes.
6 *
7 * Copyright (c) 2005 Martin Decky
8 * All rights reserved.
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 *
14 * - Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * - Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * - The name of the author may not be used to endorse or promote products
20 * derived from this software without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
34#include <libpayload.h>
35
Ronald G. Minnichc1ee8642013-02-14 14:36:46 -080036static void *default_memset(void *s, int c, size_t n)
Uwe Hermannc52761b2008-03-20 00:02:07 +000037{
Julius Wernerdbadb1d2014-06-12 10:28:57 -070038 size_t i;
39 void *ret = s;
40 unsigned long w = c & 0xff;
Uwe Hermannc52761b2008-03-20 00:02:07 +000041
Julius Wernerdbadb1d2014-06-12 10:28:57 -070042 for (i = 1; i < sizeof(unsigned long); i <<= 1)
43 w = (w << (i * 8)) | w;
Uwe Hermannc52761b2008-03-20 00:02:07 +000044
Julius Wernerdbadb1d2014-06-12 10:28:57 -070045 for (i = 0; i < n / sizeof(unsigned long); i++)
46 ((unsigned long *)s)[i] = w;
47
48 s += i * sizeof(unsigned long);
49
50 for (i = 0; i < n % sizeof(unsigned long); i++)
51 ((u8 *)s)[i] = (u8)c;
52
53 return ret;
Uwe Hermannc52761b2008-03-20 00:02:07 +000054}
55
Ronald G. Minnichc1ee8642013-02-14 14:36:46 -080056void *memset(void *s, int c, size_t n)
57 __attribute__((weak, alias("default_memset")));
Gabe Blackc3247942012-09-27 17:39:41 -070058
Ronald G. Minnichc1ee8642013-02-14 14:36:46 -080059static void *default_memcpy(void *dst, const void *src, size_t n)
Uwe Hermannc52761b2008-03-20 00:02:07 +000060{
Julius Wernerdbadb1d2014-06-12 10:28:57 -070061 size_t i;
Stefan Reinauer989c1782008-08-19 19:18:58 +000062 void *ret = dst;
Uwe Hermannc52761b2008-03-20 00:02:07 +000063
Jordan Crouse96f57ae2008-08-19 16:55:05 +000064 for(i = 0; i < n / sizeof(unsigned long); i++)
Julius Wernerdbadb1d2014-06-12 10:28:57 -070065 ((unsigned long *)dst)[i] = ((unsigned long *)src)[i];
66
67 src += i * sizeof(unsigned long);
68 dst += i * sizeof(unsigned long);
69
70 for(i = 0; i < n % sizeof(unsigned long); i++)
71 ((u8 *)dst)[i] = ((u8 *)src)[i];
Uwe Hermannc52761b2008-03-20 00:02:07 +000072
Stefan Reinauer989c1782008-08-19 19:18:58 +000073 return ret;
Uwe Hermannc52761b2008-03-20 00:02:07 +000074}
75
Ronald G. Minnichc1ee8642013-02-14 14:36:46 -080076void *memcpy(void *dst, const void *src, size_t n)
77 __attribute__((weak, alias("default_memcpy")));
Gabe Blackc3247942012-09-27 17:39:41 -070078
Ronald G. Minnichc1ee8642013-02-14 14:36:46 -080079static void *default_memmove(void *dst, const void *src, size_t n)
Uwe Hermannc52761b2008-03-20 00:02:07 +000080{
Julius Wernerdbadb1d2014-06-12 10:28:57 -070081 size_t i, offs;
Uwe Hermannc52761b2008-03-20 00:02:07 +000082
83 if (src > dst)
84 return memcpy(dst, src, n);
85
Jordan Crouse96f57ae2008-08-19 16:55:05 +000086 offs = n - (n % sizeof(unsigned long));
87
88 for (i = (n % sizeof(unsigned long)) - 1; i >= 0; i--)
Julius Wernerdbadb1d2014-06-12 10:28:57 -070089 ((u8 *)dst)[i + offs] = ((u8 *)src)[i + offs];
Uwe Hermannc52761b2008-03-20 00:02:07 +000090
91 for (i = n / sizeof(unsigned long) - 1; i >= 0; i--)
92 ((unsigned long *)dst)[i] = ((unsigned long *)src)[i];
93
Jordan Crouse96f57ae2008-08-19 16:55:05 +000094 return dst;
Uwe Hermannc52761b2008-03-20 00:02:07 +000095}
96
Ronald G. Minnichc1ee8642013-02-14 14:36:46 -080097void *memmove(void *dst, const void *src, size_t n)
98 __attribute__((weak, alias("default_memmove")));
99
Uwe Hermannc52761b2008-03-20 00:02:07 +0000100/**
101 * Compare two memory areas.
102 *
Uwe Hermann6a441bf2008-03-20 19:54:59 +0000103 * @param s1 Pointer to the first area to compare.
104 * @param s2 Pointer to the second area to compare.
Julius Wernerdbadb1d2014-06-12 10:28:57 -0700105 * @param n Size of the first area in bytes (both must have the same length).
106 * @return If n is 0, return zero. Otherwise, return a value less than, equal
107 * to, or greater than zero if s1 is found less than, equal to, or
108 * greater than s2 respectively.
Uwe Hermannc52761b2008-03-20 00:02:07 +0000109 */
Gabe Blackc3247942012-09-27 17:39:41 -0700110
Julius Wernerdbadb1d2014-06-12 10:28:57 -0700111static int default_memcmp(const void *s1, const void *s2, size_t n)
Uwe Hermannc52761b2008-03-20 00:02:07 +0000112{
Julius Wernerdbadb1d2014-06-12 10:28:57 -0700113 size_t i;
114
115 for (i = 0; i < n / sizeof(unsigned long); i++)
116 if (((unsigned long *)s1)[i] != ((unsigned long *)s2)[i])
117 break; /* fall through to find differing byte */
118
119 for (i *= sizeof(unsigned long); i < n; i++)
120 if (((u8 *)s1)[i] != ((u8 *)s2)[i])
121 return ((u8 *)s1)[i] - ((u8 *)s2)[i];
122
123 return 0;
Uwe Hermannc52761b2008-03-20 00:02:07 +0000124}
Ronald G. Minnichc1ee8642013-02-14 14:36:46 -0800125
Julius Wernerdbadb1d2014-06-12 10:28:57 -0700126int memcmp(const void *s1, const void *s2, size_t n)
Ronald G. Minnichc1ee8642013-02-14 14:36:46 -0800127 __attribute__((weak, alias("default_memcmp")));