| 340 | } |
| 341 | |
| 342 | expr Byte::nonptrValue() const { |
| 343 | if (!does_int_mem_access) |
| 344 | return expr::mkUInt(0, bits_byte); |
| 345 | unsigned start = padding_nonptr_byte() + sub_byte_bits(); |
| 346 | return p.extract(start + bits_byte - 1, start); |
| 347 | } |
| 348 | |
| 349 | expr Byte::numStoredBits() const { |
| 350 | unsigned start = padding_nonptr_byte() + size_byte_number(); |
no test coverage detected