constpool.h
来自「kaffe是一个java虚拟机的源代码。里面包含了一些java例程和标准的jav」· C头文件 代码 · 共 46 行
H
46 行
/* 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 6#define CPlabel 7typedef struct _constpool { struct _constpool* next; uintp at; int type; 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 + -
显示快捷键?