[msan] Implement -msan-disable-checks.
To ease the deployment of KMSAN, we need a way to apply
attribute((no_sanitize("kernel-memory"))) to the whole source file.
Passing -msan-disable-checks=1 to the compiler will make it
treat every function in the file as if it was lacking the
sanitize_memory attribute.
When does something compiled with LTO apply sanitizer passes?
Perhaps, to make it more general, I'd call it "msan-no-sanitize-all" or "msan-no-sanitize-all-functions", whichever you think is clearer.