this post was submitted on 18 Feb 2024
44 points (100.0% liked)

Rust

7246 readers
15 users here now

Welcome to the Rust community! This is a place to discuss about the Rust programming language.

Wormhole

!performance@programming.dev

Credits

  • The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)

founded 2 years ago
MODERATORS
 

Can we make a Rust program that’s as small as it’s assembler equivalent?

top 2 comments
sorted by: hot top controversial new old
[–] Vorpal@programming.dev 11 points 2 years ago

That assembly program the author compares to is waay bloated. This guy managed with 105 bytes: https://nathanotterness.com/2021/10/tiny_elf_modernized.html (that is with overlapping part of the code into the ELF header and other similar level shenanigans). ;)

All kidding aside, interesting article.

[–] leanleft@lemmy.ml 1 points 2 years ago

i think nothing can outperform simple asm for simple operations.