|
You are here |
hbfs.wordpress.com | ||
| | | | |
www.nayuki.io
|
|
| | | | | ||
| | | | |
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... | |
| | | | |
projectf.io
|
|
| | | | | Sometimes you need more precision than integers can provide, but floating-point computation is not trivial (try reading IEEE 754). You could use a library or IP block, but simple fixed point maths can often get the job done with little effort. Furthermore, most FPGAs have dedicated DSP blocks that make multiplication and addition of integers fast; we can take advantage of that with a fixed-point approach. | |
| | | | |
alexandrugris.github.io
|
|
| | | These are my first steps in Go, this time learning how to build web services. The post touches handling requests, json serialization, middleware, logging, da... | ||