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

📄 soft.h

📁 kaffe Java 解释器语言,源码,Java的子集系统,开放源代码
💻 H
字号:
/* * soft.h * Soft instruction prototypes. * * Copyright (c) 1996, 1997 *	Transvirtual Technologies, Inc.  All rights reserved. * * See the file "license.terms" for information on usage and redistribution  * of this file.  */#ifndef __soft_h#define	__soft_hstruct _dispatchTable;struct Hjava_lang_Class;struct Hjava_lang_Object;void	soft_null_call(void);void*	soft_new(struct Hjava_lang_Class*);void*	soft_newarray(jint, jint);void*	soft_anewarray(struct Hjava_lang_Class*, jint);void	soft_initialise_class(struct Hjava_lang_Class*);nativecode* soft_get_method_code (Method*);void*	soft_lookupinterfacemethod(struct Hjava_lang_Object*, struct Hjava_lang_Class*, int);void*	soft_checkcast(struct Hjava_lang_Class*, struct Hjava_lang_Object*);jint	soft_instanceof(struct Hjava_lang_Class*, struct Hjava_lang_Object*);void	soft_athrow(struct Hjava_lang_Object*);void	soft_badarrayindex(void);void	soft_nullpointer(void);void	soft_divzero(void);void	soft_nosuchmethod(struct Hjava_lang_Class*, Utf8Const*, Utf8Const*);void	soft_nosuchfield(Utf8Const*, Utf8Const*);void	soft_nosuchclass(Utf8Const*);void	soft_linkage(Utf8Const*, Utf8Const*);void	soft_illegalaccess(Utf8Const*, Utf8Const*);void	soft_incompatibleclasschange(Utf8Const*, Utf8Const*);void	soft_stackoverflow(void);void	soft_checkarraystore(struct Hjava_lang_Object*, struct Hjava_lang_Object*);void	soft_addreference(void*, void*);jint	soft_dcmpg(jdouble, jdouble);jint	soft_dcmpl(jdouble, jdouble);jint	soft_fcmpg(jfloat, jfloat);jint	soft_fcmpl(jfloat, jfloat);jint	soft_mul(jint, jint);jint	soft_div(jint, jint);jint	soft_rem(jint, jint);#if defined(INTERPRETER)struct _slots;void*	soft_multianewarray(struct Hjava_lang_Class*, jint, struct _slots*);#endif#if defined(TRANSLATOR)jlong	soft_lmul(jlong, jlong);jlong	soft_ldiv(jlong, jlong);jlong	soft_lrem(jlong, jlong);jfloat	soft_fadd(jfloat, jfloat);jdouble	soft_faddl(jdouble, jdouble);jfloat	soft_fsub(jfloat, jfloat);jdouble	soft_fsubl(jdouble, jdouble);jfloat	soft_fmul(jfloat, jfloat);jdouble	soft_fmull(jdouble, jdouble);jfloat	soft_fdiv(jfloat, jfloat);jdouble	soft_fdivl(jdouble, jdouble);jfloat	soft_frem(jfloat, jfloat);jdouble	soft_freml(jdouble, jdouble);jlong	soft_lshll(jlong, jint);jlong	soft_ashrl(jlong, jint);jlong	soft_lshrl(jlong, jint);jint	soft_lcmp(jlong, jlong);void*	soft_multianewarray(struct Hjava_lang_Class*, jint, ...);#endifjlong	soft_cvtil(jint);jfloat	soft_cvtif(jint);jdouble	soft_cvtid(jint);jint	soft_cvtli(jlong);jfloat	soft_cvtlf(jlong);jdouble	soft_cvtld(jlong);jint	soft_cvtfi(jfloat);jlong	soft_cvtfl(jfloat);jdouble	soft_cvtfd(jfloat);jint	soft_cvtdi(jdouble);jlong	soft_cvtdl(jdouble);jfloat	soft_cvtdf(jdouble);jint instanceof(struct Hjava_lang_Class*, struct Hjava_lang_Class*);jint instanceof_class(struct Hjava_lang_Class*, struct Hjava_lang_Class*);jint instanceof_interface(struct Hjava_lang_Class*, struct Hjava_lang_Class*);jint instanceof_array(struct Hjava_lang_Class*, struct Hjava_lang_Class*);void	soft_debug1(void*, void*, void*);void	soft_debug2(void*, void*, void*);void	soft_trace(Method*, void*);void	soft_enter_method(struct Hjava_lang_Object *obj, Method *meth);void	soft_exit_method(Method *meth);#endif

⌨️ 快捷键说明

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