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

123

/freebsd-10.1-release/gnu/lib/libsupc++/
H A DMakefile39 unwind.h: ${GCCDIR}/config/arm/unwind-arm.h
41 unwind.h: ${GCCDIR}/unwind-generic.h
44 unwind.h:
47 SRCS+= unwind.h
48 CLEANFILES+= unwind.h
/freebsd-10.1-release/lib/libexecinfo/
H A DMakefile11 SRCS= backtrace.c symtab.c unwind.c
/freebsd-10.1-release/contrib/gdb/gdb/
H A Dframe-base.h34 register unwind method, to determine the address of THIS frame's
64 const struct frame_unwind *unwind; member in struct:frame_base
H A Dframe.c38 #include "frame-unwind.h"
68 ->unwind->type. Unfortunately, legacy code is still explicitly
91 for the previous frame. The low-level unwind methods are
92 selected based on the presence, or otherwize, of register unwind
95 const struct frame_unwind *unwind; member in struct:frame_info
186 fprintf_unfiltered (file, "unwind=");
187 if (fi->unwind != NULL)
188 gdb_print_host_address (fi->unwind, file);
229 if (fi->unwind == NULL)
231 fi->unwind
[all...]
H A Dsomsolib.c182 struct unwind_table_entry *unwind; member in struct:__anon1407
783 unwind information for stack tracebacks.)
804 read its symbols. This allows us to use its unwind
1218 dld_cache.load.unwind = find_unwind_entry (dld_cache.load.address);
1231 dld_cache.load_stub.unwind = u;
1240 dld_cache.unload.unwind = find_unwind_entry (dld_cache.unload.address);
1243 that on some HPUX 10.x versions, there's two unwind regions to
1249 if (dld_cache.unload.unwind != NULL)
1251 u = find_unwind_entry (dld_cache.unload.unwind->region_end + 4);
1255 dld_cache.unload2.unwind
[all...]
/freebsd-10.1-release/gnu/usr.bin/binutils/libbinutils/
H A DMakefile22 unwind-ia64.c \
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/API/
H A DSBExpressionOptions.cpp63 SBExpressionOptions::SetUnwindOnError (bool unwind) argument
65 m_opaque_ap->SetUnwindOnError (unwind);
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBExpressionOptions.h42 SetUnwindOnError (bool unwind = true);
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Headers/
H A Dunwind.h1 /*===---- unwind.h - Stack unwinding ----------------------------------------===
29 #if __has_include_next(<unwind.h>)
30 /* Darwin (from 11.x on) and libunwind provide an unwind.h. If that's available,
37 // libunwind's unwind.h reflects the current visibility. However, Mozilla
38 // builds with -fvisibility=hidden and relies on gcc's unwind.h to reset the
44 # include_next <unwind.h>
47 # include_next <unwind.h>
/freebsd-10.1-release/lib/libc++/
H A DMakefile165 unwind.h\
166 unwind-arm.h\
167 unwind-itanium.h
/freebsd-10.1-release/tools/regression/sockets/unix_bindconnect/
H A Dunix_bindconnect.c58 struct unwind { struct
74 unwind(void) function
316 unwind();
/freebsd-10.1-release/sys/boot/ia64/efi/
H A Dldscript.ia6436 .IA_64.unwind : { *(.IA_64.unwind* .gnu.linkonce.ia64unw.*) }
/freebsd-10.1-release/sys/boot/ia64/ski/
H A Dldscript.ia6432 .IA_64.unwind : { *(.IA_64.unwind* .gnu.linkonce.ia64unw.*) }
/freebsd-10.1-release/gnu/lib/libgcc/
H A DMakefile71 LIB2ADDEH = unwind-dw2.c unwind-dw2-fde-glibc.c unwind-sjlj.c gthr-gnat.c \
72 unwind-c.c
121 LIB2ADDEH = unwind-arm.c libunwind.S pr-support.c unwind-c.c
149 LIB2ADDEH = unwind-ia64.c unwind-sjlj.c unwind-c.c
180 COMMONHDRS= tm.h tconfig.h options.h unwind
[all...]
/freebsd-10.1-release/contrib/binutils/gas/config/
H A Dtc-ia64.c132 /* The following pseudo-registers are used for unwind directives only: */
258 /* What to do when something is wrong with unwind directives. */
597 /* unwind-related constants: */
606 /* unwind-related registers: */
627 {".IA_64.unwind"}, {".IA_64.unwind_info"},
705 unwind records. */
742 /* Maintain a list of unwind entries for the current function. */
746 /* Any unwind entires that should be attached to the current slot
750 /* These are used to create the unwind table entry for this function. */
752 symbolS *info; /* pointer to unwind inf
770 } unwind; variable in typeref:struct:__anon342
[all...]
/freebsd-10.1-release/contrib/gcc/
H A Dunwind.inc1 /* Exception handling and frame unwind runtime interface routines. -*- C -*-
32 This file is included from unwind-dw2.c or unwind-ia64.c. */
74 /* Don't let us unwind past the handler context. */
130 is not a forced unwind. Further, note where we found a handler. */
279 /* Perform stack backtrace through unwind data. */
/freebsd-10.1-release/sys/dev/drm2/i915/
H A Di915_gem_evict.c38 mark_free(struct drm_i915_gem_object *obj, struct list_head *unwind) argument
40 list_add(&obj->exec_list, unwind);
/freebsd-10.1-release/contrib/llvm/lib/MC/MCParser/
H A DCOFFAsmParser.cpp137 bool ParseAtUnwindOrAtExcept(bool &unwind, bool &except);
555 return TokError("you must specify one or both of @unwind or @except");
557 bool unwind = false, except = false; local
558 if (ParseAtUnwindOrAtExcept(unwind, except))
562 if (ParseAtUnwindOrAtExcept(unwind, except))
571 getStreamer().EmitWin64EHHandler(handler, unwind, except);
714 bool COFFAsmParser::ParseAtUnwindOrAtExcept(bool &unwind, bool &except) { argument
721 return Error(startLoc, "expected @unwind or @except");
722 if (identifier == "unwind")
723 unwind
[all...]
/freebsd-10.1-release/sys/conf/
H A Dldscript.ia6451 .IA_64.unwind : { *(.IA_64.unwind* .gnu.linkonce.ia64unw.*) }
/freebsd-10.1-release/usr.sbin/yp_mkdb/
H A Dyp_mkdb.c79 unwind(char *map) function
163 unwind(map);
/freebsd-10.1-release/gnu/lib/csu/
H A DMakefile20 -fno-zero-initialized-in-bss -fno-asynchronous-unwind-tables \
/freebsd-10.1-release/gnu/usr.bin/gdb/kgdb/
H A Dtrgt_amd64.c42 #include <frame-unwind.h>
H A Dtrgt_powerpc.c47 #include <frame-unwind.h>
H A Dtrgt_powerpc64.c42 #include <frame-unwind.h>
H A Dtrgt_sparc64.c43 #include <frame-unwind.h>

Completed in 297 milliseconds

123