Open
Description
Some people have been complaining about RGBDS performance being subpar. With the growing complexity of the codebase, particularly the increasing amount of features—especially for RGBASM—, I am worried about how taxing a given change may be on the overall performance.
This is split in two sub-problems:
Profiling
To know how slow the programs currently are, we should identify their processing bottlenecks. I did that with perf
once, but the data was fairly lackluster beyond "60% of your time is spent inside yyparse
". Maybe gprof
would be better, or something else?
- Decide what profiler(s) to use.
- Pick codebases to profile on.
- Interpret data, identify improvements.
- DO IT
Measuring the performance impact of changes
- Decide on a strategy to follow regarding breaking changes
- Pick codebase(s) to measure on
- Set up measurement script
- Integrate with CI (?)
- Measure whether
mmap
is actually worth it, in several scenarios (macro-heavy vs. largely linear, for ex.)