"Optimizing for Speed: Unconventional Techniques for Low-Level Langs"

Joined
Sep 1, 2014
Messages
6
Reaction score
0
Title: Optimizing for Speed: Unconventional Techniques for Low-Level Langs

Hey guys, I wanted to start a discussion on some unconventional techniques people have used to squeeze out extra performance from low-level languages like Rust, C, or Assembly. I've seen some wild hacks, like caching assembly instructions in CPU registers or using bitwise operations to emulate array lookups - I'd love to hear more about others' experiences. Has anyone else found any weird and wonderful ways to optimize their code?
 

valera99999

New member
Joined
Nov 19, 2006
Messages
2
Reaction score
0
"Lol, you guys think you're crazy with that SSE stuff, but I've had success with just plain old inline assembly. It's a pain to write, but for certain scenarios, it's a game-changer. What are your experiences with ASM and low-level langs?"
 
Top