fmm icon indicating copy to clipboard operation
fmm copied to clipboard

The uncurried minimal functional programming language for CPS transformation

Results 9 fmm issues
Sort by recently updated
recently updated
newest added

# Problem - Cloning `String`s is expensive. # Solution - use `Rc` for strings in IR.

bug

# Problem - Type check with structural typing is complex and takes a long time. - LLVM 4.0 (or 3.0?) switched to full nominal typing for this reason. # Solution...

enhancement
question

- `Source` -> `Cps` - Or `None`? - `Target` -> `C`

question

See a compatibility table of calling conventions in readme.

enhancement

# Problem - There are no function attributes available. - e.g. `inline`, `nounwind` - Therefore, certain optimization or hinting to backends are impossible. # Solution - Add `attributes` field to...

enhancement

- The function pointers to continuations which are passed as an argument to every function currently can be stored in stacks. - Can it omit some extra stack operations?

enhancement
question

- Forbid bitwise operations with float types.

enhancement
question

- But we don't want too large alignment, which increases memory usage... https://github.com/raviqqe/fmm/blob/37c59628346293e085241f631b2e23d1799de24e/fmm/src/analysis/cps/stack.rs#L95

enhancement
help wanted