We are currently in the process of converting the website to the new design. Some pages, like this one, are still broken. We appreciate your patience.
Simon Anciaux
I think that if you use VirtualAlloc to get some memory, windows uses 64 KB chunks. If you ask for…
»
Finalspace
That said there can be performance penalty if read/write crosses cache line. But this penalty com…
»
»
Pau Fernández
Thanks for the shared folder, works like a charm!
»
Mārtiņš Možeiko
First of all modern Intel CPU does not care about 2/4/8 whatever alignment for regular instruction…
»
Jeroen van Rijn
I'll look into this tomorrow, Ryan.
»
Ryan Fleury
I think it's a problem with the site... I've now noticed that several of my old blog posts are mi…
»
Ryan Fleury
CaptainKraft, Honestly I'm not sure what will happen in that situation currently, as I'm still spe…
»
Ryan Fleury
Thanks, Mr4thDimension! I'm glad you enjoyed the read. I've come to the same realization as you di…
»
Sean Barrett
Surely this never happens. I mean, I compiled and tested the simple test project that came with O…
»
Finalspace
In C aligned_alloc exists because it uses malloc. And malloc does not guarantee big enough alignm…
»
Mārtiņš Možeiko
Of course "aligned" alloc function makes sense if it internally uses function which does not guara…
»
Finalspace
This is exactly my point. OS directly gives you 4k aligned memory (via VirtualAlloc or mmap). Why…
»
Raytio
Yes I seen that very good news.
»
MelalEd32Bits
I didn't know where else to put this as I didn't want to create a new thread. But can a moderator …
»
Per Vognsen
I didn't want to make a big announcement on stream or on the repo so people rush out and buy a dev…
»
Vkar
Hi, we had some discussion in the chat. Here is my take on the spiral. Code is not meant to be goo…
»
Todd
Nice. Sublime is my fav editor now. Anyone else got any other tips for Sublime?
»
Todd
Thanks Martins! That was a beautiful explanation. I hadn't yet touched this space because I've eit…
»
MelalEd32Bits
No problem there I can code those up. I always compile my code this way. Many thanks for the pro…
»
Mārtiņš Možeiko
Yes you will, but you will need to to few minor adjustments to code. Casey is using few features f…
»
MelalEd32Bits
Hello, Looking to start this project using an old version of VS. Will I be able to this ?. Thanks…
»
winnythefoo
Thanks for the tip. It didn't quite work for me, maybe because I'm still just on day 004 and somet…
»
Miguel Lechón
Since my parser takes its input character by character, I think the "insert comma" strategy is pro…
»
Simon Anciaux
I was looking for the previous blog post you mentioned. I think this is but it's not available an…
»
Miguel Lechón
Per gave some details a week ago.
»
Maykeye
Since postal delivery of boards can take weeks, it's probably good time to start looking for FPGA …
»
Maykeye
Are such parsers good at error recovery? For example, in (manually written) recursive descend it'…
»
Mikael Johansson
My concern is not about the performance, it never was. The good thing with pointers is that they a…
»
Mārtiņš Možeiko
Typically language abstracts the CPU it is compiling for. So you can write very complex operations…
»