 28bd70d811
			
		
	
	28bd70d811
	
	
	
		
			
			In the spirit of v1.5.0.2~21 (Check for PRIuMAX rather than NO_C99_FORMAT in fast-import.c, 2007-02-20), use PRIuMAX from git-compat-util.h on all platforms instead of C99-specific formats like %zu with dangerous fallbacks to %u or %lu. So now C99-challenged platforms can build git without provoking warnings or errors from printf, even if pointers do not have the same size as an int or long. The need for a fallback PRIuMAX is detected in git-compat-util.h with "#ifndef PRIuMAX". So while at it, simplify the Makefile and configure script by eliminating the NO_C99_FORMAT knob altogether. Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
		
			
				
	
	
		
			70 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * alloc.c  - specialized allocator for internal objects
 | |
|  *
 | |
|  * Copyright (C) 2006 Linus Torvalds
 | |
|  *
 | |
|  * The standard malloc/free wastes too much space for objects, partly because
 | |
|  * it maintains all the allocation infrastructure (which isn't needed, since
 | |
|  * we never free an object descriptor anyway), but even more because it ends
 | |
|  * up with maximal alignment because it doesn't know what the object alignment
 | |
|  * for the new allocation is.
 | |
|  */
 | |
| #include "cache.h"
 | |
| #include "object.h"
 | |
| #include "blob.h"
 | |
| #include "tree.h"
 | |
| #include "commit.h"
 | |
| #include "tag.h"
 | |
| 
 | |
| #define BLOCKING 1024
 | |
| 
 | |
| #define DEFINE_ALLOCATOR(name, type)				\
 | |
| static unsigned int name##_allocs;				\
 | |
| void *alloc_##name##_node(void)					\
 | |
| {								\
 | |
| 	static int nr;						\
 | |
| 	static type *block;					\
 | |
| 	void *ret;						\
 | |
| 								\
 | |
| 	if (!nr) {						\
 | |
| 		nr = BLOCKING;					\
 | |
| 		block = xmalloc(BLOCKING * sizeof(type));	\
 | |
| 	}							\
 | |
| 	nr--;							\
 | |
| 	name##_allocs++;					\
 | |
| 	ret = block++;						\
 | |
| 	memset(ret, 0, sizeof(type));				\
 | |
| 	return ret;						\
 | |
| }
 | |
| 
 | |
| union any_object {
 | |
| 	struct object object;
 | |
| 	struct blob blob;
 | |
| 	struct tree tree;
 | |
| 	struct commit commit;
 | |
| 	struct tag tag;
 | |
| };
 | |
| 
 | |
| DEFINE_ALLOCATOR(blob, struct blob)
 | |
| DEFINE_ALLOCATOR(tree, struct tree)
 | |
| DEFINE_ALLOCATOR(commit, struct commit)
 | |
| DEFINE_ALLOCATOR(tag, struct tag)
 | |
| DEFINE_ALLOCATOR(object, union any_object)
 | |
| 
 | |
| static void report(const char *name, unsigned int count, size_t size)
 | |
| {
 | |
| 	fprintf(stderr, "%10s: %8u (%"PRIuMAX" kB)\n",
 | |
| 			name, count, (uintmax_t) size);
 | |
| }
 | |
| 
 | |
| #define REPORT(name)	\
 | |
|     report(#name, name##_allocs, name##_allocs*sizeof(struct name) >> 10)
 | |
| 
 | |
| void alloc_report(void)
 | |
| {
 | |
| 	REPORT(blob);
 | |
| 	REPORT(tree);
 | |
| 	REPORT(commit);
 | |
| 	REPORT(tag);
 | |
| }
 |