Native Type Mappings

Native Type Mappings

This chapter defines how F# types map to native representations in Clef compilation.

Overview

Clef uses familiar F# syntax with native semantics. The compiler (CCS) resolves types to native representations at compile time, not to BCL types.

Principle: Users write standard F# type names. CCS provides native semantics transparently.

The Universal Base Type obj Is Not Available

In managed F#, all types inherit from System.Object (aliased as obj). This enables:

  • Boxing value types to heap-allocated objects
  • Runtime type information and reflection
  • Heterogeneous collections (obj list)
  • Generic %A formatting via runtime inspection

Clef eliminates obj entirely. There is no universal base type. The compiler SHALL reject any code that references obj or System.Object.

The foreign pair of JavaScript Boundary Semantics (JsValue, JsRef<'T>) does not reintroduce a universal type, and this section’s prohibition stands unchanged wherever that chapter is in force. The universal type’s hazard is subsumption, the unmarked conversion that lets any value become the universal type silently; the pair participates in no subtyping relationship, its injection is explicit at declared boundary functions, and its only elimination is narrowing.

Rationale

Managed F# CapabilityWhy It Requires objClef Alternative
Boxing (box x)Wraps value in heap objectNot needed; value types stay value types
Unboxing (unbox x)Extracts value from objectNot available; no boxed values exist
%A / %O formattingRuntime type inspectionSRTP-based formatting with compile-time dispatch
obj listHeterogeneous collectionDiscriminated union with explicit cases
Downcasting (:?>)Runtime type checkPattern matching on discriminated unions
typeof<'T>Runtime type tokenNot available; types are compile-time only

Why obj Cannot Exist in Native Compilation

  1. No runtime type information: Native binaries do not carry type metadata. There is no mechanism to inspect a value’s type at runtime.

  2. No garbage collector: The obj type implies heap allocation with GC-managed lifetime. Clef uses deterministic, scope-based memory management.

  3. Full static resolution: All types are resolved at compile time. Generic type parameters are monomorphized (specialized at each call site). Type erasure to obj is unnecessary and would lose type safety.

  4. SRTP replaces runtime dispatch: Where managed F# uses obj and runtime dispatch (like printf "%A"), Clef uses statically resolved type parameters with compile-time method resolution.

Migrating Code That Uses obj

Code using obj must be refactored to use type-safe alternatives:

Heterogeneous collections:

// DOES NOT COMPILE in Clef
let values : obj list = [box 1; box "hello"; box 3.14]

// Use discriminated union instead
type Value = 
    | Int of int 
    | Str of string 
    | Float of float
let values : Value list = [Int 1; Str "hello"; Float 3.14]

Polymorphic formatting:

// DOES NOT COMPILE in Clef  
let show (x: obj) = sprintf "%A" x

// Use SRTP with operator overloading
type Showable = Showable
    with static member inline ($) (Showable, x: int) = intToString x
         static member inline ($) (Showable, x: string) = x
         // ... additional overloads

let inline show x = Showable $ x

Type-based dispatch:

// DOES NOT COMPILE in Clef
let process (x: obj) =
    match x with
    | :? int as i -> handleInt i
    | :? string as s -> handleString s
    | _ -> handleOther ()

// Use discriminated union with exhaustive matching
type Input = IntInput of int | StringInput of string
let process (x: Input) =
    match x with
    | IntInput i -> handleInt i
    | StringInput s -> handleString s

Compile-Time Metaprogramming

The absence of obj and System.Reflection does not leave Clef without metaprogramming capabilities. Three F# features provide typed, compile-time metaprogramming that surpasses what reflection-based approaches can offer:

FeatureRoleReflection Equivalent
Quotations (Expr<'T>)Encode program fragments as inspectable dataMethodInfo, Expression<T>
Active PatternsCompositional structural recognitionGetType(), type discrimination
Computation ExpressionsContinuation capture as notationCallback-based async, monadic patterns

Why This Matters

Other native-compiled ML-family languages lack typed metaprogramming:

CapabilityOCamlRustClef
Typed quotationsNoNoYes
Pattern-based recognitionMatch onlyMatch onlyActive patterns
Continuation notationNoNoComputation expressions
MetaprogrammingPPX (string-based)proc_macro (token-based)Quotations (typed)

F# quotations carry full type information through transformations. OCaml’s PPX system and Rust’s procedural macros operate on strings or token streams - they lack the type safety that quotations provide.

Quotations as Semantic Carriers

Quotations encode constraints and metadata as compile-time data that the compiler can inspect:

// Peripheral descriptor carried as typed quotation
let gpioDescriptor: Expr<PeripheralDescriptor> = <@
    { Name = "GPIO"
      BaseAddress = 0x48000000un
      MemoryRegion = Peripheral }
@>

The compiler extracts semantic information from quotations during PSG construction. No runtime reflection is needed - the information is available at compile time and can guide code generation (e.g., emitting volatile loads for peripheral access).

Active Patterns for Structural Recognition

Active patterns enable compositional matching without type discrimination hierarchies:

// Recognize SRTP dispatch in PSG nodes
let (|SRTPDispatch|_|) (node: PSGNode) =
    match node.TypeCorrelation with
    | Some { SRTPResolution = Some srtp } -> Some srtp
    | _ -> None

// Composable usage
match currentNode with
| SRTPDispatch srtp -> emitResolvedCall srtp
| PeripheralAccess info -> emitVolatileAccess info
| _ -> emitDefault node

Active patterns compose with & and |, can be tested in isolation, and encapsulate recognition logic - capabilities that runtime type inspection cannot match.

Computation Expressions as Continuation Capture

Every let! in a computation expression captures a continuation:

maybe {
    let! x = someOption    // Bind(someOption, fun x -> ...)
    let! y = otherOption   // Bind(otherOption, fun y -> ...)
    return x + y
}

This desugaring to nested lambdas provides continuation semantics as notation. The compilation strategy depends on the computation pattern:

PatternCompilation Strategy
Sequential effects (async, state)Saturate through the suspension recipe (segments at cuts, a frame, a delimiter edge) and witness as scf.index_switch over a discriminant (DCont Representation §2, §5, §6)
Parallel pure (validated, reader)Compile to data flow (Inet regime)

Normative Requirements

NORMATIVE: System.Reflection and all reflection-based APIs SHALL NOT be available in Clef. The compiler SHALL reject any code that references reflection types or methods.

NORMATIVE: Quotations, active patterns, and computation expressions SHALL be fully supported. These features operate at compile time and impose no runtime overhead.

NORMATIVE: Quotation-based metaprogramming SHALL NOT require runtime evaluation. All quotation inspection and transformation occurs during compilation.

Primitive Types

Numeric Types

F# SyntaxNative RepresentationSizeNotes
unitZero-sized type0No runtime representation
booli81 byte0 = false, non-zero = true
intisizePlatform word4 bytes (32-bit), 8 bytes (64-bit)
uintusizePlatform wordUnsigned platform word
int8 / sbytei81 byteSigned 8-bit
uint8 / byteu81 byteUnsigned 8-bit
int16i162 bytesSigned 16-bit
uint16u162 bytesUnsigned 16-bit
int32i324 bytesSigned 32-bit
uint32u324 bytesUnsigned 32-bit
int64i648 bytesSigned 64-bit
uint64u648 bytesUnsigned 64-bit
nativeintisizePlatform wordSigned; width is the Pointer dimension of NTU Types §2.3
unativeintusizePlatform wordUnsigned; width is the Pointer dimension of NTU Types §2.3

Floating Point Types

F# SyntaxNative RepresentationSizeNotes
float / doublef648 bytesIEEE 754 double precision
float32 / singlef324 bytesIEEE 754 single precision

Character and String Types

F# SyntaxNative RepresentationSizeNotes
chari324 bytesUTF-32 codepoint (Unicode scalar value)
stringmemref<?xi8>Byte length is the memref’s dimensionUTF-8 buffer; the buffer is the value (see Strings)

Composite Types

Tuples

Tuples are laid out as contiguous structs with natural alignment:

let pair : int * float = (42, 3.14)

Layout:

┌─────────┬─────────┬─────────┐
│ int (8) │ pad (0) │ float(8)│
└─────────┴─────────┴─────────┘
Total: 16 bytes

Records

Records are named product types with field-order layout:

type Point = { X: float; Y: float }

Layout: Same as tuple of fields in declaration order.

Discriminated Unions

A discriminated-union value is a memref<Exi8> view of its {tag, payload} storage block, with E settled at saturation (Discriminated Union Representation §3). A payload that is itself arena-resident (a recursive case, a collection) is linked by a bounded index, never by an address:

type Option<'T> = None | Some of 'T

Layout:

┌──────────┬────────────────────────┐
│ Tag (i8) │ Payload (size of 'T)   │
└──────────┴────────────────────────┘
PropertyValue
Tag sizei8 for ≤256 variants
Tag values0, 1, 2… in declaration order
PayloadSize of largest variant; an arena-resident payload is an index link carrying VC-LINK (0 <= i < extent(arena)), never an address

Single-Case Unions (Newtypes)

Single-case unions have no tag overhead:

type UserId = UserId of int

Layout: Same as wrapped type (int).

Struct Alignment

Default Alignment

Structs use natural alignment based on their largest field:

Largest FieldDefault Alignment
i8, u81 byte
i16, u162 bytes
i32, u32, f324 bytes
i64, u64, f648 bytes
index (arena link), memref descriptor wordPlatform word alignment: 8 bytes on 64-bit, 4 bytes on thumbv8m/32-bit

Word alignment follows the Pointer width dimension of NTU Types §2.3; it is the platform word, not a fixed 8 bytes.

Explicit Alignment

The [<Align(n)>] attribute requests specific alignment:

[<Align(64)>]
[<Struct>]
type CacheAligned = { Value: int64 }

NORMATIVE: The compiler SHALL respect alignment requests that are:

  • Powers of two
  • Greater than or equal to natural alignment
  • Less than or equal to platform page size (typically 4096)

NORMATIVE: Alignment requests that cannot be satisfied SHALL produce a compile-time error.

Alignment and SIMD

For SIMD operations, alignment affects performance significantly:

Vector WidthRecommended Alignment
128-bit (SSE, NEON)16 bytes
256-bit (AVX2)32 bytes
512-bit (AVX-512)64 bytes

Misaligned vector loads may incur penalties or faults depending on the instruction.

Stack and Arena Allocation

NORMATIVE: Stack-allocated aligned types SHALL be placed at appropriately aligned addresses.

NORMATIVE: Arena allocators SHALL provide an alignment-aware allocation function:

Arena.allocAligned<'T> : Arena -> alignment:int -> count:int -> Ptr<'T, Arena, ReadWrite>

Intrinsic Operations

Certain operations have direct hardware support that F# loops cannot match. CCS intrinsics provide guaranteed-efficient implementations.

Bit Manipulation Intrinsics

The middle end emits each intrinsic as a target-agnostic operation. The LLVM-pathway realization is the LLVM intrinsic shown below; other target pathways (CIRCT for FPGA, JSIR for JS) realize the same operation with their own target primitives.

FunctionLLVM-pathway realizationDescription
clz : uint32 -> intllvm.ctlz.i32Count leading zeros
clz64 : uint64 -> intllvm.ctlz.i64Count leading zeros (64-bit)
ctz : uint32 -> intllvm.cttz.i32Count trailing zeros
ctz64 : uint64 -> intllvm.cttz.i64Count trailing zeros (64-bit)
popcount : uint32 -> intllvm.ctpop.i32Population count
popcount64 : uint64 -> intllvm.ctpop.i64Population count (64-bit)
bswap : uint32 -> uint32llvm.bswap.i32Byte swap
bswap64 : uint64 -> uint64llvm.bswap.i64Byte swap (64-bit)

NORMATIVE: These functions SHALL lower to the target’s native bit-manipulation primitive, not loop-based implementations. On the LLVM pathway that primitive is the corresponding LLVM intrinsic shown above.

Arithmetic Intrinsics

FunctionLLVM-pathway realizationDescription
mulhi : uint64 -> uint64 -> uint64(platform-specific)High 64 bits of 128-bit product
addCarry : uint64 -> uint64 -> uint64 -> struct(uint64 * uint64)llvm.uadd.with.overflowAdd with carry in/out

NORMATIVE: Multi-word arithmetic operations SHALL use carry-propagating instructions where available.

Usage

let extractRegime (bits: uint32) =
    let shifted = bits <<< 1
    let leadingZeros = clz shifted  // Guaranteed 1-2 cycles, not a loop
    // ... regime extraction logic
 

Fallback Behavior

On targets without hardware support for specific intrinsics:

NORMATIVE: The compiler SHALL emit efficient software fallbacks that match the semantic behavior.

NORMATIVE: The compiler MAY emit warnings when intrinsics fall back to software implementation on performance-critical targets.

Reference Types

Arrays

An array is a memref<?xT> view: the element buffer is the value, and its length is the memref’s dimension. There is no header struct and no separate length word.

let numbers : array<int> = [| 1; 2; 3 |]

Layout (the buffer; memref<?xT> at saturation):

array<'T>   memref<?xT>
┌─────┬─────┬─────┐
│ [0] │ [1] │ [2] │   contiguous, naturally aligned; extent = length
└─────┴─────┴─────┘
PropertyValue
ValueThe memref<?xT> view; Array.length is memref.dim
Element layoutContiguous, naturally aligned; monomorphized, elements are never boxed
PlacementStack, arena, or the platform’s declared program-lifetime space, selected by the lifetime lattice of Closure Representation §3.3
Bounds checkingAlways; no unsafe indexing by default (Native Type Universe §4.2)
Empty arrayA view of extent 0; never a null
NullNot representable

The view’s descriptor (base, offset, extent, stride) is a lowering artifact of the target pathway, not a Clef value; no Clef operation observes it.

Strings

A string is a memref<?xi8> view of its UTF-8 byte buffer: the buffer is the value, and its byte length is the memref’s dimension. There is no separate length header.

Layout (the buffer; memref<?xi8> at saturation):

string   memref<?xi8>
┌────┬────┬────┬─────┐
│ b0 │ b1 │ b2 │ ... │   UTF-8 bytes; extent = byte length
└────┴────┴────┴─────┘
PropertyValue
EncodingUTF-8
LengthByte count (not character count); String.byteLength is memref.dim
SlicingA memref.subview of the same buffer; zero-copy
PlacementA literal is program-lifetime and immutable: it resides in the platform’s declared immutable program-lifetime space, cited by name from the platform description (rodata on an ELF target, flash on an MCU, constant memory on a GPU, initialised BRAM on an FPGA), emitted as a memref.global. A constructed string is placed by the lifetime lattice of Closure Representation §3.3
Empty stringA view of extent 0; never a null
NullNot representable

The view’s descriptor is a lowering artifact of the target pathway, not a Clef value; no Clef operation observes it. On the JSIR pathway string is a host string and this layout does not bind (Native Type Universe §4.1).

Parameterized Types

Option

Option types use voption (value option) semantics:

let maybe : int option = Some 42

Layout: Stack-allocated tagged union (see Discriminated Unions).

PropertyValue
None tag0
Some tag1
Heap allocationNever
NullNot representable

Result

Result types are stack-allocated tagged unions:

let result : Result<int, string> = Ok 42

Layout: Tag + max(sizeof Ok payload, sizeof Error payload).

List

A list value is the index of its first node in the arena that holds the list. A node is a flat aggregate with a settled layout, a memref<Exi8> view at saturation (List Operations Representation §5):

let numbers : int list = [1; 2; 3]

Layout (per node):

list<'T> node   memref<Exi8>
┌──────────────────────┬─────────────────┬──────────────────────────┐
│ tag: i8 (Empty|Cons) │ head: 'T        │ tail: index (arena link) │
└──────────────────────┴─────────────────┴──────────────────────────┘
PropertyValue
Valueindex: the arena-relative offset of the first node
PlacementArena selected by the lifetime lattice of Closure Representation §3.3
tailindex into the arena buffer the list lives in (an arena-relative offset), never an address; a link load is one memref.load of an index
Link obligationVC-LINK: 0 <= tail < extent(arena), quantifier-free over graph literals, discharged at saturation before witnessing; 0 is the sentinel
Empty listThe sentinel node at offset 0 of the arena: tag = Empty, tail = 0 (its own index), head zero-initialised and never read. List.empty is the index literal 0 and allocates nothing
Sentinel imageExactly one program-lifetime, immutable image per element type, copied to offset 0 of every arena that hosts the type; it resides in the platform’s declared immutable program-lifetime space, cited by name from the platform description through a Resides edge (Program Hypergraph §6): rodata on an ELF target, flash on an MCU, constant memory on a GPU, initialised BRAM on an FPGA. Every arena that hosts list<'T> nodes carries a copy at offset 0, initialised when the arena is created
Sentinel immutabilityThe slot [0, sizeof(node)) is ReadOnly (Access Kinds); a store through it is the compile-time diagnostic CCS8020. cons onto the sentinel places a fresh arena node whose tail is 0; the sentinel is never mutated in place
isEmptyThe literal comparison tag = Empty (one load, one compare), equivalently index = 0; never a null check
Guard obligationVC-GUARD: the tag = Cons test dominates every read of head on the saturated graph; a dominance check, no quantifiers
Structural sharingIndex aliasing within one arena
NullNot representable

Every tail is a valid node: operations read tail unconditionally and recursion terminates at the sentinel. Layout obligations (VC-LINK, VC-GUARD, sentinel residence and immutability) are quantifier-free at saturation over the graph’s literals; the list algebra is a schema lemma proven once per recipe shape, never a per-program fixpoint.

Function Types

Direct Functions

Known call sites compile to direct calls:

let add x y = x + y
add 1 2  // Direct call, no closure
 

Closures

Functions capturing environment use closure representation:

let makeAdder n = fun x -> x + n

Form: two SSA values, never packed (Closure Representation §6.3):

fn:  func.constant @makeAdder_lambda : (memref<Exi8>, int) -> int
env: ┌─────────────────────┐
     │ n: captured value   │   memref<Exi8>, E literal at saturation
     └─────────────────────┘

MLIR Type Mappings

The middle end emits these portable forms; a target pathway lowers them (Backend Lowering Architecture). No row is a pointer: a buffer is a memref view, and a link between arena-resident nodes is a bounded index carrying VC-LINK.

F# TypeMLIR Type
unit(none - ZST)
booli8
intindex
int32i32
int64i64
floatf64
float32f32
chari32
stringmemref<?xi8>; byte length is the dimension
array<'T>memref<?xT>; length is the dimension
option<'T>memref<Exi8>: {tag, payload}, stack-placed (Option Operations)
Result<'T, 'E>memref<Exi8>: {tag, payload} as a two-case union
list<'T>index: arena link to the first node, itself a memref<Exi8> (List; List Operations Representation §5)
Map<'K, 'V>index: arena link to the root node, itself a memref<Exi8> (Map Representation §2)
Set<'T>index: arena link to the root node, itself a memref<Exi8> (Set Representation §2)
Tupletuple<...>
Recordmemref<Exi8> (settled layout)
DUmemref<Exi8> ({tag, payload}); an arena-resident payload is an index link
Function(A) -> B: a func value
Closure(fn, env): a func value (memref<Exi8>, A) -> B and an environment memref<Exi8>, never packed (Closure Representation §6.3)

Why IL Infrastructure Is Removed from CCS

Clef Compiler Service (CCS) targets native compilation via MLIR (Multi-Level Intermediate Representation), not CLR bytecode. While CCS originated from the F# Compiler Services (FCS) codebase, its type universe, compilation passes, and concurrency primitives are independently defined. Consequently, all IL-based infrastructure has been removed from the typed tree operations.

The Architecture Boundary

┌─────────────────────────────────────────────────┐
│  CCS (Clef Compiler Services)             │
│  - Type checking, resolution, inference         │
│  - Produces typed tree with native types        │
│  - NO code generation, NO IL                    │
└─────────────────────────────────────────────────┘
                      │
                      ▼ Typed Tree (native types)
┌─────────────────────────────────────────────────┐
│  Alex (Code Generation)                         │
│  - PSG traversal via Zipper                     │
│  - Platform bindings for syscalls               │
│  - MLIR emission                                │
└─────────────────────────────────────────────────┘
                      │
                      ▼ MLIR
┌─────────────────────────────────────────────────┐
│  MLIR Optimization Passes                       │
│  - Loop optimization (SCF dialect)              │
│  - Arithmetic optimization (arith dialect)      │
│  - Memory optimization                          │
└─────────────────────────────────────────────────┘
                      │
                      ▼ Portable dialects
┌─────────────────────────────────────────────────┐
│  Target Pathway (target-committing)             │
│  - LLVM pathway: LLVM IR → CPU/MCU binary       │
│  - CIRCT pathway: HW dialects → bitstream       │
│  - JSIR pathway: → JavaScript module            │
└─────────────────────────────────────────────────┘

The MLIR optimization passes and everything above them stay portable; a target is committed only at the target pathway. LLVM is one pathway among several.

Why IL Operations Are Not Stubbed

The original FCS contains IL-based operations for loop optimization, null handling, and arithmetic. These were initially stubbed during the CCS fork, but stubs produce semantically wrong results:

Stubbed FunctionWrong BehaviorWhy It’s Wrong
mkAsmExprReturns Coerce/identityShould compute arithmetic
mkILAsmCeq, mkILAsmCltReturns constant falseShould compare values
mkGetStringLengthReturns constant 0Should return actual length
mkDecrReturns expression unchangedShould decrement value

Principle: “Delete, don’t stub” - Broken stubs hide defects and produce silent wrong behavior. Complete removal makes missing functionality explicit.

What Functionality Moves Downstream

IL InfrastructureNative EquivalentLocation
TOp.ILAsm (arithmetic)MLIR arith dialect opsAlex code generation
TOp.ILCall (method calls)MLIR func.call / platform bindingsAlex code generation
Loop optimizationMLIR SCF dialect transformsMLIR optimization passes
String length/concatmemref view operations: memref.dim for length, a buffer copy for concatenationAlex code generation
Integer conversionsMLIR arith.extsi/extui/trunciAlex type lowering
Null handlingNot needed - Clef has no nullSee below

Null Is Not Representable

NORMATIVE: Clef has no null values. The null keyword and null checking operations are not available.

  • mkNull, mkNullTest, mkNonNullTest, mkNonNullCond - all removed
  • Option types (voption) replace nullable references
  • Pattern matching replaces null checks

This is consistent with Clef’s safety guarantees: no null dereference is possible because null cannot be expressed.

On the JSIR pathway, null and undefined appear in the emitted JavaScript artifact only as boundary representations selected by generated code and as the proven Option erasure of Option Operations Representation §2.1, per the confinement rule of JavaScript Boundary Semantics §8. No Clef-typed value is null or undefined on any pathway.

Removed IL Infrastructure

The following were removed from TypedTreeOps.fs:

IL Instruction Stubs:

  • ILDataType type
  • AI_ldnull, AI_cgt_un, AI_clt_un, AI_add, AI_sub, AI_div_un, etc.
  • ILInstr module
  • mkAsmExpr function

Loop Optimization (vestigial - no callers):

  • DetectAndOptimizeForEachExpression
  • mkOptimizedRangeLoop, mkRangeCount
  • mkFastForLoop
  • Pattern matchers: Int32Expr, RangeInt32Step, CompiledForEachExpr, etc.
  • IntegralConst module, IntegralRange, EmptyRange, ConstCount patterns

Null Operations:

  • mkNull, mkNullTest, mkNonNullTest, mkNonNullCond

Broken Comparison Stubs:

  • mkILAsmCeq, mkILAsmClt, mkDecr, mkGetStringLength

The Key Insight

IL-based loop optimization at the typed tree level was premature optimization at the wrong layer. Native loop optimization belongs in MLIR passes where the target architecture is known and appropriate loop transformations (vectorization, unrolling, tiling) can be applied.