| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2018-05-17 16:06:57 +07:00
										 |  |  |  * FreeRTOS Kernel V10.0.1 | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  |  * Copyright (C) 2017 Amazon.com, Inc. or its affiliates.  All Rights Reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Permission is hereby granted, free of charge, to any person obtaining a copy of | 
					
						
							|  |  |  |  * this software and associated documentation files (the "Software"), to deal in | 
					
						
							|  |  |  |  * the Software without restriction, including without limitation the rights to | 
					
						
							|  |  |  |  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | 
					
						
							|  |  |  |  * the Software, and to permit persons to whom the Software is furnished to do so, | 
					
						
							|  |  |  |  * subject to the following conditions: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The above copyright notice and this permission notice shall be included in all | 
					
						
							| 
									
										
										
										
											2018-05-17 16:06:57 +07:00
										 |  |  |  * copies or substantial portions of the Software. | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
					
						
							|  |  |  |  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | 
					
						
							|  |  |  |  * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | 
					
						
							|  |  |  |  * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | 
					
						
							|  |  |  |  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | 
					
						
							|  |  |  |  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * http://www.FreeRTOS.org
 | 
					
						
							|  |  |  |  * http://aws.amazon.com/freertos
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 1 tab == 4 spaces! | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  |  * A sample implementation of pvPortMalloc() and vPortFree() that combines | 
					
						
							|  |  |  |  * (coalescences) adjacent memory blocks as they are freed, and in so doing | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  |  * limits memory fragmentation. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  |  * See heap_1.c, heap_2.c and heap_3.c for alternative implementations, and the | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  |  * memory management pages of http://www.FreeRTOS.org for more information.
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include <stdlib.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining
 | 
					
						
							|  |  |  | all the API functions to use the MPU wrappers.  That should only be done when | 
					
						
							|  |  |  | task.h is included from an application file. */ | 
					
						
							|  |  |  | #define MPU_WRAPPERS_INCLUDED_FROM_API_FILE
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "FreeRTOS.h"
 | 
					
						
							|  |  |  | #include "task.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | #if( configSUPPORT_DYNAMIC_ALLOCATION == 0 )
 | 
					
						
							|  |  |  | 	#error This file must not be used if configSUPPORT_DYNAMIC_ALLOCATION is 0
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | /* Block sizes must not get too small. */ | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | #define heapMINIMUM_BLOCK_SIZE	( ( size_t ) ( xHeapStructSize << 1 ) )
 | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | /* Assumes 8bit bytes! */ | 
					
						
							|  |  |  | #define heapBITS_PER_BYTE		( ( size_t ) 8 )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Allocate the memory for the heap. */ | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | #if( configAPPLICATION_ALLOCATED_HEAP == 1 )
 | 
					
						
							|  |  |  | 	/* The application writer has already defined the array used for the RTOS
 | 
					
						
							|  |  |  | 	heap - probably so it can be placed in a special segment or address. */ | 
					
						
							|  |  |  | 	extern uint8_t ucHeap[ configTOTAL_HEAP_SIZE ]; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	static uint8_t ucHeap[ configTOTAL_HEAP_SIZE ]; | 
					
						
							|  |  |  | #endif /* configAPPLICATION_ALLOCATED_HEAP */
 | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Define the linked list structure.  This is used to link free blocks in order
 | 
					
						
							|  |  |  | of their memory address. */ | 
					
						
							|  |  |  | typedef struct A_BLOCK_LINK | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct A_BLOCK_LINK *pxNextFreeBlock;	/*<< The next free block in the list. */ | 
					
						
							|  |  |  | 	size_t xBlockSize;						/*<< The size of the free block. */ | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | } BlockLink_t; | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*-----------------------------------------------------------*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  |  * Inserts a block of memory that is being freed into the correct position in | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  |  * the list of free memory blocks.  The block being freed will be merged with | 
					
						
							|  |  |  |  * the block in front it and/or the block behind it if the memory blocks are | 
					
						
							|  |  |  |  * adjacent to each other. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | static void prvInsertBlockIntoFreeList( BlockLink_t *pxBlockToInsert ); | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Called automatically to setup the required heap structures the first time | 
					
						
							|  |  |  |  * pvPortMalloc() is called. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void prvHeapInit( void ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*-----------------------------------------------------------*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* The size of the structure placed at the beginning of each allocated memory
 | 
					
						
							|  |  |  | block must by correctly byte aligned. */ | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | static const size_t xHeapStructSize	= ( sizeof( BlockLink_t ) + ( ( size_t ) ( portBYTE_ALIGNMENT - 1 ) ) ) & ~( ( size_t ) portBYTE_ALIGNMENT_MASK ); | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Create a couple of list links to mark the start and end of the list. */ | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | static BlockLink_t xStart, *pxEnd = NULL; | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Keeps track of the number of free bytes remaining, but says nothing about
 | 
					
						
							|  |  |  | fragmentation. */ | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | static size_t xFreeBytesRemaining = 0U; | 
					
						
							|  |  |  | static size_t xMinimumEverFreeBytesRemaining = 0U; | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | /* Gets set to the top bit of an size_t type.  When this bit in the xBlockSize
 | 
					
						
							|  |  |  | member of an BlockLink_t structure is set then the block belongs to the | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | application.  When the bit is free the block is still part of the free heap | 
					
						
							|  |  |  | space. */ | 
					
						
							|  |  |  | static size_t xBlockAllocatedBit = 0; | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*-----------------------------------------------------------*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void *pvPortMalloc( size_t xWantedSize ) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | BlockLink_t *pxBlock, *pxPreviousBlock, *pxNewBlockLink; | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | void *pvReturn = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	vTaskSuspendAll(); | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		/* If this is the first call to malloc then the heap will require
 | 
					
						
							|  |  |  | 		initialisation to setup the list of free blocks. */ | 
					
						
							|  |  |  | 		if( pxEnd == NULL ) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			prvHeapInit(); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			mtCOVERAGE_TEST_MARKER(); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 		/* Check the requested block size is not so large that the top bit is
 | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 		set.  The top bit of the block size member of the BlockLink_t structure | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 		is used to determine who owns the block - the application or the | 
					
						
							|  |  |  | 		kernel, so it must be free. */ | 
					
						
							|  |  |  | 		if( ( xWantedSize & xBlockAllocatedBit ) == 0 ) | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 			/* The wanted size is increased so it can contain a BlockLink_t
 | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 			structure in addition to the requested amount of bytes. */ | 
					
						
							|  |  |  | 			if( xWantedSize > 0 ) | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 				xWantedSize += xHeapStructSize; | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 				/* Ensure that blocks are always aligned to the required number
 | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 				of bytes. */ | 
					
						
							|  |  |  | 				if( ( xWantedSize & portBYTE_ALIGNMENT_MASK ) != 0x00 ) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					/* Byte alignment required. */ | 
					
						
							|  |  |  | 					xWantedSize += ( portBYTE_ALIGNMENT - ( xWantedSize & portBYTE_ALIGNMENT_MASK ) ); | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 					configASSERT( ( xWantedSize & portBYTE_ALIGNMENT_MASK ) == 0 ); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				else | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					mtCOVERAGE_TEST_MARKER(); | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 			else | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				mtCOVERAGE_TEST_MARKER(); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 			if( ( xWantedSize > 0 ) && ( xWantedSize <= xFreeBytesRemaining ) ) | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 				/* Traverse the list from the start	(lowest address) block until
 | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 				one	of adequate size is found. */ | 
					
						
							|  |  |  | 				pxPreviousBlock = &xStart; | 
					
						
							|  |  |  | 				pxBlock = xStart.pxNextFreeBlock; | 
					
						
							|  |  |  | 				while( ( pxBlock->xBlockSize < xWantedSize ) && ( pxBlock->pxNextFreeBlock != NULL ) ) | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 				{ | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 					pxPreviousBlock = pxBlock; | 
					
						
							|  |  |  | 					pxBlock = pxBlock->pxNextFreeBlock; | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 				/* If the end marker was reached then a block of adequate size
 | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 				was	not found. */ | 
					
						
							|  |  |  | 				if( pxBlock != pxEnd ) | 
					
						
							|  |  |  | 				{ | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 					/* Return the memory space pointed to - jumping over the
 | 
					
						
							|  |  |  | 					BlockLink_t structure at its start. */ | 
					
						
							|  |  |  | 					pvReturn = ( void * ) ( ( ( uint8_t * ) pxPreviousBlock->pxNextFreeBlock ) + xHeapStructSize ); | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 					/* This block is being returned for use so must be taken out
 | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 					of the list of free blocks. */ | 
					
						
							|  |  |  | 					pxPreviousBlock->pxNextFreeBlock = pxBlock->pxNextFreeBlock; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 					/* If the block is larger than required it can be split into
 | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 					two. */ | 
					
						
							|  |  |  | 					if( ( pxBlock->xBlockSize - xWantedSize ) > heapMINIMUM_BLOCK_SIZE ) | 
					
						
							|  |  |  | 					{ | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 						/* This block is to be split into two.  Create a new
 | 
					
						
							|  |  |  | 						block following the number of bytes requested. The void | 
					
						
							|  |  |  | 						cast is used to prevent byte alignment warnings from the | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 						compiler. */ | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 						pxNewBlockLink = ( void * ) ( ( ( uint8_t * ) pxBlock ) + xWantedSize ); | 
					
						
							|  |  |  | 						configASSERT( ( ( ( size_t ) pxNewBlockLink ) & portBYTE_ALIGNMENT_MASK ) == 0 ); | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 						/* Calculate the sizes of two blocks split from the
 | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 						single block. */ | 
					
						
							|  |  |  | 						pxNewBlockLink->xBlockSize = pxBlock->xBlockSize - xWantedSize; | 
					
						
							|  |  |  | 						pxBlock->xBlockSize = xWantedSize; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						/* Insert the new block into the list of free blocks. */ | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 						prvInsertBlockIntoFreeList( pxNewBlockLink ); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					else | 
					
						
							|  |  |  | 					{ | 
					
						
							|  |  |  | 						mtCOVERAGE_TEST_MARKER(); | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					xFreeBytesRemaining -= pxBlock->xBlockSize; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 					if( xFreeBytesRemaining < xMinimumEverFreeBytesRemaining ) | 
					
						
							|  |  |  | 					{ | 
					
						
							|  |  |  | 						xMinimumEverFreeBytesRemaining = xFreeBytesRemaining; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					else | 
					
						
							|  |  |  | 					{ | 
					
						
							|  |  |  | 						mtCOVERAGE_TEST_MARKER(); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 					/* The block is being returned - it is allocated and owned
 | 
					
						
							|  |  |  | 					by the application and has no "next" block. */ | 
					
						
							|  |  |  | 					pxBlock->xBlockSize |= xBlockAllocatedBit; | 
					
						
							|  |  |  | 					pxBlock->pxNextFreeBlock = NULL; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 				else | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					mtCOVERAGE_TEST_MARKER(); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				mtCOVERAGE_TEST_MARKER(); | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			mtCOVERAGE_TEST_MARKER(); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		traceMALLOC( pvReturn, xWantedSize ); | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 	( void ) xTaskResumeAll(); | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	#if( configUSE_MALLOC_FAILED_HOOK == 1 )
 | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		if( pvReturn == NULL ) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			extern void vApplicationMallocFailedHook( void ); | 
					
						
							|  |  |  | 			vApplicationMallocFailedHook(); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			mtCOVERAGE_TEST_MARKER(); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	#endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 	configASSERT( ( ( ( size_t ) pvReturn ) & ( size_t ) portBYTE_ALIGNMENT_MASK ) == 0 ); | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 	return pvReturn; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | /*-----------------------------------------------------------*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void vPortFree( void *pv ) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | uint8_t *puc = ( uint8_t * ) pv; | 
					
						
							|  |  |  | BlockLink_t *pxLink; | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if( pv != NULL ) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 		/* The memory being freed will have an BlockLink_t structure immediately
 | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 		before it. */ | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 		puc -= xHeapStructSize; | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* This casting is to keep the compiler from issuing warnings. */ | 
					
						
							|  |  |  | 		pxLink = ( void * ) puc; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 		/* Check the block is actually allocated. */ | 
					
						
							|  |  |  | 		configASSERT( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ); | 
					
						
							|  |  |  | 		configASSERT( pxLink->pxNextFreeBlock == NULL ); | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 		if( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ) | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 			if( pxLink->pxNextFreeBlock == NULL ) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				/* The block is being returned to the heap - it is no longer
 | 
					
						
							|  |  |  | 				allocated. */ | 
					
						
							|  |  |  | 				pxLink->xBlockSize &= ~xBlockAllocatedBit; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				vTaskSuspendAll(); | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					/* Add this block to the list of free blocks. */ | 
					
						
							|  |  |  | 					xFreeBytesRemaining += pxLink->xBlockSize; | 
					
						
							|  |  |  | 					traceFREE( pv, pxLink->xBlockSize ); | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 					prvInsertBlockIntoFreeList( ( ( BlockLink_t * ) pxLink ) ); | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 				( void ) xTaskResumeAll(); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				mtCOVERAGE_TEST_MARKER(); | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			mtCOVERAGE_TEST_MARKER(); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | /*-----------------------------------------------------------*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | size_t xPortGetFreeHeapSize( void ) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return xFreeBytesRemaining; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | /*-----------------------------------------------------------*/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | size_t xPortGetMinimumEverFreeHeapSize( void ) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return xMinimumEverFreeBytesRemaining; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | /*-----------------------------------------------------------*/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | void vPortInitialiseBlocks( void ) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* This just exists to keep the linker quiet. */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | /*-----------------------------------------------------------*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void prvHeapInit( void ) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | BlockLink_t *pxFirstFreeBlock; | 
					
						
							|  |  |  | uint8_t *pucAlignedHeap; | 
					
						
							|  |  |  | size_t uxAddress; | 
					
						
							|  |  |  | size_t xTotalHeapSize = configTOTAL_HEAP_SIZE; | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 	/* Ensure the heap starts on a correctly aligned boundary. */ | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 	uxAddress = ( size_t ) ucHeap; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if( ( uxAddress & portBYTE_ALIGNMENT_MASK ) != 0 ) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		uxAddress += ( portBYTE_ALIGNMENT - 1 ); | 
					
						
							|  |  |  | 		uxAddress &= ~( ( size_t ) portBYTE_ALIGNMENT_MASK ); | 
					
						
							|  |  |  | 		xTotalHeapSize -= uxAddress - ( size_t ) ucHeap; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pucAlignedHeap = ( uint8_t * ) uxAddress; | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* xStart is used to hold a pointer to the first item in the list of free
 | 
					
						
							|  |  |  | 	blocks.  The void cast is used to prevent compiler warnings. */ | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 	xStart.pxNextFreeBlock = ( void * ) pucAlignedHeap; | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 	xStart.xBlockSize = ( size_t ) 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* pxEnd is used to mark the end of the list of free blocks and is inserted
 | 
					
						
							|  |  |  | 	at the end of the heap space. */ | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 	uxAddress = ( ( size_t ) pucAlignedHeap ) + xTotalHeapSize; | 
					
						
							|  |  |  | 	uxAddress -= xHeapStructSize; | 
					
						
							|  |  |  | 	uxAddress &= ~( ( size_t ) portBYTE_ALIGNMENT_MASK ); | 
					
						
							|  |  |  | 	pxEnd = ( void * ) uxAddress; | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 	pxEnd->xBlockSize = 0; | 
					
						
							|  |  |  | 	pxEnd->pxNextFreeBlock = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* To start with there is a single free block that is sized to take up the
 | 
					
						
							|  |  |  | 	entire heap space, minus the space taken by pxEnd. */ | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 	pxFirstFreeBlock = ( void * ) pucAlignedHeap; | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 	pxFirstFreeBlock->xBlockSize = uxAddress - ( size_t ) pxFirstFreeBlock; | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 	pxFirstFreeBlock->pxNextFreeBlock = pxEnd; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 	/* Only one block exists - and it covers the entire usable heap space. */ | 
					
						
							|  |  |  | 	xMinimumEverFreeBytesRemaining = pxFirstFreeBlock->xBlockSize; | 
					
						
							|  |  |  | 	xFreeBytesRemaining = pxFirstFreeBlock->xBlockSize; | 
					
						
							| 
									
										
										
										
											2014-04-24 23:33:42 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Work out the position of the top bit in a size_t variable. */ | 
					
						
							|  |  |  | 	xBlockAllocatedBit = ( ( size_t ) 1 ) << ( ( sizeof( size_t ) * heapBITS_PER_BYTE ) - 1 ); | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | /*-----------------------------------------------------------*/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | static void prvInsertBlockIntoFreeList( BlockLink_t *pxBlockToInsert ) | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | BlockLink_t *pxIterator; | 
					
						
							|  |  |  | uint8_t *puc; | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Iterate through the list until a block is found that has a higher address
 | 
					
						
							|  |  |  | 	than the block being inserted. */ | 
					
						
							|  |  |  | 	for( pxIterator = &xStart; pxIterator->pxNextFreeBlock < pxBlockToInsert; pxIterator = pxIterator->pxNextFreeBlock ) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		/* Nothing to do here, just iterate to the right position. */ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Do the block being inserted, and the block it is being inserted after
 | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 	make a contiguous block of memory? */ | 
					
						
							|  |  |  | 	puc = ( uint8_t * ) pxIterator; | 
					
						
							|  |  |  | 	if( ( puc + pxIterator->xBlockSize ) == ( uint8_t * ) pxBlockToInsert ) | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		pxIterator->xBlockSize += pxBlockToInsert->xBlockSize; | 
					
						
							|  |  |  | 		pxBlockToInsert = pxIterator; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		mtCOVERAGE_TEST_MARKER(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Do the block being inserted, and the block it is being inserted before
 | 
					
						
							|  |  |  | 	make a contiguous block of memory? */ | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 	puc = ( uint8_t * ) pxBlockToInsert; | 
					
						
							|  |  |  | 	if( ( puc + pxBlockToInsert->xBlockSize ) == ( uint8_t * ) pxIterator->pxNextFreeBlock ) | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		if( pxIterator->pxNextFreeBlock != pxEnd ) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			/* Form one big block from the two blocks. */ | 
					
						
							|  |  |  | 			pxBlockToInsert->xBlockSize += pxIterator->pxNextFreeBlock->xBlockSize; | 
					
						
							|  |  |  | 			pxBlockToInsert->pxNextFreeBlock = pxIterator->pxNextFreeBlock->pxNextFreeBlock; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			pxBlockToInsert->pxNextFreeBlock = pxEnd; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 		pxBlockToInsert->pxNextFreeBlock = pxIterator->pxNextFreeBlock; | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* If the block being inserted plugged a gab, so was merged with the block
 | 
					
						
							|  |  |  | 	before and the block after, then it's pxNextFreeBlock pointer will have | 
					
						
							|  |  |  | 	already been set, and should not be set here as that would make it point | 
					
						
							|  |  |  | 	to itself. */ | 
					
						
							|  |  |  | 	if( pxIterator != pxBlockToInsert ) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		pxIterator->pxNextFreeBlock = pxBlockToInsert; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-03-01 21:15:06 +07:00
										 |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		mtCOVERAGE_TEST_MARKER(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-04-14 01:54:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 |