mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 03:53:33 +00:00
fa20edc44d
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
25 lines
912 B
C
25 lines
912 B
C
#ifndef COSMOPOLITAN_LIBC_MEM_GC_H_
|
|
#define COSMOPOLITAN_LIBC_MEM_GC_H_
|
|
COSMOPOLITAN_C_START_
|
|
|
|
void *_gc(void *);
|
|
void *_defer(void *, void *);
|
|
void __defer(void *, void *, void *);
|
|
void _gclongjmp(void *, int) dontthrow wontreturn;
|
|
void _gc_free(void *);
|
|
|
|
#if defined(__GNUC__) && !defined(__STRICT_ANSI__)
|
|
#define _gc(THING) _defer((void *)_gc_free, (void *)(THING))
|
|
#define _defer(FN, ARG) \
|
|
({ \
|
|
autotype(ARG) Arg = (ARG); \
|
|
/* prevent weird opts like tail call */ \
|
|
asm volatile("" : "+g"(Arg) : : "memory"); \
|
|
__defer(__builtin_frame_address(0), FN, Arg); \
|
|
asm volatile("" : "+g"(Arg) : : "memory"); \
|
|
Arg; \
|
|
})
|
|
#endif /* defined(__GNUC__) && !defined(__STRICT_ANSI__) */
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* COSMOPOLITAN_LIBC_MEM_GC_H_ */
|