Re: [RFC/RFA] [PATCH v4 09/12] Add symbolic execution support.

2024-09-29 Thread Jeff Law
On 9/13/24 5:06 AM, Mariam Arutunian wrote: Gives an opportunity to execute the code on bit level, assigning symbolic values to the variables which don't have initial values. Supports only CRC specific operations. Example: uint8_t crc; uint8_t pol = 1; crc = crc ^ pol; during symbolic execu

[RFC/RFA] [PATCH v4 09/12] Add symbolic execution support.

2024-09-13 Thread Mariam Arutunian
Gives an opportunity to execute the code on bit level, assigning symbolic values to the variables which don't have initial values. Supports only CRC specific operations. Example: uint8_t crc; uint8_t pol = 1; crc = crc ^ pol; during symbolic execution crc's value will be: crc(8), crc(7), ... crc