aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2021-11-20Feature: self hosting prototype implementedNicholas Noll
This is a large change. In order to remove myself from libc's arcane interface, I implemented an independent runtime layer. It is based on musl's wonderful implementation mostly. Critically, if libc is linked to the program, then we cooperate. Namely, we call start main and let libc do all initialization. If not, then we have a noop defined in rt3.a. The general structure of the file is: 1. sys/$os/$arch contains all architecture dependent code 2. sys/$os/port contains all code that depends on the os, but is portable 3. rt/$arch contains all the runtime architecture dependent code 4. rt/* contains the portable runtime code. Obviously testing is needed. Specifically, while code is checked in for the most popular architectures, it only has been tested on one computer! Overall this is exciting and as been educational.
2021-11-18feat: filling out system layer's interfaceNicholas Noll
2021-11-17fix: mkfile namesNicholas
2021-11-17checkinNicholas
2021-11-16checkinNicholas Noll
2021-11-16Feat: added fd duplicationsNicholas Noll
2021-11-16chore: integrated redir codeNicholas Noll
2021-11-16Feat: added heredocsNicholas Noll
Heredocs are simply strings written to tmp files. There was minimal bug testing here. Also, various bug fixes are included
2021-11-15Feat: added functionsNicholas
2021-11-15Feat: added match keywordNicholas
However, it is not tested in the slightest.
2021-11-15Feat: globbingNicholas
Introduced shell globbing
2021-11-15Fix: Qsort had bad macro captureNicholas
2021-11-15Feat: added if/else branching and switch statementNicholas
Unsure about my modification to the language. I found the parsing of the case body within switches to be odd - specifically that it parses liberally and then checks that it has case -> cmd structuring while it walks the code. This means the language is more permissive than the semantics. I modified it to be more explicit, but at the cost of having to end each case statement with a semicolon. I wanted a colon, but this is a valid word character and thus will be lexed as part of the word.
2021-11-15Chore: updated build pathsNicholas
2021-11-12chore: error->intNicholas
2021-11-12chore: simplified organizational structurelaptopNicholas
2020-04-19chore: reorganized structure to allow for more parallel projectsNicholas Noll
2020-04-19chore: removed bufio from treeNicholas Noll
2020-04-18feat: added prototype of io/buffered ioNicholas Noll
2020-04-18test: added prime sieve test of coroutinesNicholas Noll
2020-04-17chore: update naming & calling conventionsNicholas Noll
2020-04-17feat: added co-routinesNicholas Noll
2020-04-17chore: basic maintenanceNicholas Noll
2020-04-17chore: move fluff out of source code directoryNicholas Noll
2020-04-17chore: added license and initial READMENicholas Noll
2020-04-17init: prototype of code skeletonNicholas Noll