Illustrative pure computation slice for the conservative native compilation corridor
FROG — Free Open Graphical Language
This example illustrates the smallest natural positive slice of the first native compilation corridor: a pure typed arithmetic graph.
a ----\
+--- add ---\
b ----/ +--- multiply_by_constant --- result
constant ----------/This example is:
- pure,
- typed,
- free of UI-runtime dependence,
- free of explicit state,
- naturally compatible with native compilation.
It is therefore the first natural illustrative slice for the positive native_cpu_llvm corridor.
- Expression: canonical typed graph structure
- Language: pure arithmetic meaning
- IR: primary arithmetic execution objects and ordinary connectivity
- Lowering: SSA-friendly or equivalent pure computation preparation
- Backend contract: explicit native-CPU-friendly computation handoff
Conformance/valid/compiler/01_pure_arithmetic_is_consumableThis example is the illustrative mirror of the first positive compiler-corridor anchor.