To build libc++abi without libunwind, we should make sure that all
function calls to _Unwind_{Get,Set}{GR,IP}() are inlined as function
calls to _Unwind_VRS_{Get,Set}(). Otherwise, libc++abi.so will fail to
link since libgcc does not provide these symbol at all.
The commit reverts the changes in r228903, which breaks libc++abi/libgcc
build since then.
Why can't we simply make them static functions of UnwindLevel1.c for EHABI case?