Is there any way to execute linux commands in llvm pass and parse the objdump in it.
For example in python we can do as follows:
os.system('gcc example.c -o example')
os.system('objdump -o example > parsed.txt')
and parse it by using regular expression.So, similarly can we do it in llvm pass as well?