Journal Articles

Overload Journal #146 - August 2018 and Programming Topics
Browse in : All > Journals > Overload > o146 (7)
All > Topics > Programming (877)
Any of these categories
Options:
View Article Map
View Archives

Note: when you create a new publication type, the articles module will automatically use the templates user-display-[publicationtype].xt and user-summary-[publicationtype].xt. If those templates do not exist when you try to preview or display a new article, you'll get this warning :-) Please place your own templates in themes/yourtheme/modules/articles . The templates will get the extension .xt there.

Cache-Line Aware Data Structures

Bob Schmidt

06 August 2018 18:56:32 +01:00

Structuring your program to consider memory can improve performance. Wesley Maness and Richard Reich demonstrate this with a producer–consumer queue.

Note: when you create a new publication type, the articles module will automatically use the templates user-display-[publicationtype].xt and user-summary-[publicationtype].xt. If those templates do not exist when you try to preview or display a new article, you'll get this warning :-) Please place your own templates in themes/yourtheme/modules/articles . The templates will get the extension .xt there.

miso: Micro Signal/Slot Implementation

Bob Schmidt

05 August 2018 18:45:43 +01:00

The Observer pattern has many existing implementations. Deák Ferenc presents a new implementation using modern C++ techniques.

Note: when you create a new publication type, the articles module will automatically use the templates user-display-[publicationtype].xt and user-summary-[publicationtype].xt. If those templates do not exist when you try to preview or display a new article, you'll get this warning :-) Please place your own templates in themes/yourtheme/modules/articles . The templates will get the extension .xt there.

(Re)Actor Allocation at 15 CPU Cycles

Bob Schmidt

04 August 2018 18:37:42 +01:00

(Re)Actor serialisation requires an allocator. Sergey Ignatchenko, Dmytro Ivanchykhin and Marcos Bracco pare malloc/free down to 15 CPU cycles.

Note: when you create a new publication type, the articles module will automatically use the templates user-display-[publicationtype].xt and user-summary-[publicationtype].xt. If those templates do not exist when you try to preview or display a new article, you'll get this warning :-) Please place your own templates in themes/yourtheme/modules/articles . The templates will get the extension .xt there.

How to Write a Programming Language: Part 2, The Parser

Bob Schmidt

03 August 2018 18:32:59 +01:00

We’ve got our tokens: now we need to knit them together into trees. Andy Balaam continues writing a programming language with the parser.

Note: when you create a new publication type, the articles module will automatically use the templates user-display-[publicationtype].xt and user-summary-[publicationtype].xt. If those templates do not exist when you try to preview or display a new article, you'll get this warning :-) Please place your own templates in themes/yourtheme/modules/articles . The templates will get the extension .xt there.

Compile-time Data Structures in C++17: Part 1, Set of Types

Bob Schmidt

02 August 2018 18:29:36 +01:00

Compile time data structures can speed things up at runtime. Bronek Kozicki details an implementation of a compile time set.