mirror of
				https://github.com/python/cpython.git
				synced 2025-10-30 18:07:37 +00:00 
			
		
		
		
	 05f2f0ac92
			
		
	
	
		05f2f0ac92
		
			
		
	
	
	
	
		
			
			* Add mimalloc v2.12 Modified src/alloc.c to remove include of alloc-override.c and not compile new handler. Did not include the following files: - include/mimalloc-new-delete.h - include/mimalloc-override.h - src/alloc-override-osx.c - src/alloc-override.c - src/static.c - src/region.c mimalloc is thread safe and shares a single heap across all runtimes, therefore finalization and getting global allocated blocks across all runtimes is different. * mimalloc: minimal changes for use in Python: - remove debug spam for freeing large allocations - use same bytes (0xDD) for freed allocations in CPython and mimalloc This is important for the test_capi debug memory tests * Don't export mimalloc symbol in libpython. * Enable mimalloc as Python allocator option. * Add mimalloc MIT license. * Log mimalloc in Lib/test/pythoninfo.py. * Document new mimalloc support. * Use macro defs for exports as done in: https://github.com/python/cpython/pull/31164/ Co-authored-by: Sam Gross <colesbury@gmail.com> Co-authored-by: Christian Heimes <christian@python.org> Co-authored-by: Victor Stinner <vstinner@python.org>
		
			
				
	
	
		
			40 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* ----------------------------------------------------------------------------
 | |
| Copyright (c) 2018-2020, Microsoft Research, Daan Leijen
 | |
| This is free software; you can redistribute it and/or modify it under the
 | |
| terms of the MIT license. A copy of the license can be found in the file
 | |
| "LICENSE" at the root of this distribution.
 | |
| -----------------------------------------------------------------------------*/
 | |
| #ifndef _DEFAULT_SOURCE
 | |
| #define _DEFAULT_SOURCE
 | |
| #endif
 | |
| #if defined(__sun)
 | |
| // same remarks as os.c for the static's context.
 | |
| #undef _XOPEN_SOURCE
 | |
| #undef _POSIX_C_SOURCE
 | |
| #endif
 | |
| 
 | |
| #include "mimalloc.h"
 | |
| #include "mimalloc/internal.h"
 | |
| 
 | |
| // For a static override we create a single object file
 | |
| // containing the whole library. If it is linked first
 | |
| // it will override all the standard library allocation
 | |
| // functions (on Unix's).
 | |
| #include "alloc.c"          // includes alloc-override.c
 | |
| #include "alloc-aligned.c"
 | |
| #include "alloc-posix.c"
 | |
| #include "arena.c"
 | |
| #include "bitmap.c"
 | |
| #include "heap.c"
 | |
| #include "init.c"
 | |
| #include "options.c"
 | |
| #include "os.c"
 | |
| #include "page.c"           // includes page-queue.c
 | |
| #include "random.c"
 | |
| #include "segment.c"
 | |
| #include "segment-map.c"
 | |
| #include "stats.c"
 | |
| #include "prim/prim.c"
 | |
| #if MI_OSX_ZONE
 | |
| #include "prim/osx/alloc-override-zone.c"
 | |
| #endif
 |