| 72 | std::atomic<size_t> freed[CATEGORY_COUNT][CARDINALITY_COUNT]; |
| 73 | |
| 74 | Stats() { |
| 75 | for (int i = 0; i < CATEGORY_COUNT; ++i) { |
| 76 | for (int j = 0; j < CARDINALITY_COUNT; ++j) { |
| 77 | made[i][j] = freed[i][j] = 0; |
| 78 | } |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | ~Stats() { |
| 83 | // Hack for func data weakly owned by V8 heap. |
nothing calls this directly
no outgoing calls
no test coverage detected