mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
00f2ed3a0a
The original code does not work correctly on executable files because the code is written in such a way that only object files are assumed to be given to llvm-objdump. Contents of RuntimeFunction are different between executables and objects. In executables, fields in RuntimeFunction have actual addresses to unwind info structures. On the other hand, in object files, the fields have zero value, but instead there are relocations pointing to the fields, so that Linker will fill them at link-time. So, when we are reading an object file, we need to use relocation info to find the location of unwind info. When executable, we should just look at the values in RuntimeFunction. llvm-svn: 202785 |
||
---|---|---|
.. | ||
export.dll.coff-i386 | ||
nop.exe.coff-i386 | ||
out-of-section-sym.elf-i386 | ||
out-of-section-sym.s | ||
trivial.obj.elf-i386 | ||
win64-unwind.exe.coff-x86_64.asm | ||
win64-unwind.exe.coff-x86_64.exe | ||
win64-unwind.exe.coff-x86_64.obj |