I've recently had to stare at the LLVM IR for a C++ source that contained OpenMP Tasks,
and it was *really* *extremely* painful to piece together which @omp_outlined function
was related to what original source code, because their names are rather obfuscated.
Example: https://godbolt.org/z/rTo6js8nx
I don't believe the exact name that will be used for these helpers matters (for ABI purposes)?
So i think we can do better.
This doesn't fix everything, i only touched Tasks.
There are likely other places that could use better names.