2017-12-21 04:03:34 +00:00
|
|
|
/*
|
2023-01-07 21:03:35 +00:00
|
|
|
* Copyright (c) 2023 Calvin Rose
|
2017-12-21 04:03:34 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to
|
|
|
|
* deal in the Software without restriction, including without limitation the
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
#ifndef JANET_GC_H
|
|
|
|
#define JANET_GC_H
|
2017-12-21 04:03:34 +00:00
|
|
|
|
2019-01-24 05:15:58 +00:00
|
|
|
#ifndef JANET_AMALG
|
2019-12-31 00:06:15 +00:00
|
|
|
#include "features.h"
|
2019-02-19 01:13:35 +00:00
|
|
|
#include <janet.h>
|
2019-01-24 05:15:58 +00:00
|
|
|
#endif
|
2017-12-21 04:03:34 +00:00
|
|
|
|
|
|
|
/* The metadata header associated with an allocated block of memory */
|
2019-02-21 16:22:29 +00:00
|
|
|
#define janet_gc_header(mem) ((JanetGCObject *)(mem))
|
2017-12-21 04:03:34 +00:00
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
#define JANET_MEM_TYPEBITS 0xFF
|
|
|
|
#define JANET_MEM_REACHABLE 0x100
|
|
|
|
#define JANET_MEM_DISABLED 0x200
|
2017-12-21 04:03:34 +00:00
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
#define janet_gc_settype(m, t) ((janet_gc_header(m)->flags |= (0xFF & (t))))
|
|
|
|
#define janet_gc_type(m) (janet_gc_header(m)->flags & 0xFF)
|
2017-12-21 04:03:34 +00:00
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
#define janet_gc_mark(m) (janet_gc_header(m)->flags |= JANET_MEM_REACHABLE)
|
|
|
|
#define janet_gc_reachable(m) (janet_gc_header(m)->flags & JANET_MEM_REACHABLE)
|
2017-12-21 04:03:34 +00:00
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
/* Memory types for the GC. Different from JanetType to include funcenv and funcdef. */
|
|
|
|
enum JanetMemoryType {
|
|
|
|
JANET_MEMORY_NONE,
|
|
|
|
JANET_MEMORY_STRING,
|
|
|
|
JANET_MEMORY_SYMBOL,
|
|
|
|
JANET_MEMORY_ARRAY,
|
|
|
|
JANET_MEMORY_TUPLE,
|
|
|
|
JANET_MEMORY_TABLE,
|
|
|
|
JANET_MEMORY_STRUCT,
|
|
|
|
JANET_MEMORY_FIBER,
|
|
|
|
JANET_MEMORY_BUFFER,
|
|
|
|
JANET_MEMORY_FUNCTION,
|
|
|
|
JANET_MEMORY_ABSTRACT,
|
|
|
|
JANET_MEMORY_FUNCENV,
|
2021-08-20 01:56:48 +00:00
|
|
|
JANET_MEMORY_FUNCDEF,
|
|
|
|
JANET_MEMORY_THREADED_ABSTRACT,
|
2023-09-28 04:27:48 +00:00
|
|
|
JANET_MEMORY_TABLE_WEAKK,
|
|
|
|
JANET_MEMORY_TABLE_WEAKV,
|
2023-09-30 15:56:43 +00:00
|
|
|
JANET_MEMORY_TABLE_WEAKKV,
|
|
|
|
JANET_MEMORY_ARRAY_WEAK
|
2017-12-21 04:03:34 +00:00
|
|
|
};
|
|
|
|
|
2021-08-20 01:56:48 +00:00
|
|
|
/* To allocate collectable memory, one must call janet_alloc, initialize the memory,
|
2018-09-06 02:18:42 +00:00
|
|
|
* and then call when janet_enablegc when it is initailize and reachable by the gc (on the JANET stack) */
|
|
|
|
void *janet_gcalloc(enum JanetMemoryType type, size_t size);
|
2017-12-21 04:03:34 +00:00
|
|
|
|
|
|
|
#endif
|