aboutsummaryrefslogtreecommitdiff
path: root/src/tree_sitter/alloc.h
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2019-06-06 10:34:01 +0200
committerBjörn Linse <bjorn.linse@gmail.com>2019-09-28 14:30:48 +0200
commit3bddf050230635febc16aabe0ba4f73abeed6663 (patch)
tree96cee8145c473378ee33083493fbd4e9a62cedf5 /src/tree_sitter/alloc.h
parent0d9a3c86a1c7143187398e6cb6005ed06a5e2fde (diff)
downloadrneovim-3bddf050230635febc16aabe0ba4f73abeed6663.tar.gz
rneovim-3bddf050230635febc16aabe0ba4f73abeed6663.tar.bz2
rneovim-3bddf050230635febc16aabe0ba4f73abeed6663.zip
tree-sitter: vendor tree-sitter runtime
tree-sitter/tree-sitter commit 7685b7861ca475664b6ef57e14d1da9acf741275 Included files are: lib/include/tree-sitter/*.h lib/src/*.[ch] LICENSE
Diffstat (limited to 'src/tree_sitter/alloc.h')
-rw-r--r--src/tree_sitter/alloc.h81
1 files changed, 81 insertions, 0 deletions
diff --git a/src/tree_sitter/alloc.h b/src/tree_sitter/alloc.h
new file mode 100644
index 0000000000..c8fe6c6e6d
--- /dev/null
+++ b/src/tree_sitter/alloc.h
@@ -0,0 +1,81 @@
+#ifndef TREE_SITTER_ALLOC_H_
+#define TREE_SITTER_ALLOC_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <stdlib.h>
+#include <stdbool.h>
+#include <stdio.h>
+
+#if defined(TREE_SITTER_TEST)
+
+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);
+
+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) {
+ ts_record_free(buffer);
+}
+
+#else
+
+#include <stdlib.h>
+
+static inline bool ts_toggle_allocation_recording(bool value) {
+ return false;
+}
+
+static inline void *ts_malloc(size_t size) {
+ void *result = malloc(size);
+ if (size > 0 && !result) {
+ fprintf(stderr, "tree-sitter failed to allocate %lu bytes", size);
+ exit(1);
+ }
+ return result;
+}
+
+static inline void *ts_calloc(size_t count, size_t size) {
+ void *result = calloc(count, size);
+ if (count > 0 && !result) {
+ fprintf(stderr, "tree-sitter failed to allocate %lu bytes", count * size);
+ exit(1);
+ }
+ return result;
+}
+
+static inline void *ts_realloc(void *buffer, size_t size) {
+ void *result = realloc(buffer, size);
+ if (size > 0 && !result) {
+ fprintf(stderr, "tree-sitter failed to reallocate %lu bytes", size);
+ exit(1);
+ }
+ return result;
+}
+
+static inline void ts_free(void *buffer) {
+ free(buffer);
+}
+
+#endif
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // TREE_SITTER_ALLOC_H_