davidtr1037 / chopper

KLEE / CSE Project
Other
42 stars 21 forks source link

Optimization: avoid expensive slicing when everything is concrete #14

Open andreamattavelli opened 7 years ago

davidtr1037 commented 7 years ago

Can you please give more details?

andreamattavelli commented 7 years ago

@davidtr1037 Suppose that I want to skip function f(a,b). If both a and b are concrete, we don't need to skip the function, slice, etc. We can simply execute it. Not easy to implement: we need to take into account also side effects on the function.