|
You are here |
blog.m-ou.se | ||
| | | | |
clemenswinter.com
|
|
| | | | | I recently implemented a small program to visualize the inner workings of a scheme that compresses floating point timeseries by XORing subsequent values. The resulting visualizations are quite neat and made it much easier for me to understand this beautiful algorithm than any of the explanations that I had previously encountered. Hacker News (280 points,... | |
| | | | |
coredumped.dev
|
|
| | | | | In this post, we are going to take a deep dive into pointer tagging, where metadata is encoded into a word-sized pointer. Doing so allows us to keep a compact representation that can be passed around in machine registers. This is very common in implementing dynamic programming languages, but can really be used anywhere that additional runtime information is needed about a pointer. We will look at a handful of different ways these pointers can be encoded and see how the compiler can optimize them for diff... | |
| | | | |
orlp.net
|
|
| | | | | ||
| | | | |
boricj.net
|
|
| | | In this series of articles, we will study a program written in C that prints the ASCII table on its standard output. This particular program will: use the Executable and Linkable Format for its binary artifacts; target the 32-bit, little endian MIPS III instruction set architecture; run on the Linux operating system. | ||