Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Abstract Interpretation in LLVM

I need to use abstract interpretation to do some analysis using LLVM. Is this possible? or I need to use analysis tools easier. If I could do that by LLVM , which classes would help me to formulate the statements from the original source code to get the relations between the variables (and the possible ranges of values for each variable)

like image 722
R.Omar Avatar asked Dec 12 '15 12:12

R.Omar


1 Answers

You can have a look at KLEE which is a symbolic interpreter for LLVM bitcode: https://github.com/klee

like image 193
box Avatar answered Sep 25 '22 00:09

box