jit-md.h

来自「java virtual machince kaffe」· C头文件 代码 · 共 39 行

H
39
字号
/* * arm/linux/jit-md.h * ARM Linux JIT configuration information. * * Copyright (c) 1996, 1997, 1999 *	Transvirtual Technologies, Inc.  All rights reserved. * * See the file "license.terms" for information on usage and redistribution  * of this file.  */#ifndef __arm_linux_jit_md_h#define __arm_linux_jit_md_h/**//* Include common information. *//**/#include "arm/jit.h"#undef FIRSTFRAME#define FIRSTFRAME(f, o) (f) = *(exceptionFrame *)((uintp)__builtin_frame_address(0) - sizeof(exceptionFrame))#define EXCEPTIONPROTO SIGNAL_ARGS(sig, ctx)/* Get the first exception frame from a signal handler */#if defined(HAVE_REG_SIGCONTEXT)#define	EXCEPTIONFRAME(f, c)						\	(f).retfp = (c).reg.ARM_fp;					\	(f).retpc = (c).reg.ARM_pc;#else/* This one is for Debian */#define	EXCEPTIONFRAME(f, c)						\	(f).retfp = (c).arm_fp;						\	(f).retpc = (c).arm_pc;#endif#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?