| 53 | PersistentHeapAllocator::PersistentHeapAllocator() {} |
| 54 | |
| 55 | bool PersistentHeapAllocator::mark() { |
| 56 | model.shoe.beforeGC(); |
| 57 | return true; |
| 58 | } |
| 59 | |
| 60 | bool PersistentHeapAllocator::mark ( char * ptr, uint64_t len ) { |
| 61 | auto size = (len + 15) & ~15; // model.alignMask |
no test coverage detected