assembly VS stack-switching

Compare assembly vs stack-switching and see what are their differences.

stack-switching

A repository for the stack switching proposal. (by WebAssembly)
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
assembly stack-switching
4 2
15 102
- 0.0%
9.5 10.0
23 days ago about 1 year ago
C WebAssembly
- GNU General Public License v3.0 or later
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.

assembly

Posts with mentions or reviews of assembly. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-14.
  • Should you add screenshots to documentation?
    8 projects | news.ycombinator.com | 14 Dec 2023
    When you're learning something for the first time, it can be hard to know what mental model you need to have to be effective with the tool.

    Some documentation is reference material. With reference material you might navigate the reference material in a particular traversal to get what you need to do what you want.

    But at the beginning of your journey, you need to be taught a "flow" an expected pattern of operation to build up the right mental model of how an average session with the tool works. For programming this might be the edit file, compile, run, debug loop, or TDD or IntelliJ's build and deploy. Or a CI system commit, push, deploy, promote cycle. Or kubernetes kubectl edit, apply.

    I opened the "dining philosophers TLA+" example and ran it - this seemed to be an affordance of the TLA+ Toolbox GUI which was straightforward to understand.

    But then I tried to use the tool with my own. I interpreted the existing code of the dining philosophers and tried to make my own ringbuffer model.

    It took me a while that I needed to update this screen to put in the following details that I have filled in on the screenshot:

    https://github.com/samsquire/assembly/blob/main/screenshots/...

    You have to put your entrypoint in the "temporal formula" and then put your model arguments on the right hand side.

    I was able to piece together the operation of this tool by piecing together various reference details together, it wasn't until I saw that screenshot I referenced in my OP that I realised I needed to do that step to get the PlusCal code to update the TLC code that follows it. I was wondering why it didn't work until I saw that screenshot.

  • Fiber in C++: Understanding the Basics
    8 projects | news.ycombinator.com | 24 Sep 2023
    Thank you for this in-depth article.

    I am a less than a C++ beginner but I asked Stack Overflow how to run C++ coroutines in a thread pool. It seems coroutines in C++20 are unfinalised but don't quote me on that but I did get some sourcecode for older versions of the C++20 standard.

    I used Marce's Col's excellent blog post about how to create coroutines in assembly by adjusting the RSP pointer.

    https://blog.dziban.net/posts/coroutines/

    I extended Marce's code to run the coroutines in kernel threads:

    https://github.com/samsquire/assembly (see threadedcoroutines.S)

    I have been thinking of coroutines in terms of query compilation for database engines and the volcano query model and this article:

    https://www.chiark.greenend.org.uk/~sgtatham/coroutines.html

    Tying together two pieces of code that call eachother in push or pull driven style is really powerful. Or if you're running multiple independent tasks that need their own state. This as I understand it is the original intent of object orientation that Alan Kay wanted and is represented by Erlang and partly Go.

    Specifically, I am thinking of compiler created coroutines where code can be interleaved at compile time rather than at runtime.

  • Philosophy of Coroutines
    7 projects | news.ycombinator.com | 1 Sep 2023
    Thank you for your ideas and thoughts.

    This might be relevant - I've been playing around with some assembly to unwind the stack, but it occurred to me I don't need to pop the stack to scan through it. So like C++ exception handling (I learned about it in the Itanium C++ ABI) or algebraic effects, you can scan memory if you have access to the stack start in memory (I do that by storing the rsp somewhere in .global main) in theory it's just data.

    I need to generate sections of lookup data for range information for associating .text code section addresses with function names.

    In theory this would also be useful for coroutines since a coroutine position/state is just a program counter position of code that you can JMP to in your yield function (that isn't a call but an offset)

    To move a coroutine from one thread to another or another machine over the network or persist to disk, let me think. We could do what C++ coroutines does and have a promise struct object that is presumably on the stack when a coroutine resumes by jumping to that coroutines location.

    I think the hard part is being stackless and persisting the current coroutine state. You could mov $COMPILER_DETERMINED_OFFSET into -10(%rbp) that promise object and then when the coroutine resumes it does a JMP -10(%rbp) in a label before the coroutine body.

    I am a beginner to assembly programming but here is my program: https://github.com/samsquire/assembly/blob/main/stackunwind....

  • Let's write a setjmp
    4 projects | news.ycombinator.com | 12 Feb 2023
    https://github.com/samsquire/assembly/blob/main/coroutines.S

    This might be useful to someone who wants to port this to C. This uses the stack switching idea. So they are stackful coroutines.

    There's also Tina a header only coroutine library

stack-switching

Posts with mentions or reviews of stack-switching. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-24.
  • WasmFX: Effect Handlers for WebAssembly
    1 project | news.ycombinator.com | 7 Nov 2023
    I first heard of algebraic effects in a presentation about Unison recorded at Strangeloop. Realizing that exceptions, async, generators, and continuations could all be unified and implemented on top of one language feature was mind expanding.

    It looks like the juicy details are in the Explainer:

    https://github.com/WebAssembly/stack-switching/blob/main/pro...

  • Fiber in C++: Understanding the Basics
    8 projects | news.ycombinator.com | 24 Sep 2023
    "Fibers", "green threads", "stack switching", "cooperative multitasking" are essentially all the same thing, they all rely on being able to switch to a different stack within the same OS thread. As such they can be implemented either in user space or by the OS.

    Only downside of the technique is that it cannot be implemented in WASM, because WASM has separate data- and call-stacks and the call stack is not accessible from within the WASM virtual machine (while 'async-await' which relies on code transformation can be implemeneted in WASM just fine).

    There is a 'stack-switching proposal' for WASM though, but I don't know how what's the state of that:

    https://github.com/WebAssembly/stack-switching

What are some alternatives?

When comparing assembly and stack-switching you can also consider the following projects:

continuation - Delimited Continuations for JavasScript

marl - A hybrid thread / fiber task scheduler written in C++ 11

context

starfx - A modern approach to side-effect and state management for web apps.

ghost-userspace

effection - Structured concurrency and effects for JavaScript

cgreenlet - Coroutines for C/C++

llvm-project - The LLVM Project is a collection of modular and reusable compiler and toolchain technologies.

pyapp - Runtime installer for Python applications

gruvi - Async IO for Python, Simplified