Yushan

Results 34 comments of Yushan

@spinpx ```` yushanzhang@ubuntu:~$ ulimit unlimited ```` I ran the tests seems no crash but no output from the executor: ```` yushanzhang@ubuntu:~/fuzzing/angora/tests$ ./test.sh mini + BUILD_TYPE=debug + num_jobs=1 + sync_afl= +...

You could build the whole CFG by concatenating CFG of all functions. If you have a big program, it's possible to fall into exploitation problem.

Because I need to **add functions or instrument** a Module, so I need to do the conversion.

@hosewiejacke So, it is possible to convert `ModuleRef` to `Module` in LLVM? But it's not implemented in `llvmlite`.

I checked the implementation of LLVM, but didn't see **any explicit API** to convert between these two representations.

I found how to convert to Module in LLVM and I think it's possible to implement it in llvmlite. ```` C #include "llvm-c/Core.h" ModuleRef moduleref; // assume we have this...

The suggestion solved the problem magically!!! The issue is caused by **hard-coded path**.

Is it possible to also open source the `Vagrantfile for the cloud version`? Then we could also help with debugging!

Check https://github.com/antlr/grammars-v4 for the language grammar you want to use, then `java -jar antlr-4.7.2-complete.jar -o tree_mutation/path -visitor -no-listener -Dlanguage=Cpp test.g4`. After you have the generated parsers, follow the compilation in...