summaryrefslogtreecommitdiffstats
path: root/libunwind/test
Commit message (Collapse)AuthorAgeFilesLines
* Fix unw_getcontext() return value on AArch64.Logan Chien2015-06-251-0/+8
| | | | | | | | unw_getcontext() should return UNW_ESUCCESS on success. Therefore, the assembly for AArch64 is incorrect because "ldr x0, #0" is a PC-relative load instead of an immediate value load. llvm-svn: 240648
* libunwind: Fix unw_step() for ARM EHABI.Logan Chien2015-05-292-0/+79
| | | | | | | | | | | | | | | | | | | This commit fixes the unw_step() for ARM EHABI. However, this commit also changes the implementation details for ARM EHABI. The first change is that the personality function should call __gnu_unwind_frame() for default (or de facto) frame unwinding based on the ARM-defined unwind opcode. The function __gnu_unwind_frame() will in turn calls unw_step() which actually unwinds the frame. The second change is that the implementation _Unwind_Backtrace() should no longer calls unw_step() to unwind the frame; since according to ARM EHABI, the personality function should unwind the frame for us. Special thanks to Anton for helpful suggestion on the initial version of this patch. llvm-svn: 238560
* unwind: remove libc++abi testsSaleem Abdulrasool2015-04-246-771/+0
| | | | | | | These are related to libc++abi's personality routine and not core unwinding. These have been restored in libc++abi, and are no longer needed here. llvm-svn: 235766
* unwind: move src/Unwind, include/, and test/ unwind contentSaleem Abdulrasool2015-04-246-0/+771
This moves the majority of the unwind sources into the new project layout for libunwind. This was previously discussed on llvmdev at [1]. This is a purely movement related change, with the build infrastructure currently still residing in the libc++abi repository. [1] http://lists.cs.uiuc.edu/pipermail/llvmdev/2015-January/081507.html llvm-svn: 235758
OpenPOWER on IntegriCloud