The existing symbol code documentation was very incomplete. This patch adds the missing codes, and defines them based on the current code behaviour.
Details
Diff Detail
- Repository
- rL LLVM
Event Timeline
All this looks reasonable, but my grasp of Mach-O is not as complete as I would like, and I have some questions for you.
docs/CommandGuide/llvm-nm.rst | ||
---|---|---|
65–66 | I am not sure about the "Absolute Symbol" note. Can you point me at why you think that's what it means? The historical documentation for 's' is "A symbol in a section that is not in TEXT, DATA (non-BSS), or in DATA (BSS). I'd hate to call that "unknown" because "undefined" is such a strong concept and they start with the same letter and are easy to confuse. Pragmatically, you can use directives to tell clang to write symbols into any arbitrary segment/section; and symbols defined in such a way would be listed as "s". So it's not that they're "unknown" as they are "uncommon" or perhaps "uncanonical." For the sake of documentation, it might be best to say "Mach-O: symbol not in TEXT or __DATA. | |
70 | Hmm ... I don't *think* Mach-O will print this value. But, please let me know if you know otherwise, and thanks for bringing this to my attention. | |
102–104 | I believe we do not print w/W for Mach-O files. If you know otherwise, please let me know. | |
108 | Yes, that's what the documentation says ... I've been looking for an example ... |
docs/CommandGuide/llvm-nm.rst | ||
---|---|---|
51 | I think the semantics (GNU nm behavior) of n are similar to what the reverted rL359312 did, but unfortunately I cannot find a reasonable use case to write a test, nor can I find useful tests in the binutils-gdb repository. I don't know if relocations into non-SHF_ALLOC sections other than .debug* are reasonable. |
docs/CommandGuide/llvm-nm.rst | ||
---|---|---|
31–37 | Do we print lowercase a? man nm doesn't include it. |
docs/CommandGuide/llvm-nm.rst | ||
---|---|---|
31–37 | Yes, and indeed GNU nm prints it too: // bar.s foo = 1234 PS C:\Work\TempWork> clang -c bar.s PS C:\Work\TempWork> nm bar.o 00000000000004d2 a foo PS C:\Work\TempWork> \llvm\build\Debug\bin\llvm-nm bar.o 00000000000004d2 a foo | |
51 |
We use them in Sony-specific sections at least. I think they are reasonable for additional metadata that needs to refer to the actual code in some way. I'm okay with the semantics of 'n' changing in the future (this is just one example where the code doesn't necessarily make sense). I'd just like to document what we currently do now - we can document what the behaviour is when we change the code. | |
65–66 |
See: https://github.com/llvm/llvm-project/blob/master/llvm/tools/llvm-nm/llvm-nm.cpp#L1005. If the N_Type is N_ABS, the code returns 's'. I'll update the text slightly to explicitly refer to the section names. | |
70 | It doesn't. As far as I can see, it's COFF and ELF-specific. I'm not sure whether we want to indicate where something isn't supported by Mach-O only. Happy for feedback on this. | |
102–104 | llvm-nm doesn't use 'w' for Mach-O. See above for my comments about whether we should explicitly state this. | |
108 | It's also what the code says. I have no idea what an N_STAB symbol actually is though. Happy for something better here (or even to delete it entirely). |
docs/CommandGuide/llvm-nm.rst | ||
---|---|---|
51 |
I misread your comment. I don't know about relocations into non-alloc sections, but it's certainly possible to produce local symbols in them at least. |
docs/CommandGuide/llvm-nm.rst | ||
---|---|---|
51 | Sent out D63588. The new behavior should match what I observed from GNU nm.
This should just be: local symbol from non-alloc section if D63588 is accepted. (You can add non-writable if that matters.. though I can't find a use case of a writable non-alloc section) Note sections are usually SHF_ALLOC. .comment sections do not have relocations. I don't know why the original code was written that way... | |
82 | It doesn't have to be "referenced". as /dev/null -o a.o ld.bfd a.o -u foo -o a # or gold; but ld.lld doesn't have this behavior nm a => U foo though foo is not referenced... | |
90 |
This sentence makes me puzzled. You may delete it if no better description can be found. |
docs/CommandGuide/llvm-nm.rst | ||
---|---|---|
82 | You're right. This one is just moved from earlier, but we can update it now to be better. | |
90 | How about "This definition will only be used if no regular definitions exist in a link. If multiple weak definitions and no regular definitons exist, one of the weak definitions will be used."? |
Reword undefined and weak symbol code text. Also update 'n' text following behaviour change.
Thank you for improving the documentation! The ELF part looks good to me, but it'd good to have someone else to take a look.
Thanks all. I'm going to land this shortly. I'm happy to make further changes if there's any remaining issues.
Do we print lowercase a? man nm doesn't include it.