blob: c491f0504b9ec36bb7c384a3482c718fcd31feb1 [file] [log] [blame]
The Android Open Source Projecta27d2ba2008-10-21 07:00:00 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28#include <stddef.h>
29#include <string.h>
30
31void* __dso_handle = 0;
32
33int __aeabi_atexit (void *object, void (*destructor) (void *), void *dso_handle)
34{
35 //return __cxa_atexit(destructor, object, dso_handle);
36 return 0;
37}
38
39
40void __aeabi_memcpy8(void *dest, const void *src, size_t n) {
41 memcpy(dest, src, n);
42}
43
44void __aeabi_memcpy4(void *dest, const void *src, size_t n) {
45 memcpy(dest, src, n);
46}
47
48void __aeabi_memcpy(void *dest, const void *src, size_t n) {
49 memcpy(dest, src, n);
50}
51
52
53void __aeabi_memmove8(void *dest, const void *src, size_t n) {
54 memmove(dest, src, n);
55}
56
57void __aeabi_memmove4(void *dest, const void *src, size_t n) {
58 memmove(dest, src, n);
59}
60
61void __aeabi_memmove(void *dest, const void *src, size_t n) {
62 memmove(dest, src, n);
63}
64
65/*
66 * __aeabi_memset has the order of its second and third arguments reversed.
67 * This allows __aeabi_memclr to tail-call __aeabi_memset
68 */
69
70void __aeabi_memset8(void *dest, size_t n, int c) {
71 memset(dest, c, n);
72}
73
74void __aeabi_memset4(void *dest, size_t n, int c) {
75 memset(dest, c, n);
76}
77
78void __aeabi_memset(void *dest, size_t n, int c) {
79 memset(dest, c, n);
80}
81
82
83void __aeabi_memclr8(void *dest, size_t n) {
84 __aeabi_memset8(dest, n, 0);
85}
86
87void __aeabi_memclr4(void *dest, size_t n) {
88 __aeabi_memset4(dest, n, 0);
89}
90
91void __aeabi_memclr(void *dest, size_t n) {
92 __aeabi_memset(dest, n, 0);
93}