chuggafan

Results 36 issues of chuggafan

This is another long-term project that should probably go hand-in-hand with my re-write, which is updating the debugger, https://github.com/yasm/yasm/tree/master/modules/dbgfmts/codeview YASM gives a nice overview of the updated CodeView format, of...

This is just a future suggestion for a bit of optimization on these newer CPUs, one of the things that slows us down a lot is the fact that we...

Long and hard one here, but well worth it since we now have SSE support: Vectorization, This is a hard topic and one that is in great research all the...

I discovered LLVM uses [this](http://www.cs.utexas.edu/users/mckinley/papers/asplos-1994.pdf) interesting paper with good effect for improving data locality. This paper is good for us to implement for a few reasons: * Cache lines matter...

- [ ] create a unit test - [x] update the example project - [x] more async methods and synchronous - [x] ToDo for me: Unscrewing what i recently did...

Essentially, I'd like to have the ability to measure how many items are going through the network in a given time frame, e.g. past 60 seconds or so, this would...

Suggestion
1.12

This does *NOT* include features such as the prefix and postfix or limit, which are needed for standards compliance. This draft PR is *KNOWN* to not build, half of this...

I'm mostly creating this issue as a reminder for me and a heads up, but the tokenizer needs to be reworked so that we can perform operations such as those...

With the rise of the C23 standard and facilities such as std_count_ones, we can and should at the very least in the backend optimize all of those operations to effectively...

C2x support requires a system similar to clang's `__has_attribute` system, https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3088.pdf (pdf page 181), IMHO, the best way to implement this would be to have a registration system in the...