Closed
Description
I use wllvm to build kernel 5.10.59, and extract bytecode vmlinux.bc, when I use phasar
./phasar-cli -m vmlinux.bc -D ide-solvertest
the process was killed after a while, and I found from the top command that the process need so large memory even 80G+ on macos, and process was killed by OS.
kernel could be built with clang lto, which will aggregate all the llvm ir into a whole file and optimize on it, but why phasar need so large memory to read bytecode and do the analysis?
Is this a bug?