aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/inc
diff options
context:
space:
mode:
authorMarvin Borner2021-05-18 19:36:22 +0200
committerMarvin Borner2021-05-18 19:36:22 +0200
commitc905cd632cc7c5fa8e61eae7c00ed8e14743ced9 (patch)
tree4e9c2da2149c0380778879b012e0fd7a31df7279 /libs/libc/inc
parent4c8db3778a23b4a6c636403f9da55557d1206048 (diff)
Inlining is weird
Diffstat (limited to 'libs/libc/inc')
-rw-r--r--libs/libc/inc/crypto.h2
-rw-r--r--libs/libc/inc/mem.h70
-rw-r--r--libs/libc/inc/str.h20
3 files changed, 62 insertions, 30 deletions
diff --git a/libs/libc/inc/crypto.h b/libs/libc/inc/crypto.h
index a67bb97..b672c50 100644
--- a/libs/libc/inc/crypto.h
+++ b/libs/libc/inc/crypto.h
@@ -9,7 +9,7 @@ void md5(const void *initial_msg, u32 initial_len, u8 digest[16]) NONNULL;
u32 crc32(u32 crc, const void *buf, u32 size) NONNULL;
#ifdef KERNEL
-INLINE u32 crc32_user(u32 crc, const void *buf, u32 size) NONNULL;
+u32 crc32_user(u32 crc, const void *buf, u32 size) NONNULL;
#endif
#endif
diff --git a/libs/libc/inc/mem.h b/libs/libc/inc/mem.h
index a25feaf..64f74f5 100644
--- a/libs/libc/inc/mem.h
+++ b/libs/libc/inc/mem.h
@@ -5,34 +5,66 @@
#include <def.h>
-// malloc
+/**
+ * malloc
+ */
+
+ATTR((malloc)) ATTR((alloc_size(1))) RET_NONNULL void *_malloc(u32 size);
+
ATTR((malloc))
ATTR((alloc_size(1)))
-INLINE RET_NONNULL void *malloc_debug(u32 size, const char *file, int line, const char *func,
- const char *inp) NONNULL;
+RET_NONNULL void *malloc_debug(u32 size, const char *file, int line, const char *func,
+ const char *inp) NONNULL;
+
+/**
+ * realloc
+ */
+
+ATTR((malloc)) ATTR((alloc_size(2))) void *_realloc(void *ptr, u32 size);
-// realloc
ATTR((malloc))
ATTR((alloc_size(2)))
-INLINE RET_NONNULL void *realloc_debug(void *ptr, u32 size, const char *file, int line,
- const char *func, const char *inp);
+void *realloc_debug(void *ptr, u32 size, const char *file, int line, const char *func,
+ const char *inp0, const char *inp1);
+
+/**
+ * zalloc
+ */
+
+ATTR((malloc)) ATTR((alloc_size(1))) RET_NONNULL void *_zalloc(u32 size);
-// zalloc
ATTR((malloc))
ATTR((alloc_size(1)))
-RET_NONNULL
-INLINE void *zalloc_debug(u32 size, const char *file, int line, const char *func, const char *inp);
+RET_NONNULL void *zalloc_debug(u32 size, const char *file, int line, const char *func,
+ const char *inp) NONNULL;
+
+/**
+ * free
+ */
+
+void _free(void *ptr) NONNULL;
+void free_debug(void *ptr, const char *file, int line, const char *func, const char *inp) NONNULL;
-// free
-INLINE void free_debug(void *ptr, const char *file, int line, const char *func,
- const char *inp) NONNULL;
+/**
+ * Debug wrappers
+ */
-// Debug wrappers
+#if DEBUG_ALLOC
#define realloc(ptr, size) \
- realloc_debug((void *)ptr, (u32)(size), __FILE__, __LINE__, __func__, #size)
+ realloc_debug((void *)ptr, (u32)(size), __FILE__, __LINE__, __func__, #ptr, #size)
#define zalloc(size) zalloc_debug((u32)(size), __FILE__, __LINE__, __func__, #size)
#define malloc(size) malloc_debug((u32)(size), __FILE__, __LINE__, __func__, #size)
#define free(ptr) free_debug((void *)(ptr), __FILE__, __LINE__, __func__, #ptr)
+#else
+#define realloc(ptr, size) _realloc((void *)ptr, (u32)(size))
+#define zalloc(size) _zalloc((u32)(size))
+#define malloc(size) _malloc((u32)(size))
+#define free(ptr) _free((void *)(ptr))
+#endif
+
+/**
+ * Standard memory functions
+ */
void *memcpy(void *dest, const void *src, u32 n) NONNULL;
void *memset(void *dest, u32 val, u32 n) NONNULL;
@@ -41,11 +73,11 @@ s32 memcmp(const void *s1, const void *s2, u32 n) NONNULL;
u8 mememp(const u8 *buf, u32 n) NONNULL;
#ifdef KERNEL
-INLINE void *memcpy_user(void *dest, const void *src, u32 n) NONNULL;
-INLINE void *memset_user(void *dest, u32 val, u32 n) NONNULL;
-INLINE void *memchr_user(void *src, char c, u32 n) NONNULL;
-INLINE s32 memcmp_user(const void *s1, const void *s2, u32 n) NONNULL;
-INLINE u8 mememp_user(const u8 *buf, u32 n) NONNULL;
+void *memcpy_user(void *dest, const void *src, u32 n) NONNULL;
+void *memset_user(void *dest, u32 val, u32 n) NONNULL;
+void *memchr_user(void *src, char c, u32 n) NONNULL;
+s32 memcmp_user(const void *s1, const void *s2, u32 n) NONNULL;
+u8 mememp_user(const u8 *buf, u32 n) NONNULL;
#endif
#endif
diff --git a/libs/libc/inc/str.h b/libs/libc/inc/str.h
index d4c197e..f024aaa 100644
--- a/libs/libc/inc/str.h
+++ b/libs/libc/inc/str.h
@@ -18,16 +18,16 @@ ATTR((malloc)) char *strdup(const char *s) NONNULL;
#ifdef KERNEL
-INLINE PURE u32 strlen_user(const char *s) NONNULL;
-INLINE PURE u32 strnlen_user(const char *s, u32 max) NONNULL;
-INLINE u32 strlcpy_user(char *dst, const char *src, u32 size) NONNULL;
-INLINE PURE char *strchr_user(char *s, char c) NONNULL;
-INLINE PURE char *strrchr_user(char *s, char c) NONNULL;
-INLINE u32 strlcat_user(char *dst, const char *src, u32 size) NONNULL;
-INLINE s32 strcmp_user(const char *s1, const char *s2) NONNULL;
-INLINE s32 strncmp_user(const char *s1, const char *s2, u32 n) NONNULL;
-INLINE char *strinv_user(char *s) NONNULL;
-INLINE ATTR((malloc)) char *strdup_user(const char *s) NONNULL;
+PURE u32 strlen_user(const char *s) NONNULL;
+PURE u32 strnlen_user(const char *s, u32 max) NONNULL;
+u32 strlcpy_user(char *dst, const char *src, u32 size) NONNULL;
+PURE char *strchr_user(char *s, char c) NONNULL;
+PURE char *strrchr_user(char *s, char c) NONNULL;
+u32 strlcat_user(char *dst, const char *src, u32 size) NONNULL;
+s32 strcmp_user(const char *s1, const char *s2) NONNULL;
+s32 strncmp_user(const char *s1, const char *s2, u32 n) NONNULL;
+char *strinv_user(char *s) NONNULL;
+ATTR((malloc)) char *strdup_user(const char *s) NONNULL;
#endif