The expectation is that new instrumented code will add global variable
metadata to the .ASAN$GL section, and we will use this new code to
iterate over it.
This technique seems to break when using incremental linking, which
seems to align every global to a 256 byte boundary. Presumably this is
so that it can incrementally cope with global changing size. Clang
already passes -incremental:no as a linker flag when you invoke it to do
the link step.
will this work in the presence of multiple DSOs?
I.e. if asan rt is on one DSO and the callback comes from the other.
(Just asking, I don't remember how this is done on Windows)