]> git.proxmox.com Git - mirror_edk2.git/blob - CryptoPkg/Library/IntrinsicLib/MemoryIntrinsics.c
e095f9aa0dd64c20a6b96a190f8ee14f9b492780
[mirror_edk2.git] / CryptoPkg / Library / IntrinsicLib / MemoryIntrinsics.c
1 /** @file
2 Intrinsic Memory Routines Wrapper Implementation for OpenSSL-based
3 Cryptographic Library.
4
5 Copyright (c) 2010 - 2017, Intel Corporation. All rights reserved.<BR>
6 This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15
16 #include <Base.h>
17 #include <Library/BaseMemoryLib.h>
18 #include <Library/BaseLib.h>
19
20 typedef UINTN size_t;
21
22 /* OpenSSL will use floating point support, and C compiler produces the _fltused
23 symbol by default. Simply define this symbol here to satisfy the linker. */
24 int _fltused = 1;
25
26 /* Sets buffers to a specified character */
27 void * memset (void *dest, int ch, size_t count)
28 {
29 //
30 // NOTE: Here we use one base implementation for memset, instead of the direct
31 // optimized SetMem() wrapper. Because the IntrinsicLib has to be built
32 // without whole program optimization option, and there will be some
33 // potential register usage errors when calling other optimized codes.
34 //
35
36 //
37 // Declare the local variables that actually move the data elements as
38 // volatile to prevent the optimizer from replacing this function with
39 // the intrinsic memset()
40 //
41 volatile UINT8 *Pointer;
42
43 Pointer = (UINT8 *)dest;
44 while (count-- != 0) {
45 *(Pointer++) = (UINT8)ch;
46 }
47
48 return dest;
49 }
50
51 /* Compare bytes in two buffers. */
52 int memcmp (const void *buf1, const void *buf2, size_t count)
53 {
54 return (int)CompareMem(buf1, buf2, count);
55 }
56
57 int strcmp (const char *s1, const char *s2)
58 {
59 return (int)AsciiStrCmp(s1, s2);
60 }