[profile] Fix file contention causing dropped counts on Windows under -fprofile-generateSee PR43425:https://bugs.llvm.org/show_bug.cgi?id=43425When writing profile data on Windows we were openin
[profile] Fix file contention causing dropped counts on Windows under -fprofile-generateSee PR43425:https://bugs.llvm.org/show_bug.cgi?id=43425When writing profile data on Windows we were opening profile file withexclusive read/write access.In case we are trying to write to the file from multiple processessimultaneously, subsequent calls to CreateFileA would returnINVALID_HANDLE_VALUE.To fix this, I changed to open without exclusive access and then take alock.Patch by Michael Holman!Differential revision: https://reviews.llvm.org/D70330
show more ...