| 962 | |
| 963 | |
| 964 | static void initBitsProgramPointer(Transform &t) { |
| 965 | // FIXME: varies among address spaces |
| 966 | bits_program_pointer = t.src.bitsPointers(); |
| 967 | assert(bits_program_pointer > 0 && bits_program_pointer <= 64); |
| 968 | assert(bits_program_pointer == t.tgt.bitsPointers()); |
| 969 | } |
| 970 | |
| 971 | static uint64_t aligned_alloc_size(uint64_t size, uint64_t align) { |
| 972 | if (size <= align) |
no test coverage detected