Please use GitHub pull requests for new patches. Avoid migrating existing patches. Phabricator shutdown timeline
Changeset View
Changeset View
Standalone View
Standalone View
libunwind/include/unwind_arm_ehabi.h
Show First 20 Lines • Show All 81 Lines • ▼ Show 20 Lines | |||||
#else | #else | ||||
extern _Unwind_Reason_Code | extern _Unwind_Reason_Code | ||||
_Unwind_RaiseException(_Unwind_Exception *exception_object); | _Unwind_RaiseException(_Unwind_Exception *exception_object); | ||||
extern void _Unwind_Resume(_Unwind_Exception *exception_object); | extern void _Unwind_Resume(_Unwind_Exception *exception_object); | ||||
#endif | #endif | ||||
extern void _Unwind_DeleteException(_Unwind_Exception *exception_object); | extern void _Unwind_DeleteException(_Unwind_Exception *exception_object); | ||||
typedef enum { | typedef enum { | ||||
_UVRSC_CORE = 0, /* integer register */ | _UVRSC_CORE = 0, /* integer register */ | ||||
_UVRSC_VFP = 1, /* vfp */ | _UVRSC_VFP = 1, /* vfp */ | ||||
_UVRSC_WMMXD = 3, /* Intel WMMX data register */ | _UVRSC_WMMXD = 3, /* Intel WMMX data register */ | ||||
_UVRSC_WMMXC = 4 /* Intel WMMX control register */ | _UVRSC_WMMXC = 4, /* Intel WMMX control register */ | ||||
_UVRSC_PSEUDO = 5 /* Special purpose pseudo register */ | |||||
} _Unwind_VRS_RegClass; | } _Unwind_VRS_RegClass; | ||||
typedef enum { | typedef enum { | ||||
_UVRSD_UINT32 = 0, | _UVRSD_UINT32 = 0, | ||||
_UVRSD_VFPX = 1, | _UVRSD_VFPX = 1, | ||||
_UVRSD_UINT64 = 3, | _UVRSD_UINT64 = 3, | ||||
_UVRSD_FLOAT = 4, | _UVRSD_FLOAT = 4, | ||||
_UVRSD_DOUBLE = 5 | _UVRSD_DOUBLE = 5 | ||||
▲ Show 20 Lines • Show All 68 Lines • Show Last 20 Lines |