4.2 KiB
4.2 KiB
"quick" / "easy" fixes
- for global initialization cycles, report also starting and ending lines
milestones
-
interop type foundation (implemented)
- unsigned integers, floats, and target-dependent c scalar types
- atomic
c_*primitive types remain distinct until target-aware lowering c_funcand pointer-onlyc_struct;cremains an ordinary identifier- keep binding mutability (
::/=) separate from element or pointee mutability (mut) - arrays and indexing
[N]T: array withNlogical elements[N;S]T: array withNlogical elements followed by sentinelS
- pointers
@T/@mut T: non-null single-item pointer without arithmetic*T/*mut T: non-null many-item pointer with arithmetic- optional pointers represent nullable pointers (i.e.
?@T/?@mut T,?*T/?*mut T)
- slices and slicing
[]T: pointer and length[;S]T: pointer and length with a sentinel invariant- ordinary slices do not guarantee null termination
- string literals as immutable sentinel slices backed by static arrays (superseded by milestone 3.5)
- character literals
- optionals with trapping unwrap and fallback operations
- native structs with compiler-controlled layout
- pointer-only
c_structsupport with target c layoutSome :: c_struct { ... }: defined c-layout structSome :: c_struct: opaque c-layout struct- passing c structs by value was deferred until milestone 4.1
-
restricted c header imports (implemented)
- treat an imported header as a synthetic, file-local package namespace
native :: import "relative/path/to/header.h"
- import functions, typedefs, scalar types, and pointers to opaque records
- keep implementation linking separate from header imports
- cache imports by canonical header path and target/include/define configuration
- diagnose unsupported declarations when referenced
- dynamically load libclang behind a replaceable c importer boundary
- treat an imported header as a synthetic, file-local package namespace
-
c variadic calls (implemented)
- represent c variadics as a fixed parameter count plus a variadic flag
- apply c default argument promotions at call sites
- emit LLVM c-variadic declarations and calls
- keep native brolang variadics and tuple design separate
3.5. sentinel pointers and c strings (implemented)
- add sentinel many-item pointers:
[*;S]T - represent string literals as immutable pointers to statically stored sentinel arrays:
@[N;0]u8 - arrays expose
.lenbut no.ptr; slices and pointers-to-arrays expose sentinel-preserving.ptr - allow pointer-to-array
.len, indexing, slicing, pointer decay, and slice construction without explicit dereference - preserve or forget sentinel information through compatible pointer and slice coercions without copying arrays
- allow zero-terminated immutable byte pointer views to convert to immutable
*c_charand[*;0]c_char - keep
u8andc_chardistinct to preserve target-dependent scalar c semantics - reject general
u8/c_charinterchange, slice-to-pointer coercion, and conversion to mutable c character pointers
- advanced c interop
- by-value records and unions (implemented)
- complete plain imported structs/unions and manual
c_structvalues - fixed C arrays inside imported records
- keyed struct literals and exactly-one-field union literals
- field reads/writes, storage, and fixed-signature calls/returns
- aarch64-macos small aggregate, homogeneous float aggregate, and indirect ABI lowering
- keep incomplete, bitfield, packed, flexible-array, qualified-field, and otherwise non-plain records pointer-only
- keep C variadic record arguments unsupported
- complete plain imported structs/unions and manual
- function pointers and callbacks (implemented)
- imported C function pointer typedefs lower to nullable pointer types
- manual
?*c_func(...) Tcallback type spelling - concrete
c_funcdeclarations/definitions can be passed as callback values - postfix calls through non-null function pointers, including
callback?(...) - fixed and C-variadic callback ABI emission through LLVM indirect calls
- external variables
- macros and static inline functions
- exporting brolang functions to c
- by-value records and unions (implemented)