| 336 | } |
| 337 | |
| 338 | char *AllocVariableTable::getName(int i) |
| 339 | { |
| 340 | int thisLevel = i & ((1 << LEVEL_BITS) - 1); |
| 341 | assert(thisLevel <= level); |
| 342 | if (thisLevel == level) { |
| 343 | return variableRevMap[i]; |
| 344 | } |
| 345 | assert(av_parent); |
| 346 | return av_parent->getName(i); |
| 347 | } |
| 348 | |
| 349 | void AllocVariableTable::dump() |
| 350 | { |
no outgoing calls
no test coverage detected