Buckets:
| //===----------------------------------------------------------------------===// | |
| // | |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | |
| // See https://llvm.org/LICENSE.txt for license information. | |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | |
| // | |
| // | |
| // C++ ABI Level 1 ABI documented at: | |
| // https://itanium-cxx-abi.github.io/cxx-abi/abi-eh.html | |
| // | |
| //===----------------------------------------------------------------------===// | |
| struct _Unwind_Context; // opaque | |
| struct _Unwind_Exception; // forward declaration | |
| typedef struct _Unwind_Exception _Unwind_Exception; | |
| typedef uint64_t _Unwind_Exception_Class; | |
| struct _Unwind_Exception { | |
| _Unwind_Exception_Class exception_class; | |
| void (*exception_cleanup)(_Unwind_Reason_Code reason, | |
| _Unwind_Exception *exc); | |
| uintptr_t private_[6]; | |
| uintptr_t private_1; // non-zero means forced unwind | |
| uintptr_t private_2; // holds sp that phase1 found for phase2 to use | |
| // The implementation of _Unwind_Exception uses an attribute mode on the | |
| // above fields which has the side effect of causing this whole struct to | |
| // round up to 32 bytes in size (48 with SEH). To be more explicit, we add | |
| // pad fields added for binary compatibility. | |
| uint32_t reserved[3]; | |
| // The Itanium ABI requires that _Unwind_Exception objects are "double-word | |
| // aligned". GCC has interpreted this to mean "use the maximum useful | |
| // alignment for the target"; so do we. | |
| } __attribute__((__aligned__)); | |
| typedef _Unwind_Reason_Code (*_Unwind_Personality_Fn)( | |
| int version, _Unwind_Action actions, uint64_t exceptionClass, | |
| _Unwind_Exception *exceptionObject, struct _Unwind_Context *context); | |
| extern "C" { | |
| // | |
| // The following are the base functions documented by the C++ ABI | |
| // | |
| extern _Unwind_Reason_Code | |
| _Unwind_SjLj_RaiseException(_Unwind_Exception *exception_object); | |
| extern void _Unwind_SjLj_Resume(_Unwind_Exception *exception_object); | |
| extern _Unwind_Reason_Code | |
| _Unwind_RaiseException(_Unwind_Exception *exception_object); | |
| extern void _Unwind_Resume(_Unwind_Exception *exception_object); | |
| extern void _Unwind_DeleteException(_Unwind_Exception *exception_object); | |
| extern uintptr_t _Unwind_GetGR(struct _Unwind_Context *context, int index); | |
| extern void _Unwind_SetGR(struct _Unwind_Context *context, int index, | |
| uintptr_t new_value); | |
| extern uintptr_t _Unwind_GetIP(struct _Unwind_Context *context); | |
| extern void _Unwind_SetIP(struct _Unwind_Context *, uintptr_t new_value); | |
| } | |
Xet Storage Details
- Size:
- 2.82 kB
- Xet hash:
- 3b57b617423b802e212b7812b8d7fd774c0070d8a749a4f1bfc2f997c6f6d560
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.