tree-sitter/lib/src/alloc.h

88 lines
1.8 KiB
C
Raw Normal View History

#ifndef TREE_SITTER_ALLOC_H_
#define TREE_SITTER_ALLOC_H_
2016-01-15 15:08:42 -08:00
#ifdef __cplusplus
extern "C" {
#endif
#include <stdlib.h>
#include <stdbool.h>
2016-11-05 21:23:23 -07:00
#include <stdio.h>
#if defined(TREE_SITTER_ALLOCATION_TRACKING)
void *ts_record_malloc(size_t);
void *ts_record_calloc(size_t, size_t);
void *ts_record_realloc(void *, size_t);
void ts_record_free(void *);
bool ts_toggle_allocation_recording(bool);
#define ts_malloc ts_record_malloc
#define ts_calloc ts_record_calloc
#define ts_realloc ts_record_realloc
#define ts_free ts_record_free
#else
// Allow clients to override allocation functions
#ifndef ts_malloc
#define ts_malloc ts_malloc_default
#endif
#ifndef ts_calloc
#define ts_calloc ts_calloc_default
#endif
#ifndef ts_realloc
#define ts_realloc ts_realloc_default
#endif
#ifndef ts_free
#define ts_free ts_free_default
#endif
#include <stdlib.h>
static inline bool ts_toggle_allocation_recording(bool value) {
(void)value;
return false;
}
2020-10-16 12:42:26 -07:00
static inline void *ts_malloc_default(size_t size) {
2016-11-05 21:23:23 -07:00
void *result = malloc(size);
if (size > 0 && !result) {
2020-07-23 09:48:18 +02:00
fprintf(stderr, "tree-sitter failed to allocate %zu bytes", size);
2016-11-05 21:23:23 -07:00
exit(1);
}
return result;
2016-01-15 15:08:42 -08:00
}
static inline void *ts_calloc_default(size_t count, size_t size) {
2016-11-05 21:23:23 -07:00
void *result = calloc(count, size);
if (count > 0 && !result) {
2020-07-23 09:48:18 +02:00
fprintf(stderr, "tree-sitter failed to allocate %zu bytes", count * size);
2016-11-05 21:23:23 -07:00
exit(1);
}
return result;
2016-01-15 15:08:42 -08:00
}
static inline void *ts_realloc_default(void *buffer, size_t size) {
2016-11-05 21:23:23 -07:00
void *result = realloc(buffer, size);
if (size > 0 && !result) {
2020-07-23 09:48:18 +02:00
fprintf(stderr, "tree-sitter failed to reallocate %zu bytes", size);
2016-11-05 21:23:23 -07:00
exit(1);
}
return result;
2016-01-15 15:08:42 -08:00
}
static inline void ts_free_default(void *buffer) {
2016-11-05 21:23:23 -07:00
free(buffer);
2016-01-15 15:08:42 -08:00
}
#endif
2016-01-15 15:08:42 -08:00
#ifdef __cplusplus
}
#endif
#endif // TREE_SITTER_ALLOC_H_