1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 // Implements C++ ABI Exception Handling Level 1 as documented at:
9 // https://itanium-cxx-abi.github.io/cxx-abi/abi-eh.html
12 //===----------------------------------------------------------------------===//
14 // ARM EHABI does not specify _Unwind_{Get,Set}{GR,IP}(). Thus, we are
15 // defining inline functions to delegate the function calls to
16 // _Unwind_VRS_{Get,Set}(). However, some applications might declare the
17 // function protetype directly (instead of including <unwind.h>), thus we need
18 // to export these functions from libunwind.so as well.
19 #define _LIBUNWIND_UNWIND_LEVEL1_EXTERNAL_LINKAGE 1
28 #include "cet_unwind.h"
30 #include "libunwind.h"
31 #include "libunwind_ext.h"
34 #if !defined(_LIBUNWIND_ARM_EHABI) && !defined(__USING_SJLJ_EXCEPTIONS__)
36 #ifndef _LIBUNWIND_SUPPORT_SEH_UNWIND
38 // When CET is enabled, each "call" instruction will push return address to
39 // CET shadow stack, each "ret" instruction will pop current CET shadow stack
40 // top and compare it with target address which program will return.
41 // In exception handing, some stack frames will be skipped before jumping to
42 // landing pad and we must adjust CET shadow stack accordingly.
43 // _LIBUNWIND_POP_CET_SSP is used to adjust CET shadow stack pointer and we
44 // directly jump to __libunwind_Registers_x86/x86_64_jumpto instead of using
45 // a regular function call to avoid pushing to CET shadow stack again.
46 #if !defined(_LIBUNWIND_USE_CET)
47 #define __unw_phase2_resume(cursor, fn) \
50 __unw_resume((cursor)); \
52 #elif defined(_LIBUNWIND_TARGET_I386)
53 #define __cet_ss_step_size 4
54 #define __unw_phase2_resume(cursor, fn) \
56 _LIBUNWIND_POP_CET_SSP((fn)); \
57 void *cetRegContext = __libunwind_cet_get_registers((cursor)); \
58 void *cetJumpAddress = __libunwind_cet_get_jump_target(); \
59 __asm__ volatile("push %%edi\n\t" \
61 "jmp *%%edx\n\t" :: "D"(cetRegContext), \
62 "d"(cetJumpAddress)); \
64 #elif defined(_LIBUNWIND_TARGET_X86_64)
65 #define __cet_ss_step_size 8
66 #define __unw_phase2_resume(cursor, fn) \
68 _LIBUNWIND_POP_CET_SSP((fn)); \
69 void *cetRegContext = __libunwind_cet_get_registers((cursor)); \
70 void *cetJumpAddress = __libunwind_cet_get_jump_target(); \
71 __asm__ volatile("jmpq *%%rdx\n\t" :: "D"(cetRegContext), \
72 "d"(cetJumpAddress)); \
76 static _Unwind_Reason_Code
77 unwind_phase1(unw_context_t
*uc
, unw_cursor_t
*cursor
, _Unwind_Exception
*exception_object
) {
78 __unw_init_local(cursor
, uc
);
80 // Walk each frame looking for a place to stop.
82 // Ask libunwind to get next frame (skip over first which is
83 // _Unwind_RaiseException).
84 int stepResult
= __unw_step(cursor
);
85 if (stepResult
== 0) {
86 _LIBUNWIND_TRACE_UNWINDING(
87 "unwind_phase1(ex_obj=%p): __unw_step() reached "
88 "bottom => _URC_END_OF_STACK",
89 (void *)exception_object
);
90 return _URC_END_OF_STACK
;
91 } else if (stepResult
< 0) {
92 _LIBUNWIND_TRACE_UNWINDING(
93 "unwind_phase1(ex_obj=%p): __unw_step failed => "
94 "_URC_FATAL_PHASE1_ERROR",
95 (void *)exception_object
);
96 return _URC_FATAL_PHASE1_ERROR
;
99 // See if frame has code to run (has personality routine).
100 unw_proc_info_t frameInfo
;
102 if (__unw_get_proc_info(cursor
, &frameInfo
) != UNW_ESUCCESS
) {
103 _LIBUNWIND_TRACE_UNWINDING(
104 "unwind_phase1(ex_obj=%p): __unw_get_proc_info "
105 "failed => _URC_FATAL_PHASE1_ERROR",
106 (void *)exception_object
);
107 return _URC_FATAL_PHASE1_ERROR
;
111 // When tracing, print state information.
112 if (_LIBUNWIND_TRACING_UNWINDING
) {
113 char functionBuf
[512];
114 const char *functionName
= functionBuf
;
116 if ((__unw_get_proc_name(cursor
, functionBuf
, sizeof(functionBuf
),
117 &offset
) != UNW_ESUCCESS
) ||
118 (frameInfo
.start_ip
+ offset
> frameInfo
.end_ip
))
119 functionName
= ".anonymous.";
121 __unw_get_reg(cursor
, UNW_REG_IP
, &pc
);
122 _LIBUNWIND_TRACE_UNWINDING(
123 "unwind_phase1(ex_obj=%p): pc=0x%" PRIxPTR
", start_ip=0x%" PRIxPTR
124 ", func=%s, lsda=0x%" PRIxPTR
", personality=0x%" PRIxPTR
"",
125 (void *)exception_object
, pc
, frameInfo
.start_ip
, functionName
,
126 frameInfo
.lsda
, frameInfo
.handler
);
130 // If there is a personality routine, ask it if it will want to stop at
132 if (frameInfo
.handler
!= 0) {
133 _Unwind_Personality_Fn p
=
134 (_Unwind_Personality_Fn
)(uintptr_t)(frameInfo
.handler
);
135 _LIBUNWIND_TRACE_UNWINDING(
136 "unwind_phase1(ex_obj=%p): calling personality function %p",
137 (void *)exception_object
, (void *)(uintptr_t)p
);
138 _Unwind_Reason_Code personalityResult
=
139 (*p
)(1, _UA_SEARCH_PHASE
, exception_object
->exception_class
,
140 exception_object
, (struct _Unwind_Context
*)(cursor
));
141 switch (personalityResult
) {
142 case _URC_HANDLER_FOUND
:
143 // found a catch clause or locals that need destructing in this frame
144 // stop search and remember stack pointer at the frame
145 __unw_get_reg(cursor
, UNW_REG_SP
, &sp
);
146 exception_object
->private_2
= (uintptr_t)sp
;
147 _LIBUNWIND_TRACE_UNWINDING(
148 "unwind_phase1(ex_obj=%p): _URC_HANDLER_FOUND",
149 (void *)exception_object
);
150 return _URC_NO_REASON
;
152 case _URC_CONTINUE_UNWIND
:
153 _LIBUNWIND_TRACE_UNWINDING(
154 "unwind_phase1(ex_obj=%p): _URC_CONTINUE_UNWIND",
155 (void *)exception_object
);
156 // continue unwinding
160 // something went wrong
161 _LIBUNWIND_TRACE_UNWINDING(
162 "unwind_phase1(ex_obj=%p): _URC_FATAL_PHASE1_ERROR",
163 (void *)exception_object
);
164 return _URC_FATAL_PHASE1_ERROR
;
168 return _URC_NO_REASON
;
170 extern int __unw_step_stage2(unw_cursor_t
*);
172 static _Unwind_Reason_Code
173 unwind_phase2(unw_context_t
*uc
, unw_cursor_t
*cursor
, _Unwind_Exception
*exception_object
) {
174 __unw_init_local(cursor
, uc
);
176 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2(ex_obj=%p)",
177 (void *)exception_object
);
179 // uc is initialized by __unw_getcontext in the parent frame. The first stack
180 // frame walked is unwind_phase2.
181 unsigned framesWalked
= 1;
182 #ifdef _LIBUNWIND_USE_CET
183 unsigned long shadowStackTop
= _get_ssp();
185 // Walk each frame until we reach where search phase said to stop.
188 // Ask libunwind to get next frame (skip over first which is
189 // _Unwind_RaiseException).
190 int stepResult
= __unw_step_stage2(cursor
);
191 if (stepResult
== 0) {
192 _LIBUNWIND_TRACE_UNWINDING(
193 "unwind_phase2(ex_obj=%p): __unw_step_stage2() reached "
194 "bottom => _URC_END_OF_STACK",
195 (void *)exception_object
);
196 return _URC_END_OF_STACK
;
197 } else if (stepResult
< 0) {
198 _LIBUNWIND_TRACE_UNWINDING(
199 "unwind_phase2(ex_obj=%p): __unw_step_stage2 failed => "
200 "_URC_FATAL_PHASE1_ERROR",
201 (void *)exception_object
);
202 return _URC_FATAL_PHASE2_ERROR
;
205 // Get info about this frame.
207 unw_proc_info_t frameInfo
;
208 __unw_get_reg(cursor
, UNW_REG_SP
, &sp
);
209 if (__unw_get_proc_info(cursor
, &frameInfo
) != UNW_ESUCCESS
) {
210 _LIBUNWIND_TRACE_UNWINDING(
211 "unwind_phase2(ex_obj=%p): __unw_get_proc_info "
212 "failed => _URC_FATAL_PHASE1_ERROR",
213 (void *)exception_object
);
214 return _URC_FATAL_PHASE2_ERROR
;
218 // When tracing, print state information.
219 if (_LIBUNWIND_TRACING_UNWINDING
) {
220 char functionBuf
[512];
221 const char *functionName
= functionBuf
;
223 if ((__unw_get_proc_name(cursor
, functionBuf
, sizeof(functionBuf
),
224 &offset
) != UNW_ESUCCESS
) ||
225 (frameInfo
.start_ip
+ offset
> frameInfo
.end_ip
))
226 functionName
= ".anonymous.";
227 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2(ex_obj=%p): start_ip=0x%" PRIxPTR
228 ", func=%s, sp=0x%" PRIxPTR
", lsda=0x%" PRIxPTR
229 ", personality=0x%" PRIxPTR
,
230 (void *)exception_object
, frameInfo
.start_ip
,
231 functionName
, sp
, frameInfo
.lsda
,
236 // In CET enabled environment, we check return address stored in normal stack
237 // against return address stored in CET shadow stack, if the 2 addresses don't
238 // match, it means return address in normal stack has been corrupted, we return
239 // _URC_FATAL_PHASE2_ERROR.
240 #ifdef _LIBUNWIND_USE_CET
241 if (shadowStackTop
!= 0) {
242 unw_word_t retInNormalStack
;
243 __unw_get_reg(cursor
, UNW_REG_IP
, &retInNormalStack
);
244 unsigned long retInShadowStack
= *(
245 unsigned long *)(shadowStackTop
+ __cet_ss_step_size
* framesWalked
);
246 if (retInNormalStack
!= retInShadowStack
)
247 return _URC_FATAL_PHASE2_ERROR
;
251 // If there is a personality routine, tell it we are unwinding.
252 if (frameInfo
.handler
!= 0) {
253 _Unwind_Personality_Fn p
=
254 (_Unwind_Personality_Fn
)(uintptr_t)(frameInfo
.handler
);
255 _Unwind_Action action
= _UA_CLEANUP_PHASE
;
256 if (sp
== exception_object
->private_2
) {
257 // Tell personality this was the frame it marked in phase 1.
258 action
= (_Unwind_Action
)(_UA_CLEANUP_PHASE
| _UA_HANDLER_FRAME
);
260 _Unwind_Reason_Code personalityResult
=
261 (*p
)(1, action
, exception_object
->exception_class
, exception_object
,
262 (struct _Unwind_Context
*)(cursor
));
263 switch (personalityResult
) {
264 case _URC_CONTINUE_UNWIND
:
265 // Continue unwinding
266 _LIBUNWIND_TRACE_UNWINDING(
267 "unwind_phase2(ex_obj=%p): _URC_CONTINUE_UNWIND",
268 (void *)exception_object
);
269 if (sp
== exception_object
->private_2
) {
270 // Phase 1 said we would stop at this frame, but we did not...
271 _LIBUNWIND_ABORT("during phase1 personality function said it would "
272 "stop here, but now in phase2 it did not stop here");
275 case _URC_INSTALL_CONTEXT
:
276 _LIBUNWIND_TRACE_UNWINDING(
277 "unwind_phase2(ex_obj=%p): _URC_INSTALL_CONTEXT",
278 (void *)exception_object
);
279 // Personality routine says to transfer control to landing pad.
280 // We may get control back if landing pad calls _Unwind_Resume().
281 if (_LIBUNWIND_TRACING_UNWINDING
) {
283 __unw_get_reg(cursor
, UNW_REG_IP
, &pc
);
284 __unw_get_reg(cursor
, UNW_REG_SP
, &sp
);
285 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2(ex_obj=%p): re-entering "
286 "user code with ip=0x%" PRIxPTR
288 (void *)exception_object
, pc
, sp
);
291 __unw_phase2_resume(cursor
, framesWalked
);
292 // __unw_phase2_resume() only returns if there was an error.
293 return _URC_FATAL_PHASE2_ERROR
;
295 // Personality routine returned an unknown result code.
296 _LIBUNWIND_DEBUG_LOG("personality function returned unknown result %d",
298 return _URC_FATAL_PHASE2_ERROR
;
303 // Clean up phase did not resume at the frame that the search phase
305 return _URC_FATAL_PHASE2_ERROR
;
308 static _Unwind_Reason_Code
309 unwind_phase2_forced(unw_context_t
*uc
, unw_cursor_t
*cursor
,
310 _Unwind_Exception
*exception_object
,
311 _Unwind_Stop_Fn stop
, void *stop_parameter
) {
312 __unw_init_local(cursor
, uc
);
314 // uc is initialized by __unw_getcontext in the parent frame. The first stack
315 // frame walked is unwind_phase2_forced.
316 unsigned framesWalked
= 1;
317 // Walk each frame until we reach where search phase said to stop
318 while (__unw_step_stage2(cursor
) > 0) {
320 // Update info about this frame.
321 unw_proc_info_t frameInfo
;
322 if (__unw_get_proc_info(cursor
, &frameInfo
) != UNW_ESUCCESS
) {
323 _LIBUNWIND_TRACE_UNWINDING(
324 "unwind_phase2_forced(ex_obj=%p): __unw_get_proc_info "
325 "failed => _URC_END_OF_STACK",
326 (void *)exception_object
);
327 return _URC_FATAL_PHASE2_ERROR
;
331 // When tracing, print state information.
332 if (_LIBUNWIND_TRACING_UNWINDING
) {
333 char functionBuf
[512];
334 const char *functionName
= functionBuf
;
336 if ((__unw_get_proc_name(cursor
, functionBuf
, sizeof(functionBuf
),
337 &offset
) != UNW_ESUCCESS
) ||
338 (frameInfo
.start_ip
+ offset
> frameInfo
.end_ip
))
339 functionName
= ".anonymous.";
340 _LIBUNWIND_TRACE_UNWINDING(
341 "unwind_phase2_forced(ex_obj=%p): start_ip=0x%" PRIxPTR
342 ", func=%s, lsda=0x%" PRIxPTR
", personality=0x%" PRIxPTR
,
343 (void *)exception_object
, frameInfo
.start_ip
, functionName
,
344 frameInfo
.lsda
, frameInfo
.handler
);
348 // Call stop function at each frame.
349 _Unwind_Action action
=
350 (_Unwind_Action
)(_UA_FORCE_UNWIND
| _UA_CLEANUP_PHASE
);
351 _Unwind_Reason_Code stopResult
=
352 (*stop
)(1, action
, exception_object
->exception_class
, exception_object
,
353 (struct _Unwind_Context
*)(cursor
), stop_parameter
);
354 _LIBUNWIND_TRACE_UNWINDING(
355 "unwind_phase2_forced(ex_obj=%p): stop function returned %d",
356 (void *)exception_object
, stopResult
);
357 if (stopResult
!= _URC_NO_REASON
) {
358 _LIBUNWIND_TRACE_UNWINDING(
359 "unwind_phase2_forced(ex_obj=%p): stopped by stop function",
360 (void *)exception_object
);
361 return _URC_FATAL_PHASE2_ERROR
;
365 // If there is a personality routine, tell it we are unwinding.
366 if (frameInfo
.handler
!= 0) {
367 _Unwind_Personality_Fn p
=
368 (_Unwind_Personality_Fn
)(intptr_t)(frameInfo
.handler
);
369 _LIBUNWIND_TRACE_UNWINDING(
370 "unwind_phase2_forced(ex_obj=%p): calling personality function %p",
371 (void *)exception_object
, (void *)(uintptr_t)p
);
372 _Unwind_Reason_Code personalityResult
=
373 (*p
)(1, action
, exception_object
->exception_class
, exception_object
,
374 (struct _Unwind_Context
*)(cursor
));
375 switch (personalityResult
) {
376 case _URC_CONTINUE_UNWIND
:
377 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2_forced(ex_obj=%p): "
378 "personality returned "
379 "_URC_CONTINUE_UNWIND",
380 (void *)exception_object
);
381 // Destructors called, continue unwinding
383 case _URC_INSTALL_CONTEXT
:
384 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2_forced(ex_obj=%p): "
385 "personality returned "
386 "_URC_INSTALL_CONTEXT",
387 (void *)exception_object
);
388 // We may get control back if landing pad calls _Unwind_Resume().
389 __unw_phase2_resume(cursor
, framesWalked
);
392 // Personality routine returned an unknown result code.
393 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2_forced(ex_obj=%p): "
394 "personality returned %d, "
395 "_URC_FATAL_PHASE2_ERROR",
396 (void *)exception_object
, personalityResult
);
397 return _URC_FATAL_PHASE2_ERROR
;
402 // Call stop function one last time and tell it we've reached the end
404 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2_forced(ex_obj=%p): calling stop "
405 "function with _UA_END_OF_STACK",
406 (void *)exception_object
);
407 _Unwind_Action lastAction
=
408 (_Unwind_Action
)(_UA_FORCE_UNWIND
| _UA_CLEANUP_PHASE
| _UA_END_OF_STACK
);
409 (*stop
)(1, lastAction
, exception_object
->exception_class
, exception_object
,
410 (struct _Unwind_Context
*)(cursor
), stop_parameter
);
412 // Clean up phase did not resume at the frame that the search phase said it
414 return _URC_FATAL_PHASE2_ERROR
;
418 /// Called by __cxa_throw. Only returns if there is a fatal error.
419 _LIBUNWIND_EXPORT _Unwind_Reason_Code
420 _Unwind_RaiseException(_Unwind_Exception
*exception_object
) {
421 _LIBUNWIND_TRACE_API("_Unwind_RaiseException(ex_obj=%p)",
422 (void *)exception_object
);
425 __unw_getcontext(&uc
);
427 // Mark that this is a non-forced unwind, so _Unwind_Resume()
428 // can do the right thing.
429 exception_object
->private_1
= 0;
430 exception_object
->private_2
= 0;
432 // phase 1: the search phase
433 _Unwind_Reason_Code phase1
= unwind_phase1(&uc
, &cursor
, exception_object
);
434 if (phase1
!= _URC_NO_REASON
)
437 // phase 2: the clean up phase
438 return unwind_phase2(&uc
, &cursor
, exception_object
);
443 /// When _Unwind_RaiseException() is in phase2, it hands control
444 /// to the personality function at each frame. The personality
445 /// may force a jump to a landing pad in that function, the landing
446 /// pad code may then call _Unwind_Resume() to continue with the
447 /// unwinding. Note: the call to _Unwind_Resume() is from compiler
448 /// generated user code. All other _Unwind_* routines are called
449 /// by the C++ runtime __cxa_* routines.
451 /// Note: re-throwing an exception (as opposed to continuing the unwind)
452 /// is implemented by having the code call __cxa_rethrow() which
453 /// in turn calls _Unwind_Resume_or_Rethrow().
454 _LIBUNWIND_EXPORT
void
455 _Unwind_Resume(_Unwind_Exception
*exception_object
) {
456 _LIBUNWIND_TRACE_API("_Unwind_Resume(ex_obj=%p)", (void *)exception_object
);
459 __unw_getcontext(&uc
);
461 if (exception_object
->private_1
!= 0)
462 unwind_phase2_forced(&uc
, &cursor
, exception_object
,
463 (_Unwind_Stop_Fn
) exception_object
->private_1
,
464 (void *)exception_object
->private_2
);
466 unwind_phase2(&uc
, &cursor
, exception_object
);
468 // Clients assume _Unwind_Resume() does not return, so all we can do is abort.
469 _LIBUNWIND_ABORT("_Unwind_Resume() can't return");
475 /// Unwinds stack, calling "stop" function at each frame.
476 /// Could be used to implement longjmp().
477 _LIBUNWIND_EXPORT _Unwind_Reason_Code
478 _Unwind_ForcedUnwind(_Unwind_Exception
*exception_object
,
479 _Unwind_Stop_Fn stop
, void *stop_parameter
) {
480 _LIBUNWIND_TRACE_API("_Unwind_ForcedUnwind(ex_obj=%p, stop=%p)",
481 (void *)exception_object
, (void *)(uintptr_t)stop
);
484 __unw_getcontext(&uc
);
486 // Mark that this is a forced unwind, so _Unwind_Resume() can do
488 exception_object
->private_1
= (uintptr_t) stop
;
489 exception_object
->private_2
= (uintptr_t) stop_parameter
;
492 return unwind_phase2_forced(&uc
, &cursor
, exception_object
, stop
, stop_parameter
);
496 /// Called by personality handler during phase 2 to get LSDA for current frame.
497 _LIBUNWIND_EXPORT
uintptr_t
498 _Unwind_GetLanguageSpecificData(struct _Unwind_Context
*context
) {
499 unw_cursor_t
*cursor
= (unw_cursor_t
*)context
;
500 unw_proc_info_t frameInfo
;
501 uintptr_t result
= 0;
502 if (__unw_get_proc_info(cursor
, &frameInfo
) == UNW_ESUCCESS
)
503 result
= (uintptr_t)frameInfo
.lsda
;
504 _LIBUNWIND_TRACE_API(
505 "_Unwind_GetLanguageSpecificData(context=%p) => 0x%" PRIxPTR
,
506 (void *)context
, result
);
507 #if !defined(_LIBUNWIND_SUPPORT_TBTAB_UNWIND)
509 if (*((uint8_t *)result
) != 0xFF)
510 _LIBUNWIND_DEBUG_LOG("lsda at 0x%" PRIxPTR
" does not start with 0xFF",
518 /// Called by personality handler during phase 2 to find the start of the
520 _LIBUNWIND_EXPORT
uintptr_t
521 _Unwind_GetRegionStart(struct _Unwind_Context
*context
) {
522 unw_cursor_t
*cursor
= (unw_cursor_t
*)context
;
523 unw_proc_info_t frameInfo
;
524 uintptr_t result
= 0;
525 if (__unw_get_proc_info(cursor
, &frameInfo
) == UNW_ESUCCESS
)
526 result
= (uintptr_t)frameInfo
.start_ip
;
527 _LIBUNWIND_TRACE_API("_Unwind_GetRegionStart(context=%p) => 0x%" PRIxPTR
,
528 (void *)context
, result
);
532 #endif // !_LIBUNWIND_SUPPORT_SEH_UNWIND
534 /// Called by personality handler during phase 2 if a foreign exception
536 _LIBUNWIND_EXPORT
void
537 _Unwind_DeleteException(_Unwind_Exception
*exception_object
) {
538 _LIBUNWIND_TRACE_API("_Unwind_DeleteException(ex_obj=%p)",
539 (void *)exception_object
);
540 if (exception_object
->exception_cleanup
!= NULL
)
541 (*exception_object
->exception_cleanup
)(_URC_FOREIGN_EXCEPTION_CAUGHT
,
545 /// Called by personality handler during phase 2 to get register values.
546 _LIBUNWIND_EXPORT
uintptr_t
547 _Unwind_GetGR(struct _Unwind_Context
*context
, int index
) {
548 unw_cursor_t
*cursor
= (unw_cursor_t
*)context
;
550 __unw_get_reg(cursor
, index
, &result
);
551 _LIBUNWIND_TRACE_API("_Unwind_GetGR(context=%p, reg=%d) => 0x%" PRIxPTR
,
552 (void *)context
, index
, result
);
553 return (uintptr_t)result
;
556 /// Called by personality handler during phase 2 to alter register values.
557 _LIBUNWIND_EXPORT
void _Unwind_SetGR(struct _Unwind_Context
*context
, int index
,
559 _LIBUNWIND_TRACE_API("_Unwind_SetGR(context=%p, reg=%d, value=0x%0" PRIxPTR
561 (void *)context
, index
, value
);
562 unw_cursor_t
*cursor
= (unw_cursor_t
*)context
;
563 __unw_set_reg(cursor
, index
, value
);
566 /// Called by personality handler during phase 2 to get instruction pointer.
567 _LIBUNWIND_EXPORT
uintptr_t _Unwind_GetIP(struct _Unwind_Context
*context
) {
568 unw_cursor_t
*cursor
= (unw_cursor_t
*)context
;
570 __unw_get_reg(cursor
, UNW_REG_IP
, &result
);
571 _LIBUNWIND_TRACE_API("_Unwind_GetIP(context=%p) => 0x%" PRIxPTR
,
572 (void *)context
, result
);
573 return (uintptr_t)result
;
576 /// Called by personality handler during phase 2 to alter instruction pointer,
577 /// such as setting where the landing pad is, so _Unwind_Resume() will
578 /// start executing in the landing pad.
579 _LIBUNWIND_EXPORT
void _Unwind_SetIP(struct _Unwind_Context
*context
,
581 _LIBUNWIND_TRACE_API("_Unwind_SetIP(context=%p, value=0x%0" PRIxPTR
")",
582 (void *)context
, value
);
583 unw_cursor_t
*cursor
= (unw_cursor_t
*)context
;
584 __unw_set_reg(cursor
, UNW_REG_IP
, value
);
587 #endif // !defined(_LIBUNWIND_ARM_EHABI) && !defined(__USING_SJLJ_EXCEPTIONS__)