All Topics
All Topics
Technology
Technology
Design
Design
Programming
Programming
Science
Science
News
News
Gaming
Gaming
Entertainment
Entertainment
Business
Business
Finance
Finance
Sports
Sports
Health
Health
Food
Food
Travel
Travel
Art
Art
Music
Music
Books
Books
Education
Education
Politics
Politics
Personal
Personal
No algorithm. No AI slop. No ads. Just RSS. Pro-human. Indie writers. Real journalism. Open web. Chronological. Hand toasted.

Fil-C Programming Language's Parallel Concurrent Garbage Collector Implementation

By

pizlonator

8mo ago· 8 min readenInsight

Summary

Fil-C is a programming language runtime that features FUGC (Fil's Unbelievable Garbage Collector), a sophisticated parallel concurrent on-the-fly grey-stack Dijkstra accurate non-moving garbage collector. The garbage collector operates with multiple threads for both marking and sweeping phases, leveraging multiple CPU cores for faster performance. The article provides technical details about the garbage collector's architecture and implementation, noting that the core code in fugc.c requires extensive support from the runtime and compiler to function properly.

Key quotes

· 3 pulled
Fil-C uses a parallel concurrent on-the-fly grey-stack Dijkstra accurate non-moving garbage collector called FUGC
The more cores you have, the faster the collector finishes
that code cannot possibly work without lots of support logic in the rest of the runtime and in the compiler
Snippet from the RSS feed
Fil-C uses a parallel concurrent on-the-fly grey-stack Dijkstra accurate non-moving garbage collector called FUGC (Fil's Unbelievable Garbage Collector). You can find the source code for the collector itself in fugc.c, though be warned, that code cannot p

You might also wanna read