diff options
| author | Martin Nowack <m.nowack@imperial.ac.uk> | 2020-11-03 20:17:04 +0000 |
|---|---|---|
| committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2020-11-04 15:14:47 +0000 |
| commit | a4250b231c8527c669c0395db69bd83cf71e9065 (patch) | |
| tree | 6793d01b97d76c04bdc10937e29bf2205d935aca /runtime/FreeStanding | |
| parent | 2f9e24de97ec54ed84180c15a5b6c7654321e354 (diff) | |
| download | klee-a4250b231c8527c669c0395db69bd83cf71e9065.tar.gz | |
Rename FreeStanding to Freestanding where appropriate
Diffstat (limited to 'runtime/FreeStanding')
| -rw-r--r-- | runtime/FreeStanding/CMakeLists.txt | 21 | ||||
| -rw-r--r-- | runtime/FreeStanding/memcmp.c | 53 | ||||
| -rw-r--r-- | runtime/FreeStanding/memcpy.c | 19 | ||||
| -rw-r--r-- | runtime/FreeStanding/memmove.c | 30 | ||||
| -rw-r--r-- | runtime/FreeStanding/memset.c | 17 |
5 files changed, 0 insertions, 140 deletions
diff --git a/runtime/FreeStanding/CMakeLists.txt b/runtime/FreeStanding/CMakeLists.txt deleted file mode 100644 index cf558a7d..00000000 --- a/runtime/FreeStanding/CMakeLists.txt +++ /dev/null @@ -1,21 +0,0 @@ -#===------------------------------------------------------------------------===# -# -# The KLEE Symbolic Virtual Machine -# -# This file is distributed under the University of Illinois Open Source -# License. See LICENSE.TXT for details. -# -#===------------------------------------------------------------------------===# - -set(LIB_PREFIX "RuntimeFreeStanding") -set(SRC_FILES - memcmp.c - memcpy.c - memmove.c - memset.c - ) - -# Build it -include("${CMAKE_SOURCE_DIR}/cmake/compile_bitcode_library.cmake") -prefix_with_path("${SRC_FILES}" "${CMAKE_CURRENT_SOURCE_DIR}/" prefixed_files) -add_bitcode_library_targets("${LIB_PREFIX}" "${prefixed_files}" "" "") \ No newline at end of file diff --git a/runtime/FreeStanding/memcmp.c b/runtime/FreeStanding/memcmp.c deleted file mode 100644 index 566daf48..00000000 --- a/runtime/FreeStanding/memcmp.c +++ /dev/null @@ -1,53 +0,0 @@ -/*- - * Copyright (c) 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Chris Torek. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#include <string.h> - -/* - * Compare memory regions. - */ -int memcmp(const void *s1, const void *s2, size_t n) { - if (n != 0) { - const unsigned char *p1 = s1, *p2 = s2; - - do { - if (*p1++ != *p2++) { - return (*--p1 - *--p2); - } - } while (--n != 0); - } - return (0); -} diff --git a/runtime/FreeStanding/memcpy.c b/runtime/FreeStanding/memcpy.c deleted file mode 100644 index c7c6e6d3..00000000 --- a/runtime/FreeStanding/memcpy.c +++ /dev/null @@ -1,19 +0,0 @@ -/*===-- memcpy.c ----------------------------------------------------------===// -// -// The KLEE Symbolic Virtual Machine -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===*/ - -#include <stdlib.h> - -void *memcpy(void *destaddr, void const *srcaddr, size_t len) { - char *dest = destaddr; - char const *src = srcaddr; - - while (len-- > 0) - *dest++ = *src++; - return destaddr; -} diff --git a/runtime/FreeStanding/memmove.c b/runtime/FreeStanding/memmove.c deleted file mode 100644 index ee0e53ae..00000000 --- a/runtime/FreeStanding/memmove.c +++ /dev/null @@ -1,30 +0,0 @@ -/*===-- memmove.c ---------------------------------------------------------===// -// -// The KLEE Symbolic Virtual Machine -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===*/ - -#include <stdlib.h> - -void *memmove(void *dst, const void *src, size_t count) { - char *a = dst; - const char *b = src; - - if (src == dst) - return dst; - - if (src > dst) { - while (count--) - *a++ = *b++; - } else { - a += count - 1; - b += count - 1; - while (count--) - *a-- = *b--; - } - - return dst; -} diff --git a/runtime/FreeStanding/memset.c b/runtime/FreeStanding/memset.c deleted file mode 100644 index b439001e..00000000 --- a/runtime/FreeStanding/memset.c +++ /dev/null @@ -1,17 +0,0 @@ -/*===-- memset.c ----------------------------------------------------------===// -// -// The KLEE Symbolic Virtual Machine -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===*/ - -#include <stdlib.h> - -void *memset(void *dst, int s, size_t count) { - char *a = dst; - while (count-- > 0) - *a++ = s; - return dst; -} |
