On Thu, Aug 6, 2020 at 11:33 PM Yuan Ting <
yuan...@ict.ac.cn> wrote:
>
> I know from README that gollvm does not support race detector. Is there any technical problem? Is it possible to use ThreadSanitizer in LLVM to implement a workaround race detector in gollvm?
ThreadSanitizer knows a great deal about the behavior of C library
functions. In order to use it with GoLLVM, it would be necessary to
teach it about the behavior of Go library functions. This is not
impossible--the same work was done for the Go race detector--but
somebody would have to do the work.
Ian