Changes between Version 1 and Version 2 of CottoTasklist
- Timestamp:
- 12/05/09 09:44:39 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CottoTasklist
v1 v2 11 11 - Abstract output in the profiling runcore to minimize the amount of code that cares about the output format. 12 12 - Fix CLI argument parsing so that options can be passed to the profiling runcore. 13 - It'd also be nice if parrot were smart enough to treat -Rp or -Rprof to the same as -Rprofiling . 13 - It'd also be nice if parrot were smart enough to treat -Rp or -Rprof to the same as -Rprofiling 14 - This is a trivial change to compilers/imcc/main.c 14 15 15 16 Questions: 16 17 * What are "basic blocks" in Callgrind's format? Callgrind's docs aren't at all helpful here. RTFS applies. 18 * A basic block is a straight line piece of code without any branches or branch targets. It's the smallest individual unit of code to which you can apply a compiler optimization. 17 19 18 20