aboutsummaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2021-12-10Chore: merge main into laptopselfhostNicholas
2021-12-10Checkin: small sprawling updatesNicholas Noll
Small touches to multiple locations in base. Nothing major
2021-12-05Chore: updated fs·walk to use new data structuresNicholas Noll
Completes the port to our standard library (up to malloc).
2021-12-05Feat: added math libraryNicholas Noll
Used Plan9's libc as starting point. This cleans up dangling references due to loss of libc.
2021-12-05feat(huge): huge refactor (in progress).Nicholas Noll
Commented out libc includes to uncover all explicit dependencies. A large fraction has now been ported over (no testing). I did not port over the command line tools, such as the rc shell. These will be done independently - as of now I just want the library to stand independent. Compilation currently fails due to the lack of math functions.
2021-12-05Feat: basic string and memory functionsNicholas Noll
Continue filling out the basic standard lib functions. Included prototypes of the str* and mem* families. Plan to add e(str|mem) and n(str|mem) variants as well.
2021-12-05Feat: libbase partitioning. Cleaned up hash map macros.Nicholas Noll
Additionally, fixed varargs cleanup when done with fmt.write. Some system constants were added to allow for directory walking.
2021-12-04Chore(REMOVE): finished deprecation of old io functions.Nicholas Noll
The old methods were simple wrappers of C standard library functions. We've moved (painfully) over to a new interface that allows for files to live on the stack. All users of the functionality are ported over.
2021-11-20Chore: cleaned up the exit code to cleanly interface with libcNicholas
We use weak linking to ensure we clean up at exit time correctly. If libc is linked, then we call our cleanup function by registering an atexit callback with the library. If libc is not linked, we have a weak symbol that results in a noop. Similarly, if we call rt·exit while linked with libc, this immediately calls libc's exit (which will call our cleanup as we registered it). If we are not linked to libc, exit() is given as a weak link to a noop function.
2021-11-20chore: simplify makefilesNicholas
2021-11-20Chore: reorganize libutf and libfmt into baseNicholas
I found the split to be arbitrary. Better to include the functionality in the standard library. I also split the headers to allow for more granular inclusion (but the library is still monolithic). The only ugliness is the circular dependency introduced with libutf's generated functions. We put explicit prereqs with the necessary object files instead.
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-19chore: make dependence on static syscalls explicitNicholas Noll
2021-11-18feat: continued filling out system layerNicholas Noll
2021-11-18feat: filling out system layer's interfaceNicholas Noll
2021-11-18filling out system layerNicholas Noll
2021-11-18added more syscallsNicholas
2021-11-17automated platform specific code parsingNicholas Noll
2021-11-17update: sysNicholas
2021-11-17fix: mkfile namesNicholas
2021-11-15Feat: prototype of self-hosted libraryNicholas
This is very much a work in progress. Still ruminating on the structure of the library. It feels right but I want a more "social" presence - namely the ability to link to a libc seemlessly. The solution is most likely weak aliasing that musl uses - but musl itself weak aliases global symbols, e.g malloc. We would have to define weak internal symbols that musl defines as strong links but this knows too much about the internals of musl...
2021-11-12chore: simplified organizational structurelaptopNicholas
2021-11-11chore: merge master into laptopNicholas
2021-11-11chore: split up base library into individual files for smaller binariesNicholas Noll
2021-11-11feat: libfmt prototype added from plan9Nicholas Noll
2021-11-11chore: update desktopNicholas Noll
2021-11-11chore: updated old copy of mkrunewidthNicholas
2021-11-11chore: forgot to move old generatorsNicholas
2021-11-11feat: added libfmtNicholas
2021-11-11chore: libunicode -> libutfNicholas
2021-11-11feat: added libfmtNicholas
2021-11-10chore: libunicode -> libutfNicholas
2021-11-08feat(rc): added back functionality of prompt, now unicode awareNicholas Noll
2021-11-07config changes for laptopNicholas
2021-11-04Feat: input readline now unicode awareNicholas Noll
Updated our assumptions of readline to handle valid unicode input. This required integrating with an explicit library to handle unicode knowledge.
2021-10-29fix(unicode): emoji widths and readline now moves in a more unicode aware mannerNicholas Noll
2021-10-29checkinNicholas Noll
2021-10-29implemented functionality to compute rune widths from unicode dataNicholas Noll
2021-10-29chore: stop tracking auto-gen fileNicholas Noll
2021-10-29Prototype of unicode readline supportNicholas Noll
The readline functionality operated on the assumption that 1 byte = 1 character. This is obviously wrong if you input a non-ascii character. This commit temporarily removes a lot of functionality but parses input bytes in a unicode-aware manner. The outstanding problem now is 1 unicode rune != 1 column. There are double wide characters, as well as zero width runes, that further break our assumption that 1 rune = 1 character = 1 column. This is the next iteration.
2021-10-29Exposed some unicode values to library users.Nicholas Noll
I was hiding too many important constants. This commit moves them to the main exported header.
2021-10-28Feat(libunicode): cleaned up decode/encodeNicholas Noll
Additionally, decode can now apply backwards on a byte string.
2021-10-26fix(unicode): renamed functions to be easier to understand their functionsNicholas Noll
2021-10-26Feat(libunicode): Added an explicit unicode libraryNicholas Noll
Refactored code to pull out utf8 functions from base into a standalone library. Also left the required function inside arg.c so that code that calls ARG_BEGIN doesn't have to link to libunicode.
2021-10-26fix(rc): prompt during command entryNicholas Noll
2021-10-26feat(rc): keywords now recognized. for and while loopNicholas Noll
Prototypes for loops sketched. This required recognizing keywords and returning from yylex. Debugging/testing will be required.
2021-10-26chore: spaceNicholas Noll
2021-10-26chore(rename): libn -> baseNicholas Noll
2021-10-26proto(rc): control structuresNicholas Noll
2021-10-26feat(rc): added index operationsNicholas Noll