garbage-collection VS assembler

Compare garbage-collection vs assembler and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
garbage-collection assembler
1 1
- 2
- -
- 10.0
- about 1 year ago
Python
- -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

garbage-collection

Posts with mentions or reviews of garbage-collection. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-20.
  • Notes on my incomplete JIT compiler
    5 projects | /r/ProgrammingLanguages | 20 Apr 2023
    I adapted the garbage collector at Writing a Simple Garbage Collector in C (maplant.com) to add extremely primitive simple register scanning. I am thinking I can expose an ABI to the runtime to call the GC. https://github.com/samsquire/garbage-collection

assembler

Posts with mentions or reviews of assembler. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-20.
  • Notes on my incomplete JIT compiler
    5 projects | /r/ProgrammingLanguages | 20 Apr 2023
    I do code generation manually, not through assembly like my python compiler (in the same repository) and not in the same style as my python assembler https://github.com/samsquire/assembler . I do linear scan register allocation. I do live range analysis and use ANF A normal form intermediate representation. I don't implement spill logic to memory yet. I need to implement parameter passing to functions.

What are some alternatives?

When comparing garbage-collection and assembler you can also consider the following projects:

epoll-server - C code for multithreaded multiplexing client socket connections across multiple threads (so its X connections per thread) uses epoll

compiler - an incomplete toy barebones compiler backend for amd64 x86_64 in Python and an incomplete JIT compiler written in C