| 339 | } |
| 340 | |
| 341 | expr Pointer::blockSizeAlignedOffsetT() const { |
| 342 | expr sz = blockSizeAligned(); |
| 343 | return bits_for_offset > bits_size_t ? sz.zextOrTrunc(bits_for_offset) : sz; |
| 344 | } |
| 345 | |
| 346 | expr Pointer::reprWithoutAttrs() const { |
| 347 | return p.extract(totalBits() - 1, bits_for_ptrattrs); |
no test coverage detected