2016-01-15 15:08:42 -08:00
|
|
|
#ifndef RUNTIME_ALLOC_H_
|
|
|
|
|
#define RUNTIME_ALLOC_H_
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-10-05 14:02:49 -07:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <stdbool.h>
|
2016-11-05 21:23:23 -07:00
|
|
|
#include <stdio.h>
|
2016-10-05 14:02:49 -07:00
|
|
|
|
2018-09-17 13:12:13 -07:00
|
|
|
#if defined(TREE_SITTER_TEST)
|
2016-01-18 10:44:49 -08:00
|
|
|
|
|
|
|
|
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 *);
|
2016-05-16 10:44:19 -07:00
|
|
|
bool ts_record_allocations_toggle(bool);
|
2016-01-18 10:44:49 -08:00
|
|
|
|
|
|
|
|
static inline void *ts_malloc(size_t size) {
|
|
|
|
|
return ts_record_malloc(size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void *ts_calloc(size_t count, size_t size) {
|
|
|
|
|
return ts_record_calloc(count, size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void *ts_realloc(void *buffer, size_t size) {
|
|
|
|
|
return ts_record_realloc(buffer, size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void ts_free(void *buffer) {
|
2017-08-08 10:47:59 -07:00
|
|
|
ts_record_free(buffer);
|
2016-01-18 10:44:49 -08:00
|
|
|
}
|
|
|
|
|
|
2016-05-16 10:44:19 -07:00
|
|
|
static inline bool ts_toggle_allocation_recording(bool value) {
|
|
|
|
|
return ts_record_allocations_toggle(value);
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-18 10:44:49 -08:00
|
|
|
#else
|
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
2016-05-16 10:44:19 -07:00
|
|
|
static inline bool ts_toggle_allocation_recording(bool value) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-15 15:08:42 -08:00
|
|
|
static inline void *ts_malloc(size_t size) {
|
2016-11-05 21:23:23 -07:00
|
|
|
void *result = malloc(size);
|
|
|
|
|
if (size > 0 && !result) {
|
|
|
|
|
fprintf(stderr, "tree-sitter failed to allocate %lu bytes", size);
|
|
|
|
|
exit(1);
|
|
|
|
|
}
|
|
|
|
|
return result;
|
2016-01-15 15:08:42 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void *ts_calloc(size_t count, size_t size) {
|
2016-11-05 21:23:23 -07:00
|
|
|
void *result = calloc(count, size);
|
|
|
|
|
if (count > 0 && !result) {
|
|
|
|
|
fprintf(stderr, "tree-sitter failed to allocate %lu bytes", count * size);
|
|
|
|
|
exit(1);
|
|
|
|
|
}
|
|
|
|
|
return result;
|
2016-01-15 15:08:42 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void *ts_realloc(void *buffer, size_t size) {
|
2016-11-05 21:23:23 -07:00
|
|
|
void *result = realloc(buffer, size);
|
|
|
|
|
if (size > 0 && !result) {
|
|
|
|
|
fprintf(stderr, "tree-sitter failed to reallocate %lu bytes", size);
|
|
|
|
|
exit(1);
|
|
|
|
|
}
|
|
|
|
|
return result;
|
2016-01-15 15:08:42 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void ts_free(void *buffer) {
|
2016-11-05 21:23:23 -07:00
|
|
|
free(buffer);
|
2016-01-15 15:08:42 -08:00
|
|
|
}
|
|
|
|
|
|
2016-01-18 10:44:49 -08:00
|
|
|
#endif
|
|
|
|
|
|
2016-01-15 15:08:42 -08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif // RUNTIME_ALLOC_H_
|