__llvm_profile_instrument_memop transitively calls calloc, thus calloc
should not be instrumented.
I saw a
calloc -> __llvm_profile_instrument_memop -> calloc -> __llvm_profile_instrument_memop -> ...
infinite loop leading to stack overflow
when the malloc implementation (e.g. tcmalloc) is built and instrumented along with the application.
We should figure out the library calls which may be instrumented and disable
their instrumentation before rolling out this change.