Changes between Version 37 and Version 38 of Sysel
- Timestamp:
- 2011-03-06T21:02:36Z (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Sysel
v37 v38 15 15 16 16 || '''Sub-project name''' || '''Status''' || '''Description''' || 17 || Sysel Bootstrap Interpreter (SBI) || In progress|| Interpreter of Sysel written in C. Runs in HelenOS and POSIX. ||18 || Sysel Compiler Toolkit (NNPS) || Not started|| Modular compiler of Sysel written in Sysel itself. To produce C and/or LLVM IR.17 || Sysel Bootstrap Interpreter (SBI) || Mostly || Interpreter of Sysel written in C. Runs in HelenOS and POSIX. || 18 || Sysel Compiler Toolkit (NNPS) || In progress || Modular compiler of Sysel written in Sysel itself. To produce C and/or LLVM IR. 19 19 20 20 == SBI == 21 21 22 SBI is an interpreter of Sysel currently in development. It is available stand-alone for POSIX or bundled with HelenOS (only in ''Bazaar repository'', not yet in a stable release). You can run it with the command "`sbi `''source_file.sy''". Demos that you can run are available in `/src/sysel/demos`. Source files comprising the library are in `/src/sysel/lib`.22 SBI is an interpreter of Sysel. It is available stand-alone for POSIX or bundled with HelenOS (only in ''Bazaar repository'', not yet in a stable release). You can run it with the command "`sbi `''source_file.sy''". Demos that you can run are available in `/src/sysel/demos`. Source files comprising the library are in `/src/sysel/lib`. 23 23 24 24 You can also run `sbi` without parameters to enter interactive mode. 25 26 SBI still has some missing features, but covers enough of the language to start development of NNPS. 25 27 26 28 === Synopsis of current SBI features === … … 39 41 === Missing SBI features === 40 42 41 Should be addressed before phase 2:43 More important: 42 44 * Access control 43 45 * ~~Method overloading~~ (rejected) … … 46 48 * Property overriding 47 49 48 Not necessary for phase 2:50 Less important: 49 51 * Division 50 52 * Structs … … 56 58 57 59 * Add cspan to all error and warning messages. 58 * Most run-time errors should have been caught during static checking. They need to be reviewed, ef ectiveness of static checking verified and run-time errors converted to asserts.60 * Most run-time errors should have been caught during static checking. They need to be reviewed, effectiveness of static checking verified and run-time errors converted to asserts. 59 61 * All errors should be handled gracefully. Calls to `exit()` must be eliminated. 60 62 … … 67 69 NNPS will be bootstrapped using SBI. That is by running SBI(NNPS(NNPS)) we will obtain a binary version of NNPS. This process will presumably require 'significant' computing resources since SBI is rather slow and consumes a lot of memory. Once compiled to binary form, NNPS should be much more modest. 68 70 69 Currently only the NNPS lexer has been implemented (as an experiment). When all missing SBI features listed as ''Should be addressed before phase 2'' have been addressed, development focus should switch from SBI to NNPS. 71 Currently the NNPS lexer and skeleton parser has been implemented (it verifies that input is syntactically valid, but nothing else). I am now focusing on developing NNPS while simultaneously improving SBI where needed. 72 73 NNPS shall process the code in several separate stages. The first few are common with SBI: 74 75 || Parsing || Lex and parse source files to produce a syntax tree || 76 || Ancestry resolution || Determine ancestry of classes and interfaces || 77 || Typing || Annotate syntax tree with static types and make all type conversions explicit || 78 79 While the remaining are specific to NNPS: 80 81 || Code lowering || A.k.a. code generation. Produce CFG with linear blocks of instructions. Implements/eliminates structured code and OO features. || 82 || Data lowering || Implements/eliminates structured data, strings, big integers. We get a CFG again, but with a different instruction set. || 83 || Output translation || Conversion to the desired output format (LLVM IR, C). Straightforward. || 84 85 From the ''code lowering phase'' we obtain a CFG where the instructions operate on structured data (objects, arrays), but the code is strictly procedural (functions, but no methods, no inheritance). The ''data lowering phase translates'' these instructions into another instruction set that is more like an abstract CPU instruction (or LLVM IR). Thus in this phase, we need to implement the objects, arrays, strings and big integers. The ''output translation'' should be a simple 1-1 translation. 70 86 71 87 == Other Links ==