]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/IA32_flat_GCC_Galileo_Gen_2/Support_Files/freestanding_functions.c
Update version numbers in preparation for a new release.
[freertos] / FreeRTOS / Demo / IA32_flat_GCC_Galileo_Gen_2 / Support_Files / freestanding_functions.c
1 /*\r
2  * FreeRTOS Kernel V10.1.0\r
3  * Copyright (C) 2017 Amazon.com, Inc. or its affiliates.  All Rights Reserved.\r
4  *\r
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of\r
6  * this software and associated documentation files (the "Software"), to deal in\r
7  * the Software without restriction, including without limitation the rights to\r
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r
9  * the Software, and to permit persons to whom the Software is furnished to do so,\r
10  * subject to the following conditions:\r
11  *\r
12  * The above copyright notice and this permission notice shall be included in all\r
13  * copies or substantial portions of the Software.\r
14  *\r
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r
17  * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r
18  * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r
19  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r
20  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
21  *\r
22  * http://www.FreeRTOS.org\r
23  * http://aws.amazon.com/freertos\r
24  *\r
25  * 1 tab == 4 spaces!\r
26  */\r
27 \r
28 \r
29 /*\r
30  * The library functions not provided by libgcc for freestanding environments.\r
31  * The implementation of the functions in this file have made NO attempt\r
32  * whatsoever to be optimised!\r
33  */\r
34 \r
35 #warning The functions in this file are very basic, and not optimised.\r
36 \r
37 #include <stddef.h>\r
38 \r
39 /*-----------------------------------------------------------*/\r
40 \r
41 void *memcpy( void *pvDest, const void *pvSource, size_t xBytes )\r
42 {\r
43 /* The compiler used during development seems to err unless these volatiles are\r
44 included at -O3 optimisation.  */\r
45 volatile unsigned char *pcDest = ( volatile unsigned char * ) pvDest, *pcSource = ( volatile unsigned char * ) pvSource;\r
46 size_t x;\r
47 \r
48         /* Extremely crude standard library implementations in lieu of having a C\r
49         library. */\r
50         if( pvDest != pvSource )\r
51         {\r
52                 for( x = 0; x < xBytes; x++ )\r
53                 {\r
54                         pcDest[ x ] = pcSource[ x ];\r
55                 }\r
56         }\r
57 \r
58         return pvDest;\r
59 }\r
60 /*-----------------------------------------------------------*/\r
61 \r
62 void *memset( void *pvDest, int iValue, size_t xBytes )\r
63 {\r
64 /* The compiler used during development seems to err unless these volatiles are\r
65 included at -O3 optimisation.  */\r
66 volatile unsigned char * volatile pcDest = ( volatile unsigned char * volatile ) pvDest;\r
67 volatile size_t x;\r
68 \r
69         /* Extremely crude standard library implementations in lieu of having a C\r
70         library. */\r
71         for( x = 0; x < xBytes; x++ )\r
72         {\r
73                 pcDest[ x ] = ( unsigned char ) iValue;\r
74         }\r
75 \r
76         return pvDest;\r
77 }\r
78 /*-----------------------------------------------------------*/\r
79 \r
80 int memcmp( const void *pvMem1, const void *pvMem2, unsigned long ulBytes )\r
81 {\r
82 const volatile unsigned char *pucMem1 = pvMem1, *pucMem2 = pvMem2;\r
83 register unsigned long x;\r
84 \r
85         /* Extremely crude standard library implementations in lieu of having a C\r
86         library. */\r
87     for( x = 0; x < ulBytes; x++ )\r
88     {\r
89         if( pucMem1[ x ] != pucMem2[ x ] )\r
90         {\r
91             break;\r
92         }\r
93     }\r
94 \r
95     return ulBytes - x;\r
96 }\r
97 /*-----------------------------------------------------------*/\r
98 \r
99 int strcmp( const char *pcString1, const char *pcString2 )\r
100 {\r
101 volatile int iReturn, iIndex = 0;\r
102 \r
103         /* Extremely crude standard library implementations in lieu of having a C\r
104         library. */\r
105 \r
106         while( ( pcString1[ iIndex ] != 0x00 ) && ( pcString2[ iIndex ] != 0x00 ) )\r
107         {\r
108                 iIndex++;\r
109         }\r
110 \r
111         if( ( pcString1[ iIndex ] == 0x00 ) && ( pcString2[ iIndex ] == 0x00 ) )\r
112         {\r
113                 iReturn = 0;\r
114         }\r
115         else\r
116         {\r
117                 iReturn = ~0;\r
118         }\r
119 \r
120         return iReturn;\r
121 }\r
122 \r
123 \r