blob: 7294f255407ed5e13ed9a76c4ed8ed4f43592fe3 [file] [log] [blame]
Saleem Abdulrasool675df582015-04-24 19:39:17 +00001//===------------------------- UnwindLevel1.c -----------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//
9// Implements C++ ABI Exception Handling Level 1 as documented at:
10// http://mentorembedded.github.io/cxx-abi/abi-eh.html
11// using libunwind
12//
13//===----------------------------------------------------------------------===//
14
Logan Chien2d2bf2f2015-07-24 00:16:48 +000015// ARM EHABI does not specify _Unwind_{Get,Set}{GR,IP}(). Thus, we are
16// defining inline functions to delegate the function calls to
17// _Unwind_VRS_{Get,Set}(). However, some applications might declare the
18// function protetype directly (instead of including <unwind.h>), thus we need
19// to export these functions from libunwind.so as well.
20#define _LIBUNWIND_UNWIND_LEVEL1_EXTERNAL_LINKAGE 1
21
Saleem Abdulrasool675df582015-04-24 19:39:17 +000022#include <inttypes.h>
23#include <stdint.h>
24#include <stdbool.h>
25#include <stdlib.h>
26#include <stdio.h>
27#include <string.h>
28
29#include "libunwind.h"
30#include "unwind.h"
31#include "config.h"
32
Logan Chien61278582015-07-19 15:23:10 +000033#if !_LIBUNWIND_ARM_EHABI
Saleem Abdulrasool675df582015-04-24 19:39:17 +000034
35static _Unwind_Reason_Code
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +000036unwind_phase1(unw_context_t *uc, unw_cursor_t *cursor, _Unwind_Exception *exception_object) {
37 unw_init_local(cursor, uc);
Saleem Abdulrasool675df582015-04-24 19:39:17 +000038
39 // Walk each frame looking for a place to stop.
Logan Chienbf2f90a2015-06-25 00:05:24 +000040 bool handlerNotFound = true;
41 while (handlerNotFound) {
Saleem Abdulrasool675df582015-04-24 19:39:17 +000042 // Ask libuwind to get next frame (skip over first which is
43 // _Unwind_RaiseException).
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +000044 int stepResult = unw_step(cursor);
Saleem Abdulrasool675df582015-04-24 19:39:17 +000045 if (stepResult == 0) {
46 _LIBUNWIND_TRACE_UNWINDING("unwind_phase1(ex_ojb=%p): unw_step() reached "
47 "bottom => _URC_END_OF_STACK\n",
48 (void *)exception_object);
49 return _URC_END_OF_STACK;
50 } else if (stepResult < 0) {
51 _LIBUNWIND_TRACE_UNWINDING("unwind_phase1(ex_ojb=%p): unw_step failed => "
52 "_URC_FATAL_PHASE1_ERROR\n",
53 (void *)exception_object);
54 return _URC_FATAL_PHASE1_ERROR;
55 }
56
57 // See if frame has code to run (has personality routine).
58 unw_proc_info_t frameInfo;
59 unw_word_t sp;
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +000060 if (unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) {
Saleem Abdulrasool675df582015-04-24 19:39:17 +000061 _LIBUNWIND_TRACE_UNWINDING("unwind_phase1(ex_ojb=%p): unw_get_proc_info "
62 "failed => _URC_FATAL_PHASE1_ERROR\n",
63 (void *)exception_object);
64 return _URC_FATAL_PHASE1_ERROR;
65 }
66
67 // When tracing, print state information.
68 if (_LIBUNWIND_TRACING_UNWINDING) {
69 char functionBuf[512];
70 const char *functionName = functionBuf;
71 unw_word_t offset;
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +000072 if ((unw_get_proc_name(cursor, functionBuf, sizeof(functionBuf),
Saleem Abdulrasool675df582015-04-24 19:39:17 +000073 &offset) != UNW_ESUCCESS) ||
74 (frameInfo.start_ip + offset > frameInfo.end_ip))
75 functionName = ".anonymous.";
76 unw_word_t pc;
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +000077 unw_get_reg(cursor, UNW_REG_IP, &pc);
Saleem Abdulrasool675df582015-04-24 19:39:17 +000078 _LIBUNWIND_TRACE_UNWINDING(
79 "unwind_phase1(ex_ojb=%p): pc=0x%" PRIx64 ", start_ip=0x%" PRIx64
80 ", func=%s, lsda=0x%" PRIx64 ", personality=0x%" PRIx64 "\n",
81 (void *)exception_object, pc, frameInfo.start_ip, functionName,
82 frameInfo.lsda, frameInfo.handler);
83 }
84
85 // If there is a personality routine, ask it if it will want to stop at
86 // this frame.
87 if (frameInfo.handler != 0) {
88 __personality_routine p =
89 (__personality_routine)(long)(frameInfo.handler);
90 _LIBUNWIND_TRACE_UNWINDING(
91 "unwind_phase1(ex_ojb=%p): calling personality function %p\n",
92 (void *)exception_object, (void *)(uintptr_t)p);
93 _Unwind_Reason_Code personalityResult =
94 (*p)(1, _UA_SEARCH_PHASE, exception_object->exception_class,
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +000095 exception_object, (struct _Unwind_Context *)(cursor));
Saleem Abdulrasool675df582015-04-24 19:39:17 +000096 switch (personalityResult) {
97 case _URC_HANDLER_FOUND:
98 // found a catch clause or locals that need destructing in this frame
99 // stop search and remember stack pointer at the frame
100 handlerNotFound = false;
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000101 unw_get_reg(cursor, UNW_REG_SP, &sp);
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000102 exception_object->private_2 = (uintptr_t)sp;
103 _LIBUNWIND_TRACE_UNWINDING(
104 "unwind_phase1(ex_ojb=%p): _URC_HANDLER_FOUND \n",
105 (void *)exception_object);
106 return _URC_NO_REASON;
107
108 case _URC_CONTINUE_UNWIND:
109 _LIBUNWIND_TRACE_UNWINDING(
110 "unwind_phase1(ex_ojb=%p): _URC_CONTINUE_UNWIND\n",
111 (void *)exception_object);
112 // continue unwinding
113 break;
114
115 default:
116 // something went wrong
117 _LIBUNWIND_TRACE_UNWINDING(
118 "unwind_phase1(ex_ojb=%p): _URC_FATAL_PHASE1_ERROR\n",
119 (void *)exception_object);
120 return _URC_FATAL_PHASE1_ERROR;
121 }
122 }
123 }
124 return _URC_NO_REASON;
125}
126
127
128static _Unwind_Reason_Code
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000129unwind_phase2(unw_context_t *uc, unw_cursor_t *cursor, _Unwind_Exception *exception_object) {
130 unw_init_local(cursor, uc);
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000131
132 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2(ex_ojb=%p)\n",
133 (void *)exception_object);
134
135 // Walk each frame until we reach where search phase said to stop.
136 while (true) {
137
138 // Ask libuwind to get next frame (skip over first which is
139 // _Unwind_RaiseException).
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000140 int stepResult = unw_step(cursor);
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000141 if (stepResult == 0) {
142 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2(ex_ojb=%p): unw_step() reached "
143 "bottom => _URC_END_OF_STACK\n",
144 (void *)exception_object);
145 return _URC_END_OF_STACK;
146 } else if (stepResult < 0) {
147 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2(ex_ojb=%p): unw_step failed => "
148 "_URC_FATAL_PHASE1_ERROR\n",
149 (void *)exception_object);
150 return _URC_FATAL_PHASE2_ERROR;
151 }
152
153 // Get info about this frame.
154 unw_word_t sp;
155 unw_proc_info_t frameInfo;
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000156 unw_get_reg(cursor, UNW_REG_SP, &sp);
157 if (unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) {
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000158 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2(ex_ojb=%p): unw_get_proc_info "
159 "failed => _URC_FATAL_PHASE1_ERROR\n",
160 (void *)exception_object);
161 return _URC_FATAL_PHASE2_ERROR;
162 }
163
164 // When tracing, print state information.
165 if (_LIBUNWIND_TRACING_UNWINDING) {
166 char functionBuf[512];
167 const char *functionName = functionBuf;
168 unw_word_t offset;
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000169 if ((unw_get_proc_name(cursor, functionBuf, sizeof(functionBuf),
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000170 &offset) != UNW_ESUCCESS) ||
171 (frameInfo.start_ip + offset > frameInfo.end_ip))
172 functionName = ".anonymous.";
173 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2(ex_ojb=%p): start_ip=0x%" PRIx64
174 ", func=%s, sp=0x%" PRIx64 ", lsda=0x%" PRIx64
175 ", personality=0x%" PRIx64 "\n",
176 (void *)exception_object, frameInfo.start_ip,
177 functionName, sp, frameInfo.lsda,
178 frameInfo.handler);
179 }
180
181 // If there is a personality routine, tell it we are unwinding.
182 if (frameInfo.handler != 0) {
183 __personality_routine p =
184 (__personality_routine)(long)(frameInfo.handler);
185 _Unwind_Action action = _UA_CLEANUP_PHASE;
186 if (sp == exception_object->private_2) {
187 // Tell personality this was the frame it marked in phase 1.
188 action = (_Unwind_Action)(_UA_CLEANUP_PHASE | _UA_HANDLER_FRAME);
189 }
190 _Unwind_Reason_Code personalityResult =
191 (*p)(1, action, exception_object->exception_class, exception_object,
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000192 (struct _Unwind_Context *)(cursor));
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000193 switch (personalityResult) {
194 case _URC_CONTINUE_UNWIND:
195 // Continue unwinding
196 _LIBUNWIND_TRACE_UNWINDING(
197 "unwind_phase2(ex_ojb=%p): _URC_CONTINUE_UNWIND\n",
198 (void *)exception_object);
199 if (sp == exception_object->private_2) {
200 // Phase 1 said we would stop at this frame, but we did not...
201 _LIBUNWIND_ABORT("during phase1 personality function said it would "
202 "stop here, but now in phase2 it did not stop here");
203 }
204 break;
205 case _URC_INSTALL_CONTEXT:
206 _LIBUNWIND_TRACE_UNWINDING(
207 "unwind_phase2(ex_ojb=%p): _URC_INSTALL_CONTEXT\n",
208 (void *)exception_object);
209 // Personality routine says to transfer control to landing pad.
210 // We may get control back if landing pad calls _Unwind_Resume().
211 if (_LIBUNWIND_TRACING_UNWINDING) {
212 unw_word_t pc;
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000213 unw_get_reg(cursor, UNW_REG_IP, &pc);
214 unw_get_reg(cursor, UNW_REG_SP, &sp);
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000215 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2(ex_ojb=%p): re-entering "
216 "user code with ip=0x%" PRIx64
217 ", sp=0x%" PRIx64 "\n",
218 (void *)exception_object, pc, sp);
219 }
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000220 unw_resume(cursor);
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000221 // unw_resume() only returns if there was an error.
222 return _URC_FATAL_PHASE2_ERROR;
223 default:
224 // Personality routine returned an unknown result code.
225 _LIBUNWIND_DEBUG_LOG("personality function returned unknown result %d",
226 personalityResult);
227 return _URC_FATAL_PHASE2_ERROR;
228 }
229 }
230 }
231
232 // Clean up phase did not resume at the frame that the search phase
233 // said it would...
234 return _URC_FATAL_PHASE2_ERROR;
235}
236
237static _Unwind_Reason_Code
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000238unwind_phase2_forced(unw_context_t *uc, unw_cursor_t *cursor,
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000239 _Unwind_Exception *exception_object,
240 _Unwind_Stop_Fn stop, void *stop_parameter) {
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000241 unw_init_local(cursor, uc);
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000242
243 // Walk each frame until we reach where search phase said to stop
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000244 while (unw_step(cursor) > 0) {
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000245
246 // Update info about this frame.
247 unw_proc_info_t frameInfo;
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000248 if (unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) {
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000249 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2_forced(ex_ojb=%p): unw_step "
250 "failed => _URC_END_OF_STACK\n",
251 (void *)exception_object);
252 return _URC_FATAL_PHASE2_ERROR;
253 }
254
255 // When tracing, print state information.
256 if (_LIBUNWIND_TRACING_UNWINDING) {
257 char functionBuf[512];
258 const char *functionName = functionBuf;
259 unw_word_t offset;
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000260 if ((unw_get_proc_name(cursor, functionBuf, sizeof(functionBuf),
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000261 &offset) != UNW_ESUCCESS) ||
262 (frameInfo.start_ip + offset > frameInfo.end_ip))
263 functionName = ".anonymous.";
264 _LIBUNWIND_TRACE_UNWINDING(
265 "unwind_phase2_forced(ex_ojb=%p): start_ip=0x%" PRIx64
266 ", func=%s, lsda=0x%" PRIx64 ", personality=0x%" PRIx64 "\n",
267 (void *)exception_object, frameInfo.start_ip, functionName,
268 frameInfo.lsda, frameInfo.handler);
269 }
270
271 // Call stop function at each frame.
272 _Unwind_Action action =
273 (_Unwind_Action)(_UA_FORCE_UNWIND | _UA_CLEANUP_PHASE);
274 _Unwind_Reason_Code stopResult =
275 (*stop)(1, action, exception_object->exception_class, exception_object,
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000276 (struct _Unwind_Context *)(cursor), stop_parameter);
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000277 _LIBUNWIND_TRACE_UNWINDING(
278 "unwind_phase2_forced(ex_ojb=%p): stop function returned %d\n",
279 (void *)exception_object, stopResult);
280 if (stopResult != _URC_NO_REASON) {
281 _LIBUNWIND_TRACE_UNWINDING(
282 "unwind_phase2_forced(ex_ojb=%p): stopped by stop function\n",
283 (void *)exception_object);
284 return _URC_FATAL_PHASE2_ERROR;
285 }
286
287 // If there is a personality routine, tell it we are unwinding.
288 if (frameInfo.handler != 0) {
289 __personality_routine p =
290 (__personality_routine)(long)(frameInfo.handler);
291 _LIBUNWIND_TRACE_UNWINDING(
292 "unwind_phase2_forced(ex_ojb=%p): calling personality function %p\n",
293 (void *)exception_object, (void *)(uintptr_t)p);
294 _Unwind_Reason_Code personalityResult =
295 (*p)(1, action, exception_object->exception_class, exception_object,
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000296 (struct _Unwind_Context *)(cursor));
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000297 switch (personalityResult) {
298 case _URC_CONTINUE_UNWIND:
299 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2_forced(ex_ojb=%p): "
300 "personality returned "
301 "_URC_CONTINUE_UNWIND\n",
302 (void *)exception_object);
303 // Destructors called, continue unwinding
304 break;
305 case _URC_INSTALL_CONTEXT:
306 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2_forced(ex_ojb=%p): "
307 "personality returned "
308 "_URC_INSTALL_CONTEXT\n",
309 (void *)exception_object);
310 // We may get control back if landing pad calls _Unwind_Resume().
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000311 unw_resume(cursor);
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000312 break;
313 default:
314 // Personality routine returned an unknown result code.
315 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2_forced(ex_ojb=%p): "
316 "personality returned %d, "
317 "_URC_FATAL_PHASE2_ERROR\n",
318 (void *)exception_object, personalityResult);
319 return _URC_FATAL_PHASE2_ERROR;
320 }
321 }
322 }
323
324 // Call stop function one last time and tell it we've reached the end
325 // of the stack.
326 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2_forced(ex_ojb=%p): calling stop "
327 "function with _UA_END_OF_STACK\n",
328 (void *)exception_object);
329 _Unwind_Action lastAction =
330 (_Unwind_Action)(_UA_FORCE_UNWIND | _UA_CLEANUP_PHASE | _UA_END_OF_STACK);
331 (*stop)(1, lastAction, exception_object->exception_class, exception_object,
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000332 (struct _Unwind_Context *)(cursor), stop_parameter);
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000333
334 // Clean up phase did not resume at the frame that the search phase said it
335 // would.
336 return _URC_FATAL_PHASE2_ERROR;
337}
338
339
340/// Called by __cxa_throw. Only returns if there is a fatal error.
341_LIBUNWIND_EXPORT _Unwind_Reason_Code
342_Unwind_RaiseException(_Unwind_Exception *exception_object) {
343 _LIBUNWIND_TRACE_API("_Unwind_RaiseException(ex_obj=%p)\n",
344 (void *)exception_object);
345 unw_context_t uc;
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000346 unw_cursor_t cursor;
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000347 unw_getcontext(&uc);
348
349 // Mark that this is a non-forced unwind, so _Unwind_Resume()
350 // can do the right thing.
351 exception_object->private_1 = 0;
352 exception_object->private_2 = 0;
353
354 // phase 1: the search phase
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000355 _Unwind_Reason_Code phase1 = unwind_phase1(&uc, &cursor, exception_object);
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000356 if (phase1 != _URC_NO_REASON)
357 return phase1;
358
359 // phase 2: the clean up phase
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000360 return unwind_phase2(&uc, &cursor, exception_object);
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000361}
362
363
364
365/// When _Unwind_RaiseException() is in phase2, it hands control
366/// to the personality function at each frame. The personality
367/// may force a jump to a landing pad in that function, the landing
368/// pad code may then call _Unwind_Resume() to continue with the
369/// unwinding. Note: the call to _Unwind_Resume() is from compiler
370/// geneated user code. All other _Unwind_* routines are called
371/// by the C++ runtime __cxa_* routines.
372///
373/// Note: re-throwing an exception (as opposed to continuing the unwind)
374/// is implemented by having the code call __cxa_rethrow() which
375/// in turn calls _Unwind_Resume_or_Rethrow().
376_LIBUNWIND_EXPORT void
377_Unwind_Resume(_Unwind_Exception *exception_object) {
378 _LIBUNWIND_TRACE_API("_Unwind_Resume(ex_obj=%p)\n", (void *)exception_object);
379 unw_context_t uc;
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000380 unw_cursor_t cursor;
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000381 unw_getcontext(&uc);
382
383 if (exception_object->private_1 != 0)
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000384 unwind_phase2_forced(&uc, &cursor, exception_object,
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000385 (_Unwind_Stop_Fn) exception_object->private_1,
386 (void *)exception_object->private_2);
387 else
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000388 unwind_phase2(&uc, &cursor, exception_object);
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000389
390 // Clients assume _Unwind_Resume() does not return, so all we can do is abort.
391 _LIBUNWIND_ABORT("_Unwind_Resume() can't return");
392}
393
394
395
396/// Not used by C++.
397/// Unwinds stack, calling "stop" function at each frame.
398/// Could be used to implement longjmp().
399_LIBUNWIND_EXPORT _Unwind_Reason_Code
400_Unwind_ForcedUnwind(_Unwind_Exception *exception_object,
401 _Unwind_Stop_Fn stop, void *stop_parameter) {
402 _LIBUNWIND_TRACE_API("_Unwind_ForcedUnwind(ex_obj=%p, stop=%p)\n",
403 (void *)exception_object, (void *)(uintptr_t)stop);
404 unw_context_t uc;
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000405 unw_cursor_t cursor;
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000406 unw_getcontext(&uc);
407
408 // Mark that this is a forced unwind, so _Unwind_Resume() can do
409 // the right thing.
410 exception_object->private_1 = (uintptr_t) stop;
411 exception_object->private_2 = (uintptr_t) stop_parameter;
412
413 // do it
Asiri Rathnayake7a00ec92016-06-14 15:51:01 +0000414 return unwind_phase2_forced(&uc, &cursor, exception_object, stop, stop_parameter);
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000415}
416
417
418/// Called by personality handler during phase 2 to get LSDA for current frame.
419_LIBUNWIND_EXPORT uintptr_t
420_Unwind_GetLanguageSpecificData(struct _Unwind_Context *context) {
421 unw_cursor_t *cursor = (unw_cursor_t *)context;
422 unw_proc_info_t frameInfo;
423 uintptr_t result = 0;
424 if (unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS)
425 result = (uintptr_t)frameInfo.lsda;
426 _LIBUNWIND_TRACE_API(
427 "_Unwind_GetLanguageSpecificData(context=%p) => 0x%" PRIxPTR "\n",
428 (void *)context, result);
429 if (result != 0) {
430 if (*((uint8_t *)result) != 0xFF)
431 _LIBUNWIND_DEBUG_LOG("lsda at 0x%" PRIxPTR " does not start with 0xFF\n",
432 result);
433 }
434 return result;
435}
436
437
438/// Called by personality handler during phase 2 to find the start of the
439/// function.
440_LIBUNWIND_EXPORT uintptr_t
441_Unwind_GetRegionStart(struct _Unwind_Context *context) {
442 unw_cursor_t *cursor = (unw_cursor_t *)context;
443 unw_proc_info_t frameInfo;
444 uintptr_t result = 0;
445 if (unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS)
446 result = (uintptr_t)frameInfo.start_ip;
447 _LIBUNWIND_TRACE_API("_Unwind_GetRegionStart(context=%p) => 0x%" PRIxPTR "\n",
448 (void *)context, result);
449 return result;
450}
451
452
453/// Called by personality handler during phase 2 if a foreign exception
454// is caught.
455_LIBUNWIND_EXPORT void
456_Unwind_DeleteException(_Unwind_Exception *exception_object) {
457 _LIBUNWIND_TRACE_API("_Unwind_DeleteException(ex_obj=%p)\n",
458 (void *)exception_object);
459 if (exception_object->exception_cleanup != NULL)
460 (*exception_object->exception_cleanup)(_URC_FOREIGN_EXCEPTION_CAUGHT,
461 exception_object);
462}
463
464/// Called by personality handler during phase 2 to get register values.
465_LIBUNWIND_EXPORT uintptr_t
466_Unwind_GetGR(struct _Unwind_Context *context, int index) {
467 unw_cursor_t *cursor = (unw_cursor_t *)context;
468 unw_word_t result;
469 unw_get_reg(cursor, index, &result);
470 _LIBUNWIND_TRACE_API("_Unwind_GetGR(context=%p, reg=%d) => 0x%" PRIx64 "\n",
471 (void *)context, index, (uint64_t)result);
472 return (uintptr_t)result;
473}
474
475/// Called by personality handler during phase 2 to alter register values.
476_LIBUNWIND_EXPORT void _Unwind_SetGR(struct _Unwind_Context *context, int index,
477 uintptr_t value) {
478 _LIBUNWIND_TRACE_API("_Unwind_SetGR(context=%p, reg=%d, value=0x%0" PRIx64
479 ")\n",
480 (void *)context, index, (uint64_t)value);
481 unw_cursor_t *cursor = (unw_cursor_t *)context;
482 unw_set_reg(cursor, index, value);
483}
484
485/// Called by personality handler during phase 2 to get instruction pointer.
486_LIBUNWIND_EXPORT uintptr_t _Unwind_GetIP(struct _Unwind_Context *context) {
487 unw_cursor_t *cursor = (unw_cursor_t *)context;
488 unw_word_t result;
489 unw_get_reg(cursor, UNW_REG_IP, &result);
490 _LIBUNWIND_TRACE_API("_Unwind_GetIP(context=%p) => 0x%" PRIx64 "\n",
491 (void *)context, (uint64_t)result);
492 return (uintptr_t)result;
493}
494
495/// Called by personality handler during phase 2 to alter instruction pointer,
496/// such as setting where the landing pad is, so _Unwind_Resume() will
497/// start executing in the landing pad.
498_LIBUNWIND_EXPORT void _Unwind_SetIP(struct _Unwind_Context *context,
499 uintptr_t value) {
500 _LIBUNWIND_TRACE_API("_Unwind_SetIP(context=%p, value=0x%0" PRIx64 ")\n",
501 (void *)context, (uint64_t)value);
502 unw_cursor_t *cursor = (unw_cursor_t *)context;
503 unw_set_reg(cursor, UNW_REG_IP, value);
504}
505
Logan Chien61278582015-07-19 15:23:10 +0000506#endif // !_LIBUNWIND_ARM_EHABI