| 251 | } |
| 252 | |
| 253 | void |
| 254 | Bookkeeper::output_expr_statistics(std::ostream &out) |
| 255 | { |
| 256 | size_t i; |
| 257 | stat_expr_depths(); |
| 258 | formated_output(out, "max expression depth: ", (expr_depth_cnts.size() - 1)); |
| 259 | out << "breakdown:" << endl; |
| 260 | for (i=0; i<expr_depth_cnts.size(); i++) { |
| 261 | if (expr_depth_cnts[i]) { |
| 262 | out << " depth: " << i << ", occurrence: " << expr_depth_cnts[i] << endl; |
| 263 | } |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | void |
| 268 | Bookkeeper::output_pointer_statistics(std::ostream &out) |
nothing calls this directly
no test coverage detected