mirror of
				https://github.com/esp8266/Arduino.git
				synced 2025-10-31 15:50:55 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			184 lines
		
	
	
		
			6.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			184 lines
		
	
	
		
			6.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /**
 | |
|  * @file
 | |
|  * memory pools lwIP internal implementations (do not use in application code)
 | |
|  */
 | |
| 
 | |
| /*
 | |
|  * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
 | |
|  * All rights reserved.
 | |
|  *
 | |
|  * 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. The name of the author may not be used to endorse or promote products
 | |
|  *    derived from this software without specific prior written permission.
 | |
|  *
 | |
|  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
 | |
|  *
 | |
|  * This file is part of the lwIP TCP/IP stack.
 | |
|  *
 | |
|  * Author: Adam Dunkels <adam@sics.se>
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #ifndef LWIP_HDR_MEMP_PRIV_H
 | |
| #define LWIP_HDR_MEMP_PRIV_H
 | |
| 
 | |
| #include "lwip/opt.h"
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| #include "lwip/mem.h"
 | |
| 
 | |
| #if MEMP_OVERFLOW_CHECK
 | |
| /* if MEMP_OVERFLOW_CHECK is turned on, we reserve some bytes at the beginning
 | |
|  * and at the end of each element, initialize them as 0xcd and check
 | |
|  * them later. */
 | |
| /* If MEMP_OVERFLOW_CHECK is >= 2, on every call to memp_malloc or memp_free,
 | |
|  * every single element in each pool is checked!
 | |
|  * This is VERY SLOW but also very helpful. */
 | |
| /* MEMP_SANITY_REGION_BEFORE and MEMP_SANITY_REGION_AFTER can be overridden in
 | |
|  * lwipopts.h to change the amount reserved for checking. */
 | |
| #ifndef MEMP_SANITY_REGION_BEFORE
 | |
| #define MEMP_SANITY_REGION_BEFORE  16
 | |
| #endif /* MEMP_SANITY_REGION_BEFORE*/
 | |
| #if MEMP_SANITY_REGION_BEFORE > 0
 | |
| #define MEMP_SANITY_REGION_BEFORE_ALIGNED    LWIP_MEM_ALIGN_SIZE(MEMP_SANITY_REGION_BEFORE)
 | |
| #else
 | |
| #define MEMP_SANITY_REGION_BEFORE_ALIGNED    0
 | |
| #endif /* MEMP_SANITY_REGION_BEFORE*/
 | |
| #ifndef MEMP_SANITY_REGION_AFTER
 | |
| #define MEMP_SANITY_REGION_AFTER   16
 | |
| #endif /* MEMP_SANITY_REGION_AFTER*/
 | |
| #if MEMP_SANITY_REGION_AFTER > 0
 | |
| #define MEMP_SANITY_REGION_AFTER_ALIGNED     LWIP_MEM_ALIGN_SIZE(MEMP_SANITY_REGION_AFTER)
 | |
| #else
 | |
| #define MEMP_SANITY_REGION_AFTER_ALIGNED     0
 | |
| #endif /* MEMP_SANITY_REGION_AFTER*/
 | |
| 
 | |
| /* MEMP_SIZE: save space for struct memp and for sanity check */
 | |
| #define MEMP_SIZE          (LWIP_MEM_ALIGN_SIZE(sizeof(struct memp)) + MEMP_SANITY_REGION_BEFORE_ALIGNED)
 | |
| #define MEMP_ALIGN_SIZE(x) (LWIP_MEM_ALIGN_SIZE(x) + MEMP_SANITY_REGION_AFTER_ALIGNED)
 | |
| 
 | |
| #else /* MEMP_OVERFLOW_CHECK */
 | |
| 
 | |
| /* No sanity checks
 | |
|  * We don't need to preserve the struct memp while not allocated, so we
 | |
|  * can save a little space and set MEMP_SIZE to 0.
 | |
|  */
 | |
| #define MEMP_SIZE           0
 | |
| #define MEMP_ALIGN_SIZE(x) (LWIP_MEM_ALIGN_SIZE(x))
 | |
| 
 | |
| #endif /* MEMP_OVERFLOW_CHECK */
 | |
| 
 | |
| #if !MEMP_MEM_MALLOC || MEMP_OVERFLOW_CHECK
 | |
| struct memp {
 | |
|   struct memp *next;
 | |
| #if MEMP_OVERFLOW_CHECK
 | |
|   const char *file;
 | |
|   int line;
 | |
| #endif /* MEMP_OVERFLOW_CHECK */
 | |
| };
 | |
| #endif /* !MEMP_MEM_MALLOC || MEMP_OVERFLOW_CHECK */
 | |
| 
 | |
| #if MEM_USE_POOLS && MEMP_USE_CUSTOM_POOLS
 | |
| /* Use a helper type to get the start and end of the user "memory pools" for mem_malloc */
 | |
| typedef enum {
 | |
|     /* Get the first (via:
 | |
|        MEMP_POOL_HELPER_START = ((u8_t) 1*MEMP_POOL_A + 0*MEMP_POOL_B + 0*MEMP_POOL_C + 0)*/
 | |
|     MEMP_POOL_HELPER_FIRST = ((u8_t)
 | |
| #define LWIP_MEMPOOL(name,num,size,desc)
 | |
| #define LWIP_MALLOC_MEMPOOL_START 1
 | |
| #define LWIP_MALLOC_MEMPOOL(num, size) * MEMP_POOL_##size + 0
 | |
| #define LWIP_MALLOC_MEMPOOL_END
 | |
| #include "lwip/priv/memp_std.h"
 | |
|     ) ,
 | |
|     /* Get the last (via:
 | |
|        MEMP_POOL_HELPER_END = ((u8_t) 0 + MEMP_POOL_A*0 + MEMP_POOL_B*0 + MEMP_POOL_C*1) */
 | |
|     MEMP_POOL_HELPER_LAST = ((u8_t)
 | |
| #define LWIP_MEMPOOL(name,num,size,desc)
 | |
| #define LWIP_MALLOC_MEMPOOL_START
 | |
| #define LWIP_MALLOC_MEMPOOL(num, size) 0 + MEMP_POOL_##size *
 | |
| #define LWIP_MALLOC_MEMPOOL_END 1
 | |
| #include "lwip/priv/memp_std.h"
 | |
|     )
 | |
| } memp_pool_helper_t;
 | |
| 
 | |
| /* The actual start and stop values are here (cast them over)
 | |
|    We use this helper type and these defines so we can avoid using const memp_t values */
 | |
| #define MEMP_POOL_FIRST ((memp_t) MEMP_POOL_HELPER_FIRST)
 | |
| #define MEMP_POOL_LAST   ((memp_t) MEMP_POOL_HELPER_LAST)
 | |
| #endif /* MEM_USE_POOLS && MEMP_USE_CUSTOM_POOLS */
 | |
| 
 | |
| /** Memory pool descriptor */
 | |
| struct memp_desc {
 | |
| #if defined(LWIP_DEBUG) || MEMP_OVERFLOW_CHECK || LWIP_STATS_DISPLAY
 | |
|   /** Textual description */
 | |
|   const char *desc;
 | |
| #endif /* LWIP_DEBUG || MEMP_OVERFLOW_CHECK || LWIP_STATS_DISPLAY */
 | |
| #if MEMP_STATS
 | |
|   /** Statistics */
 | |
|   struct stats_mem *stats;
 | |
| #endif
 | |
| 
 | |
|   /** Element size */
 | |
|   u16_t size;
 | |
| 
 | |
| #if !MEMP_MEM_MALLOC
 | |
|   /** Number of elements */
 | |
|   u16_t num;
 | |
| 
 | |
|   /** Base address */
 | |
|   u8_t *base;
 | |
| 
 | |
|   /** First free element of each pool. Elements form a linked list. */
 | |
|   struct memp **tab;
 | |
| #endif /* MEMP_MEM_MALLOC */
 | |
| };
 | |
| 
 | |
| #if defined(LWIP_DEBUG) || MEMP_OVERFLOW_CHECK || LWIP_STATS_DISPLAY
 | |
| #define DECLARE_LWIP_MEMPOOL_DESC(desc) (desc),
 | |
| #else
 | |
| #define DECLARE_LWIP_MEMPOOL_DESC(desc)
 | |
| #endif
 | |
| 
 | |
| #if MEMP_STATS
 | |
| #define LWIP_MEMPOOL_DECLARE_STATS_INSTANCE(name) static struct stats_mem name;
 | |
| #define LWIP_MEMPOOL_DECLARE_STATS_REFERENCE(name) &name,
 | |
| #else
 | |
| #define LWIP_MEMPOOL_DECLARE_STATS_INSTANCE(name)
 | |
| #define LWIP_MEMPOOL_DECLARE_STATS_REFERENCE(name)
 | |
| #endif
 | |
| 
 | |
| void memp_init_pool(const struct memp_desc *desc);
 | |
| 
 | |
| #if MEMP_OVERFLOW_CHECK
 | |
| void *memp_malloc_pool_fn(const struct memp_desc* desc, const char* file, const int line);
 | |
| #define memp_malloc_pool(d) memp_malloc_pool_fn((d), __FILE__, __LINE__)
 | |
| #else
 | |
| void *memp_malloc_pool(const struct memp_desc *desc);
 | |
| #endif
 | |
| void  memp_free_pool(const struct memp_desc* desc, void *mem);
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 | |
| 
 | |
| #endif /* LWIP_HDR_MEMP_PRIV_H */
 |