Searched refs:unwind (Results 1 - 25 of 49) sorted by relevance

12

/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_report_fuchsia.cpp24 UnwindSignalStackCallbackType unwind,
28 UnwindSignalStackCallbackType unwind,
23 ReportDeadlySignal(const SignalContext &sig, u32 tid, UnwindSignalStackCallbackType unwind, const void *unwind_context) argument
27 HandleDeadlySignal(void *siginfo, void *context, u32 tid, UnwindSignalStackCallbackType unwind, const void *unwind_context) argument
H A Dsanitizer_symbolizer_report.cpp217 UnwindSignalStackCallbackType unwind,
229 unwind(sig, unwind_context, stack);
235 UnwindSignalStackCallbackType unwind,
268 unwind(sig, unwind_context, stack);
277 UnwindSignalStackCallbackType unwind,
280 ReportStackOverflowImpl(sig, tid, unwind, unwind_context);
282 ReportDeadlySignalImpl(sig, tid, unwind, unwind_context);
286 UnwindSignalStackCallbackType unwind,
291 ReportDeadlySignal(sig, tid, unwind, unwind_context);
216 ReportStackOverflowImpl(const SignalContext &sig, u32 tid, UnwindSignalStackCallbackType unwind, const void *unwind_context) argument
234 ReportDeadlySignalImpl(const SignalContext &sig, u32 tid, UnwindSignalStackCallbackType unwind, const void *unwind_context) argument
276 ReportDeadlySignal(const SignalContext &sig, u32 tid, UnwindSignalStackCallbackType unwind, const void *unwind_context) argument
285 HandleDeadlySignal(void *siginfo, void *context, u32 tid, UnwindSignalStackCallbackType unwind, const void *unwind_context) argument
H A Dsanitizer_unwind_fuchsia.cpp10 /// Sanitizer unwind Fuchsia specific functions.
18 # include <unwind.h>
H A Dsanitizer_unwind_linux_libcdep.cpp9 // This file contains the unwind.h-based (aka "slow") stack unwinding routines
24 #define _GNU_SOURCE // to declare _Unwind_Backtrace() from <unwind.h>
26 #include <unwind.h>
98 // Pre-lollipop Android can not unwind through signal handler frames with
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dunwind-ehabi-helpers.h14 #include <unwind.h>
21 // AFTER unwind.h (which is why it is forcefully included above). This ensures
33 // Guarded redefinitions of the needed unwind state prevent the redefinition of
/freebsd-current/contrib/llvm-project/libunwind/src/
H A DUnwind-EHABI.h18 #include <unwind.h>
20 // Unable to unwind in the ARM index table (section 5 EHABI).
H A Dlibunwind_ext.h17 #include <unwind.h>
63 // Holds a description of the object-format-header (if any) and unwind info
77 // range of a compact-unwind info section associated with the given address,
91 // Typedef for unwind-info lookup callbacks. Functions of this type can be
95 // An unwind-info lookup callback should return 1 to indicate that it found
96 // unwind-info for the given address, or 0 to indicate that it did not find
97 // unwind-info for the given address. If found, the callback should populate
103 // Register a dynamic unwind-info lookup callback. If libunwind does not find
104 // unwind info for a given frame in the executable program or normal dynamic
117 // Deregister a dynacim unwind
[all...]
/freebsd-current/lib/libexecinfo/
H A DMakefile12 SRCS= backtrace.c symtab.c unwind.c
/freebsd-current/lib/libgcc_eh/
H A DMakefile15 INCS+= ${UNWINDINCDIR}/unwind.h
/freebsd-current/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_linux.cpp39 #include <unwind.h>
/freebsd-current/tools/regression/sockets/unix_bindconnect/
H A Dunix_bindconnect.c56 static struct unwind { struct
72 unwind(void) function
314 unwind();
/freebsd-current/contrib/llvm-project/lldb/source/API/
H A DSBExpressionOptions.cpp58 void SBExpressionOptions::SetUnwindOnError(bool unwind) { argument
59 LLDB_INSTRUMENT_VA(this, unwind);
61 m_opaque_up->SetUnwindOnError(unwind);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_exceptions.cpp17 #include <unwind.h>
/freebsd-current/contrib/llvm-project/lldb/include/lldb/API/
H A DSBExpressionOptions.h34 void SetUnwindOnError(bool unwind = true);
/freebsd-current/sys/amd64/linux32/
H A Dlinux32_locore.asm43 popl %eax /* gcc unwind code need this */
90 popl %eax /* gcc unwind code need this */
/freebsd-current/sys/i386/linux/
H A Dlinux_locore.asm42 popl %eax /* gcc unwind code need this */
86 popl %eax /* gcc unwind code need this */
/freebsd-current/contrib/llvm-project/clang/lib/Headers/
H A Dunwind.h1 /*===---- unwind.h - Stack unwinding ----------------------------------------===
15 #if defined(__APPLE__) && __has_include_next(<unwind.h>)
16 /* Darwin (from 11.x on) provide an unwind.h. If that's available,
23 // libunwind's unwind.h reflects the current visibility. However, Mozilla
24 // builds with -fvisibility=hidden and relies on gcc's unwind.h to reset the
30 # include_next <unwind.h>
33 # include_next <unwind.h>
118 uint32_t reserved1; /* forced unwind stop function, 0 if not forced */
121 uint32_t reserved4; /* forced unwind stop argument */
/freebsd-current/contrib/llvm-project/lld/COFF/
H A DDLL.cpp235 0x05, // Count of unwind codes
352 TailMergePDataChunkX64(Chunk *tm, Chunk *unwind) : tm(tm), unwind(unwind) { argument
363 write32le(buf + 8, unwind->getRVA()); // UnwindInfo RVA
367 Chunk *unwind = nullptr; member in class:lld::coff::__anon1279::TailMergePDataChunkX64
739 Chunk *unwind = newTailMergeUnwindInfoChunk(); local
749 Chunk *pdataChunk = unwind ? newTailMergePDataChunk(tm, unwind) : nullptr;
793 if (unwind)
823 newTailMergePDataChunk(Chunk *tm, Chunk *unwind) argument
[all...]
H A DDLL.h56 Chunk *newTailMergePDataChunk(Chunk *tm, Chunk *unwind);
/freebsd-current/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DCOFFAsmParser.cpp149 bool ParseAtUnwindOrAtExcept(bool &unwind, bool &except);
693 return TokError("you must specify one or both of @unwind or @except");
695 bool unwind = false, except = false; local
696 if (ParseAtUnwindOrAtExcept(unwind, except))
700 if (ParseAtUnwindOrAtExcept(unwind, except))
709 getStreamer().emitWinEHHandler(handler, unwind, except, Loc);
738 bool COFFAsmParser::ParseAtUnwindOrAtExcept(bool &unwind, bool &except) { argument
745 return Error(startLoc, "expected @unwind or @except");
746 if (identifier == "unwind")
747 unwind
[all...]
/freebsd-current/usr.sbin/yp_mkdb/
H A Dyp_mkdb.c77 unwind(char *map) function
160 unwind(map);
/freebsd-current/sys/modules/linux64/
H A DMakefile67 -nostdinc -fasynchronous-unwind-tables \
74 -nostdinc -fasynchronous-unwind-tables \
/freebsd-current/sys/modules/linux/
H A DMakefile101 -fno-common -nostdinc -fasynchronous-unwind-tables \
108 -fno-common -nostdinc -fasynchronous-unwind-tables \
/freebsd-current/stand/i386/boot2/
H A DMakefile36 -fno-asynchronous-unwind-tables \
/freebsd-current/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_linux.cpp29 # include <unwind.h>

Completed in 175 milliseconds

12