| 3026 | const char* spec); |
| 3027 | |
| 3028 | unsigned simpleFrameMapTableSize(MyThread* t, GcMethod* method, GcIntArray* map) |
| 3029 | { |
| 3030 | int size = frameMapSizeInBits(t, method); |
| 3031 | return ceilingDivide(map->length() * size, 32 + size); |
| 3032 | } |
| 3033 | |
| 3034 | #ifndef AVIAN_AOT_ONLY |
| 3035 | unsigned resultSize(MyThread* t, unsigned code) |
no test coverage detected