Make PLT entry atoms represent mapping symbols in the Release mode, while in the Debug mode they are still function-like symbols with regular names.
It's legal that mapping symbols denote unnamed parts of code, and PLT entries are not required to have function-like names (in fact, they didn't have these names before in the Release mode).
This trick is done to simplify the code and not keep mapping symbol atoms along with regular PLT atoms.
Details
Diff Detail
- Repository
- rL LLVM
Event Timeline
The code generally looks good, but I'm wondering if it's a good thing to link an executable in a different way only when the linker itself was compiled with NDEBUG. Should the debug flag affects outputs?
I saw this pattern in many places in the ELF port of the LLD, so this comment is not actually specific to your patch, though.
lib/ReaderWriter/ELF/ARM/ARMRelocationPass.cpp | ||
---|---|---|
71 ↗ | (On Diff #23207) | Maybe replacing this line (and similar lines) with a return statement could make this code a bit concise? (I didn't try myself, so I don't know how it would look like -- it's up to you.) return part.empty() ? "$a" : "$a." + part; |
Concerning different output when compiling with NDEBUG: these extra symbols do really help debugging sometimes. That's a good way to check that some call refers PLT entry, or veneer is used for some operations. I treat these symbol names as extra debug output and nothing more.
lib/ReaderWriter/ELF/ARM/ARMRelocationPass.cpp | ||
---|---|---|
71 ↗ | (On Diff #23207) | I'll take it into account. |