| /NextBSD/contrib/llvm/projects/libunwind/src/ |
| HD | Unwind-sjlj.c | 48 __personality_routine personality; // arm offset=24 member 91 if (c->personality != NULL) { in unwind_phase1() 94 exception_object, c->personality); in unwind_phase1() 95 _Unwind_Reason_Code personalityResult = (*c->personality)( in unwind_phase1() 146 if (c->personality != NULL) { in unwind_phase2() 154 (*c->personality)(1, action, exception_object->exception_class, in unwind_phase2() 227 if (c->personality != NULL) { in unwind_phase2_forced() 228 __personality_routine p = (__personality_routine) c->personality; in unwind_phase2_forced()
|
| HD | UnwindCursor.hpp | 886 _info.handler = cieInfo.personality; in getInfoFromDwarfSection() 968 pint_t personality = 0; in getInfoFromCompactEncodingSection() local 1143 personality = _addressSpace.getP(personalityPointer); in getInfoFromCompactEncodingSection() 1147 (uint64_t) pc, personalityDelta, (uint64_t) personality); in getInfoFromCompactEncodingSection() 1157 _info.handler = personality; in getInfoFromCompactEncodingSection() 1246 _info.handler = cieInfo.personality; in setInfoBasedOnIPRegister() 1276 _info.handler = cieInfo.personality; in setInfoBasedOnIPRegister()
|
| HD | DwarfParser.hpp | 46 pint_t personality; member 261 cieInfo->personality = 0; in parseCIE() 315 cieInfo->personality = addressSpace in parseCIE()
|
| HD | UnwindRegistersSave.S | 374 @ only accessed if the personality routine needs these registers. Use of
|
| HD | UnwindRegistersRestore.S | 355 @ only accessed if the personality routine needs these registers. Use of
|
| /NextBSD/contrib/gcc/ |
| HD | unwind-sjlj.c | 75 _Unwind_Personality_Fn personality; member 96 _Unwind_Personality_Fn personality; member 273 fs->personality = NULL; in uw_frame_state_for() 278 fs->personality = context->fc->personality; in uw_frame_state_for()
|
| HD | unwind.inc | 36 Unwind the stack calling the personality routine to find both the 63 /* Unwind successful. Run the personality routine, if any. */ 64 if (fs.personality) 66 code = (*fs.personality) (1, _UA_CLEANUP_PHASE | match_handler, 95 /* Phase 1: Search. Unwind the stack, calling the personality routine 114 /* Unwind successful. Run the personality routine, if any. */ 115 if (fs.personality) 117 code = (*fs.personality) (1, _UA_SEARCH_PHASE, exc->exception_class, 172 /* Stop didn't want to do anything. Invoke the personality 177 if (fs.personality) [all …]
|
| HD | unwind-dw2.h | 81 _Unwind_Personality_Fn personality; member
|
| HD | unwind-dw2.c | 405 _Unwind_Ptr personality; in extract_cie_info() local 407 p = read_encoded_value (context, *p, p + 1, &personality); in extract_cie_info() 408 fs->personality = (_Unwind_Personality_Fn) personality; in extract_cie_info()
|
| /NextBSD/contrib/binutils/gas/ |
| HD | dw2gencfi.c | 93 expressionS personality; member 107 expressionS personality; member 670 expression_and_evaluate (&fde->personality); in dot_cfi_personality() 671 switch (fde->personality.X_op) in dot_cfi_personality() 1083 exp = cie->personality; in output_cie() 1201 if (cie->personality.X_op != fde->personality.X_op in select_cie_for_fde() 1202 || cie->personality.X_add_number in select_cie_for_fde() 1203 != fde->personality.X_add_number) in select_cie_for_fde() 1205 switch (cie->personality.X_op) in select_cie_for_fde() 1208 if (cie->personality.X_unsigned != fde->personality.X_unsigned) in select_cie_for_fde() [all …]
|
| /NextBSD/contrib/binutils/bfd/ |
| HD | elf-eh-frame.c | 44 } personality; member 230 && memcmp (&c1->personality, &c2->personality, in cie_eq() 231 sizeof (c1->personality)) == 0 in cie_eq() 263 h = iterative_hash_object (c->personality, h); in cie_compute_hash() 704 cie->personality.h = h; in _bfd_elf_discard_section_eh_frame() 724 cie->personality.val = val; in _bfd_elf_discard_section_eh_frame() 736 REQUIRE (cie->local_personality || cie->personality.h); in _bfd_elf_discard_section_eh_frame()
|
| HD | ChangeLog | 428 "personality" a union. 429 (cie_eq): Compare local_personality too. Adjust personality 431 (_bfd_elf_discard_section_eh_frame): Check binding on personality 433 than reading personality local sym. Handle discarded sections. 481 * elf-eh-frame.c (struct cie): Make "personality" a bfd_vma. 483 personality relocation.
|
| /NextBSD/contrib/gcc/config/arm/ |
| HD | libgcc-bpabi.ver | 80 # The libstdc++ exception-handling personality routine uses this
|
| HD | t-symbian | 15 # Include the gcc personality routine
|
| /NextBSD/contrib/binutils/gas/doc/ |
| HD | c-arm.texi | 500 If no personality routine has been specified then standard personality 506 Prevents unwinding through the current function. No personality routine 509 @cindex @code{.personality} directive, ARM 510 @item .personality @var{name} 511 Sets the personality routine for the current function to @var{name}. 515 Sets the personality routine for the current function to the EABI standard 524 Must be preceded by a @code{.personality} or @code{.personalityindex}
|
| /NextBSD/contrib/llvm/lib/MC/ |
| HD | MCDwarf.cpp | 1018 const MCSymbol *personality, 1263 const MCSymbol *personality, in EmitCIE() argument 1295 if (personality) in EmitCIE() 1334 if (personality) { in EmitCIE() 1348 if (personality) { in EmitCIE() 1352 EmitPersonality(streamer, *personality, personalityEncoding); in EmitCIE()
|
| /NextBSD/sys/conf/ |
| HD | ldscript.i386 | 52 KEEP (*(.text.*personality*)) 139 KEEP (*(.gnu.linkonce.d.*personality*))
|
| HD | ldscript.amd64 | 64 KEEP (*(.text.*personality*)) 151 KEEP (*(.gnu.linkonce.d.*personality*))
|
| /NextBSD/contrib/compiler-rt/lib/sanitizer_common/ |
| HD | sanitizer_posix.cc | 74 int pers = personality(0xffffffffUL); in GetKernelAreaSize()
|
| /NextBSD/contrib/compiler-rt/lib/builtins/ |
| HD | README.txt | 210 // C code (as opposed to C++) normally does not need a personality function 215 // so a personality handler is needed.
|
| /NextBSD/contrib/binutils/ld/scripttempl/ |
| HD | mep.sc | 303 KEEP (*(.text.*personality*)) 363 KEEP (*(.gnu.linkonce.d.*personality*))
|
| HD | elf.sc | 352 KEEP (*(.text.*personality*)) 429 ${RELOCATING+KEEP (*(.gnu.linkonce.d.*personality*))}
|
| /NextBSD/contrib/compiler-rt/include/sanitizer/ |
| HD | linux_syscall_hooks.h | 165 #define __sanitizer_syscall_pre_personality(personality) \ argument 166 __sanitizer_syscall_pre_impl_personality((long)(personality)) 167 #define __sanitizer_syscall_post_personality(res, personality) \ argument 168 __sanitizer_syscall_post_impl_personality(res, (long)(personality)) 2085 void __sanitizer_syscall_pre_impl_personality(long personality); 2086 void __sanitizer_syscall_post_impl_personality(long res, long personality);
|
| /NextBSD/contrib/llvm/tools/clang/lib/CodeGen/ |
| HD | CGException.cpp | 700 const EHPersonality &personality = EHPersonality::get(*this); in EmitLandingPad() local 703 CurFn->setPersonalityFn(getOpaquePersonalityFn(CGM, personality)); in EmitLandingPad()
|
| /NextBSD/contrib/llvm/lib/AsmParser/ |
| HD | LLLexer.cpp | 669 KEYWORD(personality); in LexIdentifier()
|