compiler VS epoll-server

Compare compiler vs epoll-server and see what are their differences.

compiler

an incomplete toy barebones compiler backend for amd64 x86_64 in Python and an incomplete JIT compiler written in C (by samsquire)

epoll-server

C code for multithreaded multiplexing client socket connections across multiple threads (so its X connections per thread) uses epoll (by samsquire)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
compiler epoll-server
15 3
20 8
- -
8.1 3.3
4 months ago 7 months ago
C C
- -
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.

compiler

Posts with mentions or reviews of compiler. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-26.
  • A copy-and-patch JIT compiler for CPython
    4 projects | news.ycombinator.com | 26 Dec 2023
    Wow! Thank you for your hard work. I use python for all experimental work so this would speed up my scripting work, such as processing data from API calls or filesystem.

    I wrote a simple toy JIT for a Javascript-like language. It might be useful for others to learn from because it's so simply written and not complicated. I do lazy patching of callsites, I haven't got anywhere near as advanced as tracing or copy-and-patching. Much of the code I wrote for this JIT was written in Python and ported to C. The Java Virtual Machine has a template interpreter which is interesting to research.

    I haven't got around to encoding amd64 x86_64 instructions as bitmasks yet, so I've hardcoded it.

    [1]: https://github.com/samsquire/compiler

  • The path to implementing a programming language
    1 project | news.ycombinator.com | 18 Jul 2023
    Thank you for this article.

    I'm a beginner to programming language implementation and design but here's what I learned. But what I want to do this with this comment I want to encourage you to start work on your programming language and just "Do Something©", Anything! You might have always dreamed to create a programming language. You can indeed try that! Have faith that you can do something, even if it's simple or incomplete, at least you learned something and got another skill.

    I don't want to be trapped by the idea that building your own programming language is impossibly difficult and that it will never be used so what's the point.

    It's so worthwhile.

    You can still do something! Effort doesn't have to be wasted! Go and try write a simple virtual machine: it's just a for loop over instructions that manipulate memory. I wrote a non-bytecode compiler, which just uses List for instructions and HashMap for instruction arguments.

    Andrew Kling built a browser and operating system and Terry Davis built an operating system. They encourage that someone can in fact learn a lot and do a lot.

    I don't want to endlessy design things OR only write implementations. I think you can write lots of ideas down AND spend time implementing things and getting your keyboard busy.

    I wrote this incomplete JIT compiler in C which has a simple nondesigned frontend that resembles Javascript. ANF is my intermediate representation.

    https://github.com/samsquire/compiler

    I wrote a multithreaded imaginary assembly language that sends integers between threads through mailboxes but nowhere near LMAX Disruptor performance.

    I think you should avoid spending too much time on your parser or lexer, use the Kaledeiscope LLVM tutorial to learn how to write recursive descent parsers and move onto code generation. I did mine with switch statements. The more you actually write parsers the easier it gets, but at first when you have no clue, you CAN just read someone else's implementation of it. Understand it, then write your own to your own design. if you get Analysis paralysis and worry about making a mistake or unoptimal decision and that prevents you from doing something suboptimal but actually do something.

    I rushed through my compiler to get to the code generation step because my goal was code generation.

    My dream: parallel and concurrent language that combines threads and coroutines with efficient interthread communication similar to LMAX Disruptor and allows writing of efficient pipelines that are serialisable like Temporal.io.

  • Mir: A lightweight JIT compiler project (2020)
    1 project | news.ycombinator.com | 2 Jul 2023
    Thanks for this.

    I started a basic toy JIT compiler for a language that looks similar to JavaScript. It is incomplete.

    https://github.com/samsquire/compiler

    With these kinds of projects there is a lot of work to be done and I feel it's difficult to get started reading a codebase for a JIT compiler or gcc or LLVM.

  • Building a Programming Language in Twenty-Four Hours
    2 projects | news.ycombinator.com | 5 Jun 2023
    https://github.com/samsquire/compiler

    It's a toy and incomplete but I've worked on compiling MOV and ADD instructions.

  • Let's make a Teeny Tiny compiler
    2 projects | news.ycombinator.com | 29 May 2023
    On thing you can do it implement a JIT compiler.

    Here's Martin Jacob's code to execute arbitrary memory:

    https://gist.github.com/martinjacobd/3ee56f3c7b7ce621034ec3e...

    Since your C program is already in memory, you have access to the C standard library and don't have to worry about linking or object formats :-) but you'll have to worry about parameter passing and FFI.

    My JIT compiler based on this idea is here https://github.com/samsquire/compiler but it is incomplete.

  • How to get started?
    3 projects | /r/ProgrammingLanguages | 25 Apr 2023
  • Notes on my incomplete JIT compiler
    5 projects | /r/ProgrammingLanguages | 20 Apr 2023
  • Erlang: More Optimizations in the Compiler and JIT
    4 projects | news.ycombinator.com | 19 Apr 2023
    This is interesting, thank you.

    I really should learn from BEAM and the OTP and learn Erlang. I get the feeling it's super robust and reliable and low maintenance. I wrote a userspace multithreaded scheduler which distributes N lightweight threads to M kernel threads.

    https://github.com/samsquire/preemptible-thread

    I recently wrote a JIT compiler and got lazy compilation of machine code working and I'm nowhere near beginning optimisation

    https://github.com/samsquire/compiler

    How do you write robust software, that doesn't crash when something unexpected goes on?

    I looked at sozo https://github.com/sozu-proxy/sozu

    and I'm thinking how to create something that just stays up and running regardless.

  • Is it possible to optimize this bytecode interpreter more?
    4 projects | /r/ProgrammingLanguages | 16 Apr 2023
  • How do you create a correct AST with interaction between method call and function call?
    2 projects | /r/ProgrammingLanguages | 12 Apr 2023

epoll-server

Posts with mentions or reviews of epoll-server. 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 also have some epoll server code at https://github.com/samsquire/epoll-server
  • Ask HN: Resources for Building a Webserver in C?
    10 projects | news.ycombinator.com | 18 Dec 2022
    You might find my epollserver interesting.

    It multiplexes multiple clients (sockets) over a thread, so you can write an event loop in each thread and serve far more requests per thread than you could if it was one thread per client or one process per client.

    https://github.com/samsquire/epoll-server

  • Epoll is fundamentally broken (2017)
    2 projects | news.ycombinator.com | 23 Oct 2022
    I wrote an epoll echo server that multiplexes multiple network connections over threads (multiple users per thread)

    https://github.com/samsquire/epoll-server

    I also have a 1:M:N (1 scheduler thread, M kernel threads and N lightweight green threads) multithreaded userspace scheduler which multiplexes lightweight threads onto kernel threads and can preempt hot loops with minimal overhead. I rely on the fact that you can change the looping variable from another thread if you use a structure. Preemptive interruption is very useful for the illusion of multitasking. That's why I call it a userspace scheduler.

    I think the epoll-server which is kind of similar to what libuv does and the userspace scheduler could be combined into an application server.

    I also wrote a multithreaded actor implementation in Java. Threads can communicate with each other between 60 million - 100 million messages a second. The epoll-server uses a multiconsumer multiproducer lockless RingBuffer.

    https://GitHub.com/samsquire/multicersion-concurrency-contro...

    I think the core fundamentals of building a performant application server should be done once and reused for each application.

    I want to also split the threading used by recv and send of a socket so that we have a 1:R/S per socket:N scheduling (1 scheduler thread, 1 Recv thread, 1 send thread per socket). So you can send while you receive and receive while you send. True multiplexing!

What are some alternatives?

When comparing compiler and epoll-server you can also consider the following projects:

PicoBlaze_Simulator_in_JS - Simulator (more accurately: an assembler and an emulator) for Xilinx PicoBlaze, runnable in a browser.

libreactor - Extendable event driven high performance C-abstractions

eopl3 - My notes and solutions to exercises for EoPL3.

picohttpparser - tiny HTTP parser written in C (used in HTTP::Parser::XS et al.)

SVM - Simple stack-based bytecode VM implementations used in my class

preemptible-thread - How to preempt threads in user space

assembler - amd64 assembler

rust - Empowering everyone to build reliable and efficient software.

Mongoose - Embedded Web Server

loti - Lord of the io_uring: io_uring tutorial, examples and reference