Blame include/sys/unwind.h

d29346
#ifndef _SYS_UNWIND_H
d29346
#define _SYS_UNWIND_H
d29346
d29346
#include <stdint.h>
d29346
#include <signal.h>
d29346
d29346
#ifdef __cplusplus
d29346
extern "C" {
d29346
#endif
d29346
d29346
enum __unwind_reason_code {
d29346
	__URC_NO_REASON,
d29346
	__URC_FOREIGN_EXCEPTION,
d29346
	__URC_FATAL_PHASE2,
d29346
	__URC_FATAL_PHASE1,
d29346
	__URC_NORMAL_STOP,
d29346
	__URC_END_OF_STACK,
d29346
	__URC_HANDLER_FOUND,
d29346
	__URC_INSTALL_CONTEXT,
d29346
	__URC_CONTINUE_UNWIND,
d29346
};
d29346
d29346
d29346
#define __UA_SEARCH_PHASE       0x01
d29346
#define __UA_CLEANUP_PHASE      0x02
d29346
#define __UA_HANDLER_FRAME      0x04
d29346
#define __UA_FORCE_UNWIND       0x08
d29346
#define __UA_END_OF_STACK       0x10
d29346
d29346
d29346
d29346
26ba50
struct __exception_record;
26ba50
struct __dispatcher_context;
d29346
d29346
struct __unwind_exception;
d29346
struct __unwind_context;
d29346
d29346
d29346
d29346
d29346
typedef enum __unwind_reason_code(*__unwind_personality_routine)(
d29346
	int, int, uintptr_t,
d29346
	struct __unwind_exception *,
d29346
	struct __unwind_context *);
d29346
d29346
typedef void (*__unwind_exception_cleanup_routine)(
d29346
	enum __unwind_reason_code,
d29346
	struct __unwind_exception *);
d29346
d29346
d29346
d29346
struct __unwind_exception {
d29346
	uintptr_t                               exception_class;
d29346
	__unwind_exception_cleanup_routine      exception_cleanup;
d29346
	uintptr_t                               __opaque[6];
d29346
};
d29346
d29346
d29346
d29346
int    __unwind_exception_filter(
26ba50
	struct __exception_record *,
d29346
	void *,
d29346
	mcontext_t *,
26ba50
	struct __dispatcher_context *,
d29346
	__unwind_personality_routine);
d29346
d29346
int    __unwind_exception_handler(
26ba50
	struct __exception_record *,
d29346
	uintptr_t,
d29346
	mcontext_t *,
26ba50
	struct __dispatcher_context *);
d29346
d29346
int    __unwind_raise_exception(
d29346
	struct __unwind_exception *);
d29346
d29346
void   __unwind_delete_exception(
d29346
	struct __unwind_exception *);
d29346
d29346
void   __unwind_resume(
d29346
	struct __unwind_exception *);
d29346
d29346
int    __unwind_resume_or_rethrow(
d29346
	struct __unwind_exception *);
d29346
d29346
int    __unwind_force(
d29346
	struct __unwind_exception *,
d29346
	int (*)(
d29346
		int, int, uintptr_t,
d29346
		struct __unwind_exception *,
d29346
		struct __unwind_context *,
d29346
		void *),
d29346
	void *);
d29346
d29346
void * __unwind_get_language_specific_data(
d29346
	struct __unwind_context *);
d29346
d29346
int    __unwind_backtrace(
d29346
	enum __unwind_reason_code (*)(
d29346
		struct __unwind_context *,
d29346
		void *),
d29346
	void *);
d29346
d29346
int    __unwind_calltrace();
d29346
d29346
uintptr_t __unwind_get_ip(const struct __unwind_context *);
d29346
void      __unwind_set_ip(struct __unwind_context *, uintptr_t);
d29346
d29346
uintptr_t __unwind_get_gr(const struct __unwind_context *, int);
d29346
void      __unwind_set_gr(struct __unwind_context *, int, uintptr_t);
d29346
d29346
uintptr_t __unwind_get_data_rel_base(const struct __unwind_context *);
d29346
uintptr_t __unwind_get_text_rel_base(const struct __unwind_context *);
d29346
d29346
uintptr_t __unwind_get_cfa(const struct __unwind_context *);
d29346
uintptr_t __unwind_get_ip_info(const struct __unwind_context *, int *);
d29346
d29346
uintptr_t __unwind_get_region_start(const struct __unwind_context *);
d29346
void *    __unwind_find_enclosing_function(const void *);
d29346
d29346
#ifdef __cplusplus
d29346
}
d29346
#endif
d29346
d29346
#endif