search for: sectioncontainssymbol

Displaying 4 results from an estimated 4 matches for "sectioncontainssymbol".

2011 Oct 12
2
[LLVMdev] llvm-objdump related patch
...he-address-calculation-for-llvm-objdump.patch Type: text/x-patch Size: 3036 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20111012/8d8263d1/attachment.bin> -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-Implement-sectionContainsSymbol-preparing-for-the-ob.patch Type: text/x-patch Size: 1321 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20111012/8d8263d1/attachment-0001.bin>
2011 Oct 13
0
[LLVMdev] llvm-objdump related patch
...which is missing in llvm-objdump. > > Songmao > @@ -747,12 +747,28 @@ error_code ELFObjectFile<target_endianness, is64Bits> template<support::endianness target_endianness, bool is64Bits> error_code ELFObjectFile<target_endianness, is64Bits> ::sectionContainsSymbol(DataRefImpl Sec, DataRefImpl Symb, bool &Result) const { - // FIXME: Unimplemented. + Result = false; + const Elf_Sym *sym = getSymbol(Symb); + const Elf_Shdr *sec = reinterpret_cast<...
2011 Oct 11
5
[LLVMdev] llvm-objdump related patch
...ymbol table entry, when in thumb code, the lowest bit of the symbol value will be set to '1'. so how these logic can be implemented while still adapt to the structure of the code? Songmao -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-Implement-sectionContainsSymbol-preparing-for-the-ob.patch Type: text/x-patch Size: 1177 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20111011/527db4f3/attachment.bin> -------------- next part -------------- A non-text attachment was scrubbed... Name: 0002-Fix-objdump-various-problem....
2011 Oct 11
0
[LLVMdev] llvm-objdump related patch
On Tue, Oct 11, 2011 at 12:15 AM, Neo <smtian at ingenic.cn> wrote: > Hi, >    I am new to llvm, not familiar with c++, after some use with > llvm-objdump, and finding the broken output, I try to debug and fix the code > so it can become usable. Please help review the patch, so that they can be > merged. >    And there's still two major problem I have found about arm