4coder-non-source/test_data/lots_of_files/setjmp.h

196 lines
3.9 KiB
C

/***
*setjmp.h - definitions/declarations for setjmp/longjmp routines
*
* Copyright (c) Microsoft Corporation. All rights reserved.
*
*Purpose:
* This file defines the machine-dependent buffer used by
* setjmp/longjmp to save and restore the program state, and
* declarations for those routines.
* [ANSI/System V]
*
* [Public]
*
****/
#pragma once
#ifndef _INC_SETJMP
#define _INC_SETJMP
#include <crtdefs.h>
#if defined (_M_CEE)
/*
* The reason why simple setjmp won't work here is that there may
* be case when CLR stubs are on the stack e.g. function call just
* after jitting, and not unwinding CLR will result in bad state of
* CLR which then can AV or do something very bad.
*/
#include <setjmpex.h>
#endif /* defined (_M_CEE) */
/*
* Currently, all MS C compilers for Win32 platforms default to 8 byte
* alignment.
*/
#pragma pack(push,_CRT_PACKING)
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/*
* Definitions specific to particular setjmp implementations.
*/
#if defined (_M_IX86)
/*
* MS compiler for x86
*/
#ifndef _INC_SETJMPEX
#define setjmp _setjmp
#endif /* _INC_SETJMPEX */
#define _JBLEN 16
#define _JBTYPE int
/*
* Define jump buffer layout for x86 setjmp/longjmp.
*/
typedef struct __JUMP_BUFFER {
unsigned long Ebp;
unsigned long Ebx;
unsigned long Edi;
unsigned long Esi;
unsigned long Esp;
unsigned long Eip;
unsigned long Registration;
unsigned long TryLevel;
unsigned long Cookie;
unsigned long UnwindFunc;
unsigned long UnwindData[6];
} _JUMP_BUFFER;
#ifdef _CRTBLD
#ifdef __cplusplus
extern "C"
#endif /* __cplusplus */
void __stdcall _NLG_Notify(unsigned long);
#ifdef __cplusplus
extern "C"
#endif /* __cplusplus */
void __stdcall _NLG_Return();
#endif /* _CRTBLD */
#elif defined (_M_X64)
typedef struct _CRT_ALIGN(16) _SETJMP_FLOAT128 {
unsigned __int64 Part[2];
} SETJMP_FLOAT128;
#define _JBLEN 16
typedef SETJMP_FLOAT128 _JBTYPE;
#ifndef _INC_SETJMPEX
#define setjmp _setjmp
#endif /* _INC_SETJMPEX */
typedef struct _JUMP_BUFFER {
unsigned __int64 Frame;
unsigned __int64 Rbx;
unsigned __int64 Rsp;
unsigned __int64 Rbp;
unsigned __int64 Rsi;
unsigned __int64 Rdi;
unsigned __int64 R12;
unsigned __int64 R13;
unsigned __int64 R14;
unsigned __int64 R15;
unsigned __int64 Rip;
unsigned long MxCsr;
unsigned short FpCsr;
unsigned short Spare;
SETJMP_FLOAT128 Xmm6;
SETJMP_FLOAT128 Xmm7;
SETJMP_FLOAT128 Xmm8;
SETJMP_FLOAT128 Xmm9;
SETJMP_FLOAT128 Xmm10;
SETJMP_FLOAT128 Xmm11;
SETJMP_FLOAT128 Xmm12;
SETJMP_FLOAT128 Xmm13;
SETJMP_FLOAT128 Xmm14;
SETJMP_FLOAT128 Xmm15;
} _JUMP_BUFFER;
#elif defined (_M_ARM)
#ifndef _INC_SETJMPEX
#define setjmp _setjmp
#endif /* _INC_SETJMPEX */
/*
* ARM setjmp definitions.
*/
#define _JBLEN 28
#define _JBTYPE int
typedef struct _JUMP_BUFFER {
unsigned long Frame;
unsigned long R4;
unsigned long R5;
unsigned long R6;
unsigned long R7;
unsigned long R8;
unsigned long R9;
unsigned long R10;
unsigned long R11;
unsigned long Sp;
unsigned long Pc;
unsigned long Fpscr;
unsigned long long D[8]; // D8-D15 VFP/NEON regs
} _JUMP_BUFFER;
#endif /* defined (_M_ARM) */
/* Define the buffer type for holding the state information */
#ifndef _JMP_BUF_DEFINED
typedef _JBTYPE jmp_buf[_JBLEN];
#define _JMP_BUF_DEFINED
#endif /* _JMP_BUF_DEFINED */
/* Function prototypes */
int __cdecl setjmp(_Out_ jmp_buf _Buf);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#ifdef __cplusplus
#pragma warning(push)
#pragma warning(disable:4987)
extern "C"
{
_CRTIMP __declspec(noreturn) void __cdecl longjmp(_In_ jmp_buf _Buf, _In_ int _Value) throw(...);
}
#pragma warning(pop)
#else /* __cplusplus */
_CRTIMP __declspec(noreturn) void __cdecl longjmp(_In_ jmp_buf _Buf, _In_ int _Value);
#endif /* __cplusplus */
#pragma pack(pop)
#endif /* _INC_SETJMP */