aboutsummaryrefslogtreecommitdiff
path: root/src-self-hosted/codegen/arm.zig
AgeCommit message (Collapse)Author
2020-09-21rename src-self-hosted/ to src/Andrew Kelley
2020-08-23stage2: Implement setReg, call, ret, asm for ARMjoachimschmidt557
These changes enable a Hello World example. However, all implemented codegen is not yet feature-complete. - asm only supports 'svc #0' at the moment - call only supports leaf functions at the moment - setReg uses a naive method at the moment
2020-08-23stage2: Implement genBreakpoint for ARMjoachimschmidt557
2020-08-23Start working on stage2 ARM backendjoachimschmidt557
- add codegen/arm.zig with some basic functionality (load/store, data processing, branching, software interrupts)