| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | explicitly store predecessors in each block | 2023-06-21 | 1 | -4/+4 | |
| | | |||||
| * | amd64: conform to ABI for varargs func calls | 2023-06-20 | 1 | -1/+0 | |
| | | |||||
| * | improve codegen for div a little (bikeshedding) | 2023-06-20 | 1 | -0/+5 | |
| | | |||||
| * | fix regression wiht ret args not being fixed | 2023-06-20 | 1 | -2/+7 | |
| | | |||||
| * | fix out of bounds read | 2023-06-20 | 1 | -0/+1 | |
| | | |||||
| * | don't lower params and args to registers in abi0 | 2023-06-20 | 1 | -2/+60 | |
| | | | | | | it's better to do it later, currently in isel(), but perhaps in a pre-isel abi1 pass | ||||
| * | fix cls logic for comparison instrs | 2023-06-20 | 1 | -1/+1 | |
| | | | | | | | | | previously instr.cls always represented the output dataclass. this doesn't work for comparisons because we know the output is always a boolean integer and we care about the actual comparison dataclass. so now .cls represents the operation dataclass, which matches the result class except for comparisons where the result is always KI4V | ||||
| * | backend: compile comparison instrs and branches | 2023-06-19 | 1 | -16/+102 | |
| | | |||||
| * | fix isel & emit for sym constants | 2023-06-19 | 1 | -8/+6 | |
| | | |||||
| * | add endian.h for endian dependent stuff | 2023-06-18 | 1 | -0/+1 | |
| | | |||||
| * | ELF output static data | 2023-06-18 | 1 | -1/+1 | |
| | | |||||
| * | basic ELF output | 2023-06-17 | 1 | -9/+9 | |
| | | |||||
| * | misc | 2023-06-17 | 1 | -3/+3 | |
| | | |||||
| * | imrpove emit() | 2023-06-14 | 1 | -0/+2 | |
| | | |||||
| * | add spilling for function calls, misc fixes | 2023-06-14 | 1 | -8/+10 | |
| | | |||||
| * | simpler handling of large constants in IR | 2023-06-14 | 1 | -16/+14 | |
| | | |||||
| * | lowering of structcopy | 2023-06-13 | 1 | -2/+2 | |
| | | |||||
| * | use a hashtable for addr refs | 2023-06-13 | 1 | -3/+2 | |
| | | |||||
| * | lower allocas in isel() instead of emit() and misc fixes | 2023-06-13 | 1 | -49/+54 | |
| | | |||||
| * | xor reg,reg | 2023-06-12 | 1 | -1/+12 | |
| | | |||||
| * | dec,inc,sub | 2023-06-12 | 1 | -1/+17 | |
| | | |||||
| * | something with phi | 2023-06-12 | 1 | -1/+1 | |
| | | |||||
| * | register renaming and such | 2023-06-12 | 1 | -9/+32 | |
| | | |||||
| * | remove RPARAM, add Oparam, lower args/rets to abi regs in abi0 | 2023-06-11 | 1 | -21/+5 | |
| | | |||||
| * | isel skeleton | 2023-06-10 | 1 | -0/+247 | |