Freestanding programming language
Go to file
Sasha Koshka 9d43ef75ee Changed go.mod version to 1.19 2024-02-21 13:49:46 -05:00
analyzer entity.Key now has an optional method field 2024-02-19 12:05:13 -05:00
assets Add logo to readme 2024-01-25 07:42:32 +00:00
cli cli package now prints out usage correctly 2024-02-20 01:27:26 -05:00
cmd/fsplc Module search paths are more useful now 2024-02-21 13:45:51 -05:00
compiler Module search paths are more useful now 2024-02-21 13:45:51 -05:00
design Reflected those changes in unit design doc 2024-02-21 13:46:26 -05:00
entity Compiler understands compiling to . 2024-02-20 01:48:18 -05:00
errors errors.Format does not crash when formatting normal error 2024-02-11 03:35:27 -05:00
generator Updated generator tests 2024-02-19 23:05:30 -05:00
integer Add doc comments to integer 2024-02-09 01:00:54 -05:00
lexer DESIGN.md -> README.md 2024-02-09 18:02:03 -05:00
llvm Remove llvm/README.md 2024-02-09 03:37:10 -05:00
parser Real quick add unicode test to parser 2024-02-15 12:43:09 -05:00
testcommon testcommon last column no longer has trailing spaces 2024-02-10 21:24:09 -05:00
.editorconfig Add .editorconfig 2024-02-10 19:03:38 -05:00
LICENSE License under GPLv3 2024-02-13 19:16:11 +00:00
README.md Minor readme fixes 2024-02-13 19:58:28 +00:00
go.mod Changed go.mod version to 1.19 2024-02-21 13:49:46 -05:00
go.sum Changed go.mod version to 1.19 2024-02-21 13:49:46 -05:00

README.md

FSPL

FSPL logo.

Freestanding programming language: a high-ish-level language that has absolutely no need for any runtime support, designed to work well in scenarios where dragging along a language runtime is either not possible or simply unwanted.

This language is designed for:

  • Operating system development
  • Embedded software
  • Integrating cleanly into existing software

Design Principles

  • Abstractions must happen at compile time unless absolutely necessary
  • Compiler must not generate any functions that the user does not write
  • Compiler must avoid generating logic that the user does not write

Installation

You can install the compiler by running:

go install ./cmd/fsplc

The fsplc program depends on the LLVM IR compiler (llc). If it is not found, it will attempt to use clang instead but with some features disabled. Please ensure either llc or clang are installed and accessible from your PATH before using this software.

Usage

The fsplc program may be used as follows:

fsplc [ARGUMENT(S)...] FILE(S)...

The program compiles all input files into one output. The output file type is determined by the filename extension of the output file:

Extension Type
.s Native assembly
.o Object file
.ll LLVM IR

If no output file is specified, it will default to an object file with the name of the first input file.

Object files can be linked into an executable binary using the linker of your choice, or by using a C compiler such as clang:

clang -o OUTPUT INPUT.o

Using a C compiler will link the C standard library to your program, which may be useful for building normal user applications.

Learning the language

At this time, there is no guided method of learning how to write FSPL code. However, a good place to start is the design directory, which contains a language specification among other things. The language specification goes into detail about the syntax and semantics of the language, and assuming some background in C programming, it should be enough to attain a reasonable grasp of the language.

Caveats, Bugs

Note that the compiler is still relatively early in development, and has numerous bugs. In addition, language features and syntax are not yet set in stone and may change in the future. Please report any bugs you find to the issue tracker.

Roadmap

Late 2023 (These have been implemented):

  • Top-level entities
    • Type definitions
      • Methods
    • Defined and external functions
  • Type system
    • Strict, static, bottom-up type inference
    • Pointers
    • Arrays
    • Slices
    • Structs
    • Interfaces
  • Expressions and control structures
    • Literals adapt to types via bottom-up type inference
    • Assignment
    • Variable declaration
    • Variable access
    • Function calls
    • Method calls
    • Interface behavior calls
    • Operations
    • Casting
    • Blocks
    • If/else
    • Loops

Q1 2024:

  • Union types (carry type information)
  • Match statements
  • Modules
  • Mutable/immutable variables
  • For/range loops

Q2 2024:

  • Basic, non-final standard library routines
  • Conditional compilation
  • Shared library compilation
  • Constants
  • Vararg
    • FSPL vararg using Slices
    • Optional per-function C-style vararg for compatibility

Q3 2024:

  • Generics
  • Ownership system
  • Lightweight, modularized (and of course, totally optional) standard library to replace those written in Q2

At the beginning of Q4 2024, a 1.0 version of the language will be released.