mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-22 19:21:39 +03:00
ecde887d7a
The external type must be a Value object for garbage collection reasons. For completely custom types, use a GCPointer, with appropriate GC function for clearing up your data type.
30 lines
882 B
C
30 lines
882 B
C
#ifndef __MEMORY_MANAGEMENT_H__
|
|
#define __MEMORY_MANAGEMENT_H__
|
|
#include "cBackend.h"
|
|
|
|
Value *newValue(void);
|
|
Value *newReference(Value *source);
|
|
void removeReference(Value *source);
|
|
|
|
Value_Arglist *newArglist(int missing, int total);
|
|
Value_Constructor *newConstructor(int total, int tag, const char *name);
|
|
|
|
// copies arglist, no pointer bending
|
|
Value_Closure *makeClosureFromArglist(fun_ptr_t f, Value_Arglist *);
|
|
|
|
Value_Double *makeDouble(double d);
|
|
Value_Char *makeChar(char d);
|
|
Value_Int8 *makeInt8(int8_t i);
|
|
Value_Int16 *makeInt16(int16_t i);
|
|
Value_Int32 *makeInt32(int32_t i);
|
|
Value_Int64 *makeInt64(int64_t i);
|
|
Value_String *makeEmptyString(size_t l);
|
|
Value_String *makeString(char *);
|
|
|
|
Value_Pointer *makePointer(void *);
|
|
Value_GCPointer *makeGCPointer(void *ptr_Raw, Value_Closure *onCollectFct);
|
|
Value_Array *makeArray(int length);
|
|
Value_World *makeWorld(void);
|
|
|
|
#endif
|