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

2024-10-19 Thread Jeff Law
On 10/18/24 9:01 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 exec

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

2024-10-18 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