methodcalls.h

来自「linux下建立JAVA虚拟机的源码KAFFE」· C头文件 代码 · 共 33 行

H
33
字号
/* * methodcalls.h * Implementation of method calls * * Copyright (c) 2004 *      The kaffe.org's developers. See ChangeLog for details. * * See the file "license.terms" for information on usage and redistribution  * of this file.  */#ifndef __method_calls_h__#define __method_calls_h__#include "classMethod.h"#include "support.h"void *engine_buildTrampoline (Method *meth, void **where, errorInfo *einfo);void engine_callMethod (callMethodInfo *call);void engine_dispatchException(uintp framePointer,			      uintp handler, 			      struct Hjava_lang_Throwable *throwable);/* * extra args the engine wants to pass when using callMethodA / callMethodV */#define engine_reservedArgs(M) 2#endif /* __method_dispatch_h__ */

⌨️ 快捷键说明

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