⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jit-md.h

📁 linux下建立JAVA虚拟机的源码KAFFE
💻 H
字号:
/* * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -