📄 constpool.h
字号:
/* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -