-
Notifications
You must be signed in to change notification settings - Fork 13.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Many memory leaks #21840
Comments
This is still failing. |
This still fails with, for example, darwin/native-and-mach-o.objtxt. |
Thanks for the CC. I just did 'check-lld' with an asan Debug+Asserts build and I don't get any failures. Did you do anything here other than set 'LLVM_USE_SANITIZER=Address' in cmake? |
Actually, looks like leaks isn't supported on Mac OS :( |
I am able to reproduce this on linux with just CC=clang CXX=clang++ cmake ../llvm -G Ninja -DCMAKE_BUILD_TYPE=Debug -DLLVM_USE_SANITIZER=Address -DLLVM_ENABLE_ASSERTIONS=ON and running the test with ./bin/llvm-lit -v ~/llvm/lld/test/darwin/native-and-mach-o.objtxt I will attach the output. I was also able to reproduce the problem with valgrind instead of asan. I am doing a build on OS X to see if it reproduces there. |
:-( Do you have access to a linux machine (or is valgrind supported on current OS X? It used to work in the past). |
Its coming from MappingNormalizationHeap on at least a few of the tests. In the non io.outputting() case we are allocating (typically) atoms, but somehow these are getting dropped. I'd have expected all atoms to get to the pass pipeline and only be dropped by (for example) dead strip in the resolver, so i'll need to see where we are dropping the parsed atoms. |
Fixed some of these in r263676/r263677. Looking now to see what else is still leaking. |
There were a whole bunch more commits over the last few days. The final known ASan leak was fixed in r264097. UBSan is also clean as of r264234. |
Extended Description
Attached is the asan output of running just
./bin/llvm-lit -sv ./tools/lld/test/pecoff/trivial.test
The text was updated successfully, but these errors were encountered: