Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Implement bit shifting operations | Thomas Voss | 2024-06-29 | 1 | -0/+8 |
| | |||||
* | Implement ~x and x ~ y | Thomas Voss | 2024-06-28 | 1 | -0/+8 |
| | |||||
* | Do some more work to support modulus and parenthesis | Thomas Voss | 2024-06-28 | 1 | -5/+3 |
| | |||||
* | Prelimiary work on binary expressions | Thomas Voss | 2024-06-28 | 1 | -0/+8 |
| | |||||
* | Support unary plus and minus | Thomas Voss | 2024-06-26 | 1 | -1/+9 |
| | |||||
* | Support ‘…’ and ‘...’ in initializers | Thomas Voss | 2024-06-24 | 1 | -2/+3 |
| | |||||
* | Rename lots of things to make my life easier | Thomas Voss | 2024-06-22 | 1 | -21/+22 |
| | |||||
* | Store decl info in auxilliary data | Thomas Voss | 2024-06-22 | 1 | -13/+19 |
| | |||||
* | Add a comment | Thomas Voss | 2024-06-19 | 1 | -0/+5 |
| | |||||
* | Various parser fixes | Thomas Voss | 2024-06-19 | 1 | -0/+14 |
| | |||||
* | Big moves | Thomas Voss | 2024-06-18 | 1 | -2/+4 |
| | |||||
* | Begin work on the static analyzer | Thomas Voss | 2024-06-17 | 1 | -1/+1 |
| | |||||
* | Don’t hardcode _AST_LAST_ENT | Thomas Voss | 2024-06-14 | 1 | -1/+1 |
| | |||||
* | Allow identifiers in expressions | Thomas Voss | 2024-06-14 | 1 | -0/+3 |
| | |||||
* | Fix alignof() usage and a very sneaky bug | Thomas Voss | 2024-06-12 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | It might seem innocuous, but the following expression is actually quite prone to breakage: ast->kids[i].lhs = parseexpr(ast, toks); The reason is that parseexpr() and the other parsing functions return indicies into the AST, however in doing so they may find that the AST needs to grow and call astresz(). Should astresz() be called there is a chance that we will realloc() a new buffer somewhere else in memory, causing the left-hand side of the above expression to now be pointing to an invalid location in memory. To combat this we’re forced to break it up into two statements: idx_t_ lhs = parseexpr(ast, toks); ast->kids[i].lhs = lhs; | ||||
* | Assert that we don’t have too many tokens | Thomas Voss | 2024-06-11 | 1 | -0/+5 |
| | |||||
* | Remove ‘soa’ from lots of identifiers | Thomas Voss | 2024-06-11 | 1 | -2/+2 |
| | |||||
* | Be consistent with the *_t_ suffix for typedefs | Thomas Voss | 2024-06-11 | 1 | -3/+3 |
| | |||||
* | Switch size_t indicies to be idx_t_ | Thomas Voss | 2024-06-11 | 1 | -3/+5 |
| | |||||
* | Add basic LLVM codegen | Thomas Voss | 2024-06-11 | 1 | -23/+35 |
| | |||||
* | Parse very basic declarations | Thomas Voss | 2024-06-11 | 1 | -4/+26 |
| | |||||
* | Begin work on a basic parser | Thomas Voss | 2024-06-11 | 1 | -0/+32 |