Search Articles — Sudonull

Search Results

In this project

AsmX Raptor: Native assembler and strict typing in system programming

https://sudonull.com/asmx-raptor-native-assembler-and-strict-typing-in-system-programming

AsmX Raptor integrates assembler into the compiler's AST, offering unprecedented control and security for systems developers. Learn about the new compilation pipeline, evolution of the type system, and support for version-independent Linux kernel modules.

Elementary functions: analysis and complex properties

https://sudonull.com/elementary-functions-analysis-and-complex-properties

Strict definition of exponential, logarithm, sin/cos through complex analysis. Parametrization of the circle, natural parameter. For mathematicians and developers — study properties without simplifications. Read the full breakdown.

Elvis access modifier in C# — static access control

https://sudonull.com/elvis-access-modifier-in-c-static-access-control

How Elvis modifier ensures strict, compiler access control to private members in C#. Real examples, limitations and best practices for senior developers.

CoPoS: TSMC demands exclusivity from partners

https://sudonull.com/copos-tsmc-demands-exclusivity-from-partners

TSMC imposes strict supply bans on competitors, locking the CoPoS supply chain. Learn how this will change the chip market and why AI giants are losing choice.

Redis Lua Queue: partition order and worker pool

https://sudonull.com/redis-lua-queue-partition-order-and-worker-pool

Implementation of Redis queue on Lua for strict order in partitions, shared worker pool, retries. Benchmarks, diagrams, code. For middle/senior dev — study and implement.

From other projects

Cambodia Imposes Life Sentences for Crypto Scam Bosses

https://ymaho.com/cambodia-imposes-life-sentences-for-crypto-scam-bosses

Cambodia passes strict new law targeting online scam leaders with life in prison. Learn how crypto enables these frauds—and what it means for you.

Nutrition Shift: From Diets to Long-Term Body Support

https://ymaho.com/nutrition-shift-from-diets-to-long-term-body-support

The market is moving from strict diets to longevity supplements and health support. Learn how GLP-1 are changing nutrition and where to invest. Read the trend analysis.

Al-Nassr Under Financial Scrutiny: Saudi League Action

https://lrivo.com/al-nassr-under-financial-scrutiny-saudi-league-action

Saudi club Al-Nassr faces strict financial oversight and potential sanctions like points deduction or relegation. Learn what this means for their transfers and future. Stay informed!

Healthy eating instead of diets: trend 2026 in Russia

https://ymaho.com/healthy-eating-instead-of-diets-trend-2026-in-russia

57% of Russians choose healthy eating as a lifestyle, abandoning strict diets. Find out how demand for healthy lifestyle products is growing and why this is not a temporary fad.

From the web

Sep 19, 2008 ·

https://stackoverflow.com/questions/98650/what-is-the-strict-aliasing-rule

Sep 19, 2008 · When asking about common undefined behavior in C, people sometimes refer to the strict aliasing rule. What are they talking about?

Jun 14, 2026 ·

https://gist.github.com/shafik/848ae25ee209f698763cffee272a58f8

Jun 14, 2026 · What is the Strict Aliasing Rule and Why do we care? (OR Type Punning, Undefined Behavior and Alignment, Oh My!) What is strict aliasing ? First we will describe what is aliasing and then we can learn what being strict about it means. In C and C++ aliasing has to do with what expression types we are allowed to access stored values through.

Jul 8, 2020 ·

https://www.geeksforgeeks.org/c/strict-aliasing-rule-in-c-with-examples/

Jul 8, 2020 · Strict aliasing rule helps the compiler to optimize the code. The Strict Aliasing rule is enabled by default on optimization levels 2 and beyond, and when one tries to compile a program with aforementioned details the compiler throws warnings, though the program still compiles and can be executed, the output of such a program remains unpredictable.

Jun 23, 2026 ·

https://docs.amd.com/r/en-US/ug1079-ai-engine-kernel-coding/Strict-Aliasing-Rule

Jun 23, 2026 · The strict aliasing rule dictates that pointers are assumed not to alias if they point to fundamentally different types. char* and void* are exceptions. These can alias to any other data type. This is shown in the following graphic which shows the object universes and the associated pointers. Figure 1. Object Universes...

Jan 16, 2026 ·

https://www.tutorialpedia.org/blog/what-is-the-strict-aliasing-rule/

Jan 16, 2026 · C is celebrated for its low-level memory control, but this power comes with responsibility. One of the most misunderstood yet critical rules governing memory access in C is the ** Strict Aliasing Rule**. Violation of this rule leads to "undefined behavior" (UB)—a catch-all term for unpredictable program behavior that can range from subtle bugs to crashes. Even experienced developers often ...

Mar 15, 2016 ·

https://blog.regehr.org/archives/1307

Mar 15, 2016 · The Strict Aliasing Situation is Pretty Bad I’ll start with a quick review of the strict aliasing rules in C and C++ and then present some less well-known material. Strict Aliasing Compiler optimizations are often shot down by the potential for pointers to be aliases.

Oct 17, 2025 ·

https://iifx.dev/en/articles/460271061/compiler-optimizations-and-strict-aliasing-why-your-c-code-might-break

Oct 17, 2025 · At its heart, strict aliasing is a rule that allows the C compiler to make powerful assumptions about your code to generate highly optimized machine instructions.

Trending Now