Lines Matching refs:personality

27 /// function also sets the personality and lsda fields of the block.
43 // set by personality handler to be parameters passed to landing pad function
49 // set by personality handler to be parameters passed to landing pad function
54 _Unwind_Personality_Fn personality; // arm offset=24
139 // if there is a personality routine, ask it if it will want to stop at this
141 if (c->personality != NULL) {
143 "personality function %p",
145 (void *)c->personality);
146 _Unwind_Reason_Code personalityResult = (*c->personality)(
200 // if there is a personality routine, tell it we are unwinding
201 if (c->personality != NULL) {
206 _UA_HANDLER_FRAME); // tell personality this was the frame it marked
209 (*c->personality)(1, action, exception_object->exception_class,
219 _LIBUNWIND_ABORT("during phase1 personality function said it would "
228 // personality routine says to transfer control to landing pad
236 _LIBUNWIND_DEBUG_LOG("personality function returned unknown result %d",
282 // if there is a personality routine, tell it we are unwinding
283 if (c->personality != NULL) {
284 _Unwind_Personality_Fn p = (_Unwind_Personality_Fn)c->personality;
286 "calling personality function %p",
294 "personality returned _URC_CONTINUE_UNWIND",
300 "personality returned _URC_INSTALL_CONTEXT",
309 "personality returned %d, "
357 /// to the personality function at each frame. The personality
406 /// Called by personality handler during phase 2 to get LSDA for current frame.
417 /// Called by personality handler during phase 2 to get register values.
427 /// Called by personality handler during phase 2 to alter register values.
438 /// Called by personality handler during phase 2 to get instruction pointer.
447 /// Called by personality handler during phase 2 to get instruction pointer.
461 /// Called by personality handler during phase 2 to alter instruction pointer.
471 /// Called by personality handler during phase 2 to find the start of the
482 /// Called by personality handler during phase 2 if a foreign exception
495 /// Called by personality handler during phase 2 to get base address for data
506 /// Called by personality handler during phase 2 to get base address for text
517 /// Called by personality handler to get "Call Frame Area" for current frame.