mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-28 14:10:41 +00:00
Set the thumb flag for thumb symbols coming from an ELF file
Without setting the flag there is no way to determine if a symbol points to an arm or to a thumb function as the LSB of the address masked out in all getter function. Note: Currently the thumb flag is only used for MachO files so adding a test to this change is not possible. It will be used by the upcoming fix for llvm-objdump for disassembling thumb functions what is easily testable. Differential revision: http://reviews.llvm.org/D17956 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265387 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f0a7cfdba2
commit
2b45afffa0
@ -494,6 +494,8 @@ uint32_t ELFObjectFile<ELFT>::getSymbolFlags(DataRefImpl Sym) const {
|
||||
Name.startswith("$a"))
|
||||
Result |= SymbolRef::SF_FormatSpecific;
|
||||
}
|
||||
if (ESym->getType() == ELF::STT_FUNC && (ESym->st_value & 1) == 1)
|
||||
Result |= SymbolRef::SF_Thumb;
|
||||
}
|
||||
|
||||
if (ESym->st_shndx == ELF::SHN_UNDEF)
|
||||
|
Loading…
Reference in New Issue
Block a user