constpool.h
来自「kaffe Java 解释器语言,源码,Java的子集系统,开放源代码」· C头文件 代码 · 共 44 行
H
44 行
/* constpool.h * Manage the constant pool. * * 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 __jit_constpool_h#define __jit_constpool_h#define CPint 1#define CPlong 2#define CPref 3#define CPfloat 4#define CPdouble 5#define CPstring 6typedef struct _constpool { struct _constpool* next; uintp at; union _constpoolval { jint i; jlong l; void* r; float f; double d; } val;} constpool;#define ALLOCCONSTNR 32extern constpool* firstConst;extern constpool* lastConst;extern constpool* currConst;extern uint32 nConst;constpool* newConstant(int type, ...);void establishConstants(void *at);#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?