Support --symbolize-operands on ARM/Thumb architecture.
Only support ELF object files for now.
Details
Diff Detail
Event Timeline
llvm/tools/llvm-objdump/llvm-objdump.cpp | ||
---|---|---|
1169–1171 | Is this always true for linked binary? |
Please include as much context as possible with your diff. https://llvm.org/docs/Phabricator.html#requesting-a-review-via-the-web-interface
llvm/tools/llvm-objdump/llvm-objdump.cpp | ||
---|---|---|
1145 | Please capitalize the first letter of variable names. | |
1172 | ditto. |
Thank you. Will read that and will add more context.
llvm/tools/llvm-objdump/llvm-objdump.cpp | ||
---|---|---|
1145 | Sorry I am newcomer. clang-format didn't say anything, so I thought this is okay. | |
1169–1171 | Actually I don't know, from my practical experience, it seems to be true. However, I checked ARM's documentation on ELF files and they do not say anything about this. I will think about this and will come back later. |
llvm/tools/llvm-objdump/llvm-objdump.cpp | ||
---|---|---|
1145 | clang-format is only for formatting. It won't do things like variable name styles. You may want to look into clang-tidy which does a lot more. Also, make sure you've fully read and digested the LLVM coding standards. FWIW, here you can't simply do triple -> Triple, since Triple is a type. You probably can use TargetTriple or something along those lines. |
Please capitalize the first letter of variable names.